pombreda / gwt-maven

Automatically exported from code.google.com/p/gwt-maven
0 stars 1 forks source link

Starting project with an URLEncoded String as Parameter (runTarget) is not working #191

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This is an Maven 2 Issue

What steps will reproduce the problem?
1. Set the runtarget of your project to 
http://localhost:8888/whatever/index.jsp?test=%20a
2. The Browser will start with the url .../index.jsp?test=0a

This is on Windows XP with beta26 plugin

The windows shell uses %2 (or %1) as the second start parameter of the 
run.cmd. The problem is the plugin just calls run.cmd on the console and so 
the %2 in my URL is relaced with an empty string. 
if you call the cmd with > run.cmd %1 %2 %3 ... the resulting string is 
okay.

This issue is very critical to use because we use encrypted/encoded String 
to log on to our server enviroment. 

Original issue reported on code.google.com by kurka.da...@gmail.com on 29 Jan 2009 at 6:16

GoogleCodeExporter commented 9 years ago
Please remember that your pom.xml is an XML file.

Escape these appropriately with % in the field.

http://localhost:8888/whatever/index.jsp?test=%20a

Thanks.

Original comment by keber...@gmail.com on 22 Mar 2009 at 8:52