Socket connection
Jeg har en SMS server med følgende dokumentation:Connecting:
Connections should always be passed as a socket connection, and never as a plain HTML <form>, since username and password would then be present in the HTML code.
Example 1:
The following example is given of a plain socket conversation with the webserver.
The client:
POST /api/ HTTP/1.1
Host: smsserv.[mitdomæne].dk
Keep-Alive: 300
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded
Content-Length: 85
username=testuser&password=testpass&limit=1&to=12345678&message=this+is+a+test
Hvordan klare man den i ASP?
