http sock problem

hi am senthil

am doing my server-client prog in C++ to send and receive sms through the API ..

in which server is a webserver(remote server)
and my prog act as a client..
i will form a url based on the HTTP 1.0 protocol..
and hit the server through socket send funtion..

by hitting the tat server i can send sms in the form of API which they provide in ther site..
if i send multiple message using single socket descriptor .. only one message got delivered in my mobile the rest of the messages are not delievered...
but am getting the positive result from send() funtion...
telling message is sent...

can u please tell me where the problem lies..?

Maybe you need HTTP/1.1 persisitent to send more than one per connection. HTTP/1.0 uses end of connection as end of file, so it uses lots of connections. A socket can be disconnected and reconnected, generally.

Did you consider this tool: Man Page for sendsms (All Section 1) - The UNIX and Linux Forums