mjaverto / geoxml3

Automatically exported from code.google.com/p/geoxml3
0 stars 0 forks source link

Any & of the aURL in 'myparser.parse(aURL)' are escaped as & when my proxy server receives the request. #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Use a logging proxy between your browser and the net
2. Put this URL inside the 
myParser.parse('http://your.server/file.kml?data=[]&request=[]&binding=[]') if 
geoxml3
3. The logging proxy does receive this URL 
http://your.server/file.kml?data=[]&request=[]&binding=[]

What is the expected output? What do you see instead?

I would have expected the proxy to retrieve this URL:
http://your.server/file.kml?data=[]&request=[]&binding=[]
instead of this:
http://your.server/file.kml?data=[]&request=[]&binding=[]

What version of the product are you using? On what operating system?

The latest version on Linux.

Please provide any additional information below.

I need the & not to be escaped as & so the proxy retrieves the original URL 
as typed in the HTML. How can I do that?

Original issue reported on code.google.com by olivier....@gmail.com on 11 Jun 2011 at 11:11

GoogleCodeExporter commented 9 years ago
Not an issue:
http://www.google.com/search?client=gmail&rls=gm&q=URL%20Encoding
Your browser is probably doing the encoding; geoxml3 certainly isn't.

Original comment by geocodezip on 12 Jun 2011 at 5:59