This article describes the methods in the
Gateway SOAP API used to push Wap messages.
WSDL
The service and WSDL of the send Wap Push methods can be found
here:
SendSingleWapPush method
This method is used to submit a single Wap Push message to the
Gateway.
ReturnValue rv = SendSingleWapPush(string username,
string password,
WapPushMessage msg)
The username and password parameters are string values containing
user id and password for your PSWinCom SMS Gateway account. The
msg parameter is a complex type named
WapPushMessage that holds the various attributes of an Wap Push
message. The method has a complex type named
ReturnValue as return value.
SendMultipleWapPush method
This method is used to submit multiple Wap Push messages to the
Gateway with a single operation. This is generally more efficient for
bulk sending than he SendSingleWapPush method.
ReturnValue[] rv = SendMultipleWapPush(string username,
string password,
WapPushMessage[] msg)
The username and password parameters are string values containing
user id and password for your PSWinCom SMS Gateway account. The
msg parameter is an array of the complex type named
WapPushMessage that holds the various
attributes of each Wap Push message. The method will return an array
of the complex type named
ReturnValue as
return value. The returned array will be of the same size as the msg
array.
See also