BTW getParamString() works fine if called directly. Just not when a
filter forward is used.

 private static native String getParamString () /*-{
        return $wnd.location.search;
    }-*/;

On Jan 25, 4:20 pm, JeanV <[email protected]> wrote:
> I have a filter that conditionally forwards a request to a GWT app but
> for some reason parameters are never forwarded.
>
> My filter:
>
> RequestDispatcher rd = request.getRequestDispatcher("/index.jsp#up);
>                 request.setAttribute("action", "up");
>                 request.setAttribute("id", "2");
>                 rd.forward(request, response);
>
> in my entrypoint.java:
>
> String paramstr = GWTUtils.getParamString();
>
> paramstr does not show "#up" and getting attributes "id" & "action"
> returns null.
>
> Also in onValueChange(ValueChangeEvent event) event.getValue();
> returns nothing.
>
> I am doing anything wrong?
>
> Thank you in advance for your assistance.
>
> Jean

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" 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-web-toolkit?hl=en.

Reply via email to