Grzegorz Gwoźdź [http://community.jboss.org/people/gwozdziu] created the discussion
"Re: Resteasy + Seam = 403 Forbidden, any idea why?" To view the discussion, visit: http://community.jboss.org/message/578454#578454 -------------------------------------------------------------- Please try putting all your code in the method into try -catch clause: @Path("/myPath") @Produces("application/xml") public MyClass myFunction(){ try{ //your code }catch(Exception e){ e.printstackTrace(); } } RESTEasy swollows lot of exceptions and creates response with various HTTP error headers. Using method described above you will now what might have gone wrong. -------------------------------------------------------------- Reply to this message by going to Community [http://community.jboss.org/message/578454#578454] Start a new discussion in JBoss Web Services at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2044]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
