*Hi there, i want  a filter to /, so when a user type www.foo.com, it enter
to my application.
But i tried and something is wrong with my web.xml in GAE,   Can anybody
help me please!
My web.xml is*

<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns="http://java.sun.com/xml/ns/javaee";
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"; version="2.5">
    <filter>
        <filter-name>WicketFilter</filter-name>

<filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class>
        <init-param>
            <param-name>applicationClassName</param-name>
            <param-value>nm.mp3rapidshare.WicketApplication</param-value>
        </init-param>
    </filter>

    <filter-mapping>
        <filter-name>WicketFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>

*when i do www.foo.com/ in the browser it tooks me to a page that say:

**Hello App Engine!* *Available Servlets:
                           xxxxxxxxxxxxxx

Thanks Again.
NM*

-- 
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