I get the following problem
Code:
HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Tue, 30 Dec 2008 18:51:28 GMT
Connection: close
Content-Length: 20


Code:
on 1:sockopen:open: { 
  if $sockerr > 0 { echo -a Error: $sock($sockname).wsmsg 
    return 
  }
  sockwrite -n $sockname POST <link> HTTP/1.1
  sockwrite -n $sockname User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; FDM)
  sockwrite -n $sockname Accept: *.*, */*
  sockwrite -n $sockname Connection: Keep-Alive
  sockwrite -n $sockname Content-Type: text/html
  sockwrite -n $sockname $crlf
}

Any idea?