I am having the following url, which was using in my application
url = "http://ip/somefile.py?name=Adithya g&age=15&address=Trichy Tamilnadu"
when i am going to parse the above string in either httpget or httppost using android. I am getting error. suppose if the url is modified as the following
url ="http://ip/somefile.py?name=Adithya%20g&age=15&address=Trichy%20Tamilnadu"
the url is working fine. Where was the mistake? whether it is mistake of that particular server or the android development side.