I am trying to send a message using SOAP. Everything seems to work but no message comes through.
I get no error message at all
here is my code
#!/usr/bin/python
from SOAPpy import WSDL
print "Content-type: text/html\n"
wsdlFile = 'http://www.adamplowman.com/sendservice.wsdl'
server = WSDL.Proxy(wsdlFile)
username = 'adamplowman'
password = 'DreamOn'
destination = '447841633135'
originator = 'Adam'
message = 'test'
messagetype = 'text'
maxconcat = '2'
sendtime =' 2005-10-10T17:00:00Z'
callback = 'http://adamplowman.com/form/callback.php?reportcode=%code&destinationnumber=%dest&myreference=123'
auth = server.auth(username,password)
adam = server.auth.SoapSendSms(destination,originator,message,messagetype,maxconcat,sendtime,callback)
len(adam.resultElements)
print results.resultElements[0].URL
here is a link to the wsdl file http://www.adamplowman.com/sendservice.wsdl
and here is the domain sending the message
http://adamplowman.com/cgi-bin/send_message.py