I'm using Google plugin for Eclipse to build two identical GWT application
except that one is built with App Engine and the other without App Engine.

Both application are configured with the same servlet filter and mapped to
URL pattern /*

public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest) request;
                // query is null when run on App Engine
String query = req.getQueryString();
...
}

When run in the GWT development mode, e.g.
http://127.0.0.1:8888/X.html?_escaped_fragment_=&gwt.codesvr=127.0.0.1:9997,
the
application without App Engine is able to retrieve the query string as
"_escaped_fragment_=&gwt.codesvr=127.0.0.1:9997".

The problem is, the application with App Engine is always getting the null
query string!


Can anyone help me on this?


On Wed, Sep 22, 2010 at 10:44 PM, Katharina Probst <[email protected]>wrote:

> Yes, that's right.  This technique is still current.
>
> kathrin
>
> On Wed, Sep 22, 2010 at 7:16 AM, Hez <[email protected]> wrote:
>
>> Hi
>>
>> I planning to develop an application in GWT + App Engine.
>>
>> Do I still make the application crawlable by following the guidelines
>> described at http://code.google.com/web/ajaxcrawling ?
>> E.g. my application should parse the ugly URL and return a HTML
>> snapshot?
>>
>> I think we need to do that for a GWT application which is not deploy
>> on the App Engine.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine for Java" group.
>> To post to this group, send email to
>> [email protected].
>> To unsubscribe from this group, send email to
>> [email protected]<google-appengine-java%[email protected]>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine-java?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine-java%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>



-- 

Hez

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to