Hi, I would like to send a file via HTTP and I think good way to do it is by using the POST -method. The problem is that I can't get the posted data in server. What could have went wrong is that I am using the post method just like in the GET method. Here is a bit of my code? Could someone help me on this...
iWriteBuffer.Copy(_L8("POST /posttest.asp ");
iWriteBuffer.Append(iRequestParameter);
iWriteBuffer.Append(_L8(" HTTP/1.0\r\nHost:");
iWriteBuffer.Append(KDefaultServerName);
iWriteBuffer.Append(_L8("\r\n\r\n\r\n\r\n");
-Pete

);


