To (remotely) debug my app I need to get to it by submitting POST requests through several other GWT-pages. (My app is one step within a business process manager.) I don't have the Java source from the preceding steps, therefore I need the magic codesvr parameter to show up only on my GWT-app. (If I add it to the initial request, when the wizard is starting, I end up with blank page because of failed debug attempt.)
I tried to modify the very last page before my app using Developer Tools, by setting <form action="?gwt.codesvr.=
127.0.0.1:9997"/>. But to sweeten things up the URL in address bar is URL of a servlet that outputs each step of the wizard into a browser, therefore each step/page contains <base/> tag. When I modify the submitting form on the page just before my app (the action attribute) this servlet gets bypassed and my wizard page doesn't get served/populated properly.
I will try to obtain sources from those preceding wizard pages, but if it was possible to disable the GWT plugin untill I hit the last Submit I could move on sooner than on Monday. (Somehow I can not find the plugin listed in Internet Explorer.)