in reply to Can't get '+' character to appear in a POST request.

I want to send the '+' sign as is.

No you don't, you want a space

One way to encode space is as +, another way is as %20

  • Comment on Re: Can't get '+' character to appear in a POST request.

Replies are listed 'Best First'.
Re^2: Can't get '+' character to appear in a POST request.
by oldwarrior32 (Sexton) on Apr 23, 2013 at 11:57 UTC

    Thanks! I just put an space, instead of the plus sign in the code, and now I see the plus sign in the packet capture.