Hello to everybody!
I'm going to use a web service for sending SMS to customers cells.
My provider (Vodafone-Redbox) sent me a WDSL file to use their services. I added a reference in my web application using that provided file, and I invoked the available functions successfully. No problems here.
The trouble appears when trying to use the "acknowledgment" feature, to confirm that an SMS has reached its destination. For this feature, Vodafone asked me an URL to send confirmation messages in XML format. Thinking that would be a GET or POST to the URL
(an ASP.NET webform), I asked them for the method and parameter name, but their response was that no GET or POST is fired, just the system "sends" the XML to the URL. As far as I know, the only way to send something to a webform from another is with parameters
via GET or POST, but I'm aware that my skills are very limited and it's possible I'm wrong here.
Trying to figure ou ...
Go to the complete details ...