Re: HTTP query string when tested in development mode

2010-09-27 Thread volkan özdemir
2010/9/26, hezjing hezj...@gmail.com: Thanks to Philippe, The solution is simply rename the hosted page *.html to *.jsp See https://groups.google.com/group/google-appengine-java/browse_thread/thread/46240ee12dc856be

Re: HTTP query string when tested in development mode

2010-09-26 Thread hezjing
Thanks to Philippe, The solution is simply rename the hosted page *.html to *.jsp See https://groups.google.com/group/google-appengine-java/browse_thread/thread/46240ee12dc856be https://groups.google.com/group/google-appengine-java/browse_thread/thread/46240ee12dc856be On Tue, Sep 21, 2010 at

Re: HTTP query string when tested in development mode

2010-09-21 Thread hezjing
Hi Apparently it seems that it is the Google App Engine that is causing this problem. The servlet filter is able to obtain the query string when I tested in GWT application without the App Engine settings. I'm also new to App Engine, do you know why the servlet filter is not working with App

Re: HTTP query string when tested in development mode

2010-09-19 Thread hezjing
Hi rjcarr The query string is still null after I set to ...Dummy.html?debug=2param=2 gwt.codesvr=127.0.0.1:9997http://127.0.0.1:/Property123.html?gwt.codesvr=127.0.0.1:9997 . The same problem occurs with the default development mode URL like

HTTP query string when tested in development mode

2010-09-18 Thread hezjing
Hi I have the following servlet filter and mapped to the URL pattern /* public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) request; // query is null? String query =

Re: HTTP query string when tested in development mode

2010-09-18 Thread rjcarr
From what you've posted it doesn't look like a valid URL. A query string, as far as I know, is a series of key=value pairs separated by . You posted this: http://127.0.0.1:/Dummy.html?debugparam2gwt.codesvr=127.0.0.1:9997 Which doesn't look correctly formed. Try this: