XML post api for sending sms?

XML post api for sending sms?

Hi, I'm beginner of deluge script.
I need simple connection between sms service and zoho, In my app telephone number and message will be written and with the send button push, relevant infos must send with post api parameters.

Here is the sample xml tree:
  1. <SMS>
  2. <server>
  3. <user>[username]</user>
  4. <password>[password]</password>
  5. </server>
  6. <message>
  7. <subject>SUBJECT</subject>
  8. <text>SMS MESSAGE</text>
  9. <numbers>1238970875</numbers>
  10. <date>YYYY-MM-DD HH:MM:SS</date>
  11. </message>
  12. <blacklist>true</blacklist>
  13. <per_link>true</per_link>
  14. <per_tel>true</per_tel>
  15. </SMS>
and post url parameter is: " http://www.dakiksms.com/api/xml_api_ileri.php"

I've created a stateless form and on click action:
  1. myMap = map();

    myMap.put("user", "USERNAME");

    myMap.put("password", "PASSWORD");

    myMap.put("subject", "SUBJECT");

    myMap.put("text", input.message);

    myMap.put("numbers", input.numbers);

    myMap.put("date", " ");  //if blank, message will be send immediately

    myMap.put("blacklist", "true");

    resp = postUrl("http://www.dakiksms.com/api/tr/xml_api_ileri.php", myMap);

There is nothing.
I missed something but I couldn't find the way for weeks mates!
What can you offer PLEASE?