FXSend/GDDX_Isag_Sms/ISAGSMSSmsNotificationBindingProxy.h
2025-02-28 17:05:50 +08:00

77 lines
3.6 KiB
C++

/* ISAGSMSSmsNotificationBindingProxy.h
Generated by gSOAP 2.8.6 from IsagSms.h
Copyright(C) 2000-2011, Robert van Engelen, Genivia Inc. All Rights Reserved.
The generated code is released under one of the following licenses:
1) GPL or 2) Genivia's license for commercial use.
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
*/
#ifndef ISAGSMSSmsNotificationBindingProxy_H
#define ISAGSMSSmsNotificationBindingProxy_H
#include "ISAGSMSH.h"
namespace ISAGSMS {
class SOAP_CMAC SmsNotificationBindingProxy : public soap
{ public:
/// Endpoint URL of service 'SmsNotificationBindingProxy' (change as needed)
const char *soap_endpoint;
/// Constructor
SmsNotificationBindingProxy();
/// Constructor with copy of another engine state
SmsNotificationBindingProxy(const struct soap&);
/// Constructor with endpoint URL
SmsNotificationBindingProxy(const char *url);
/// Constructor with engine input+output mode control
SmsNotificationBindingProxy(soap_mode iomode);
/// Constructor with URL and input+output mode control
SmsNotificationBindingProxy(const char *url, soap_mode iomode);
/// Constructor with engine input and output mode control
SmsNotificationBindingProxy(soap_mode imode, soap_mode omode);
/// Destructor frees deserialized data
virtual ~SmsNotificationBindingProxy();
/// Initializer used by constructors
virtual void SmsNotificationBindingProxy_init(soap_mode imode, soap_mode omode);
/// Delete all deserialized data (uses soap_destroy and soap_end)
virtual void destroy();
/// Disables and removes SOAP Header from message
virtual void soap_noheader();
/// Get SOAP Header structure (NULL when absent)
virtual const SOAP_ENV__Header *soap_header();
/// Get SOAP Fault structure (NULL when absent)
virtual const SOAP_ENV__Fault *soap_fault();
/// Get SOAP Fault string (NULL when absent)
virtual const char *soap_fault_string();
/// Get SOAP Fault detail as string (NULL when absent)
virtual const char *soap_fault_detail();
/// Close connection (normally automatic, except for send_X ops)
virtual int soap_close_socket();
/// Force close connection (can kill a thread blocked on IO)
virtual int soap_force_close_socket();
/// Print fault
virtual void soap_print_fault(FILE*);
#ifndef WITH_LEAN
/// Print fault to stream
#ifndef WITH_COMPAT
virtual void soap_stream_fault(std::ostream&);
#endif
/// Put fault into buffer
virtual char *soap_sprint_fault(char *buf, size_t len);
#endif
/// Web service operation 'notifySmsReception' (returns error code or SOAP_OK)
virtual int notifySmsReception(ns2__notifySmsReception *ns2__notifySmsReception_, ns2__notifySmsReceptionResponse *ns2__notifySmsReceptionResponse_) { return notifySmsReception(NULL, NULL, ns2__notifySmsReception_, ns2__notifySmsReceptionResponse_); }
virtual int notifySmsReception(const char *endpoint, const char *soap_action, ns2__notifySmsReception *ns2__notifySmsReception_, ns2__notifySmsReceptionResponse *ns2__notifySmsReceptionResponse_);
/// Web service operation 'notifySmsDeliveryReceipt' (returns error code or SOAP_OK)
virtual int notifySmsDeliveryReceipt(ns2__notifySmsDeliveryReceipt *ns2__notifySmsDeliveryReceipt_, ns2__notifySmsDeliveryReceiptResponse *ns2__notifySmsDeliveryReceiptResponse_) { return notifySmsDeliveryReceipt(NULL, NULL, ns2__notifySmsDeliveryReceipt_, ns2__notifySmsDeliveryReceiptResponse_); }
virtual int notifySmsDeliveryReceipt(const char *endpoint, const char *soap_action, ns2__notifySmsDeliveryReceipt *ns2__notifySmsDeliveryReceipt_, ns2__notifySmsDeliveryReceiptResponse *ns2__notifySmsDeliveryReceiptResponse_);
};
} // namespace ISAGSMS
#endif