HTTP POST
-
Hi When i send my request using CHttpConnection to the server using the POST method my "+" sign is replaced by blank space. I am sending the header as Content-Type: application/x-www-form-urlencoded\r\n can any body help me in this what type of header i should send so that it won't replace the "+" sign . Thanks shailesh
-
Hi When i send my request using CHttpConnection to the server using the POST method my "+" sign is replaced by blank space. I am sending the header as Content-Type: application/x-www-form-urlencoded\r\n can any body help me in this what type of header i should send so that it won't replace the "+" sign . Thanks shailesh
You need to URLEncode the +, because in a URL, + is a synonym for a blank space. You should replace your + with %2B. Stability. What an interesting concept. -- Chris Maunder
-
You need to URLEncode the +, because in a URL, + is a synonym for a blank space. You should replace your + with %2B. Stability. What an interesting concept. -- Chris Maunder
-
Hi When i send my request using CHttpConnection to the server using the POST method my "+" sign is replaced by blank space. I am sending the header as Content-Type: application/x-www-form-urlencoded\r\n can any body help me in this what type of header i should send so that it won't replace the "+" sign . Thanks shailesh
:laugh: