Hallo!

I'm using code of JMeter and I'm quite sure, that URL's with blanks " " in 
Http Request won't work.

This line of code will fix it.

//---schnipp--------------------
Sting url = "http://www.myserver.net/my dir/myf ile.htm";
url = url.replaceAll("\\p{Blank}", "%20");
URL u = new URL(url); 
...and so on.
//---schnapp--------------------

(If "$" and "\" are in the text (here "String url") an exception is thrown. 
Ok,..)

I hope this comment will be usefull.

Tom


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to