GWT + JAAS

2009-06-02 Thread Otavio Furtado
Hello there, Anyone know how i can integrate GWT and JAAS? I'm using JBoss and i create my realm and I configure my jboss-web.xml in my web project. It's work correctly. But i don't know how i can autenticate using a form with GWT. Anyone have an ideia? Thanks for helping Otavio

Re: GWT + JAAS

2009-06-02 Thread Fernando Crestani
Well, I am also having almost the same trouble, so if anyone can help us it would be apreciated. Thanks Fernando --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: GWT + JAAS

2009-06-02 Thread Adligo
Hi All, Its fairly simple take a look at Spring Security for some examples, the Subject just ends up in the HttpSession. You can use a HttpFilter to check it to block request to your RpcServlets, and you can login to your jboss JAAS session from the Servlet/Filter web code, just like you can