D dadi4 Member Licensed User Longtime User Feb 29, 2012 #1 I got error when send http and there is a space in name, I think it should be converted to %20 but it does not here is the error (see the space after name Ahmed) Caused by: java.lang.RuntimeException: java.lang.IllegalArgumentException: Illegal character in query at index 73: SomURLLink/?a=test&b=AhmedAli Last edited: Feb 29, 2012
I got error when send http and there is a space in name, I think it should be converted to %20 but it does not here is the error (see the space after name Ahmed) Caused by: java.lang.RuntimeException: java.lang.IllegalArgumentException: Illegal character in query at index 73: SomURLLink/?a=test&b=AhmedAli
Erel B4X founder Staff member Licensed User Longtime User Mar 1, 2012 #2 You are responsible for escaping the URL. You can use StringUtils.EncodeUrl. Upvote 0