Does the authentication token generated in ruby for login transaction may contain "+" char ?

Because I want to execute the performance test on web page written in ruby I have written script and so on.. but always when this token contains this char "+" login transaction fails

thanks in advance for answer.

Answer: Ok I should have mark 'encode' for this authentication token and after that everything is work fine

link|improve this question
Is your script sending the token through a GET or POST request? – mu is too short Jul 14 '11 at 6:48
feedback

closed as not a real question by marc_s, mu is too short, gbn, cwallenpoole, Graviton Jul 15 '11 at 3:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 0 down vote accepted

In a query string, + is interpreted as a space. You should encode your token with CGI.escape or replace any + with %2B.

link|improve this answer
ok, Thank you for explanation – Bartuss Jul 14 '11 at 12:27
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.