Hi, first at all i must say that i know just a little Java, not so
much.

Now, i have an gwt application with one module, i wich one i make all
the logic and all the rpc calls, etc.

What i need to do is to protect this module with a login.

This is a example from my web.xml

<web-app >

  <!-- Servlets -->
  <servlet>
    <servlet-name>housesService</servlet-name>
    <servlet-class>com.nacho.houses.server.services.HousesServiceImpl</
servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>housesService</servlet-name>
    <url-pattern>/nacho/HousesService</url-pattern>
  </servlet-mapping>

  <!-- Default page to serve -->
  <welcome-file-list>
    <welcome-file>Houses.html</welcome-file>
  </welcome-file-list>

</web-app>

I was looking about login with Java in Google and i find the auth-
constraint. But i don't know how to implement it.

Can somebody give me an example?

Thanks a lot if anyone can!!!

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to