10-16-2006 12:41 PM
10-16-2006 04:28 PM
10-17-2006 10:08 AM
10-26-2006 06:54 AM
I am still struggling to get hold of the actual value. using active x it seems to have too long a delay between writing the values and then recieving it. below is the header info which I am parsing but still dont seem to have it working correctly, any ideas using sockets?
GET /disco/?cmd=property+/uk/co/develop-ing+buff1 HTTP/1.1 Host: www.meshmedia.org User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) Connection: close
This is the HTTP request. You'll open the socket and write these lines to it, terminating each one with a carriage return and line feed. To terminate the request you add another CRLF after the last line. so shown with the CRLFs: GET /disco/?cmd=property+/uk/co/develop-ing+buff1 HTTP/1.1(CR)(LF)
Host: www.meshmedia.org(CR)(LF)
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)(CR)(LF)
Connection: close(CR)(LF)
(CR)(LF)
Then you wait for a response from the socket.
HTTP/1.1·200·OK(CR)(LF)
Content (Length = 8):
1234(CR)(LF)
(CR)(LF)
10-26-2006 09:08 AM
10-26-2006 10:25 AM
10-26-2006 10:38 AM
10-26-2006 11:43 AM