I am trying to develop a SOAP interface for sending and receiving SMS.
I want to receive a message (SMS) through SOAP over HTTP.
The format is :
<san>
<transactionID>12345</tran
sactionID>
<details>
<name>Sandeep</name>
<mobile>9999999999</mobile
>
<message>Hi<Your Message></message>
</details>
<details>
<name>Sandeep</name>
<mobile>9999999999</mobile
>
<message>Hello<Your Message></message>
</details>
</san>
And the response should be
<san>
<transactionID>12345</tran
sactionID>
<status>true</status>
<message>Sent/Success</mes
sage>
</san>
I need help for writing SOAP server code and a test client.
I have installed and configured Apache Axis successfully in Apache Tomcat.
Thank you.
Start Free Trial