Re: [Resteasy-users] Where to go for authorization examples?

2013-01-14 Thread Michael Musgrove
><> > Assert.assertEquals("admin", > method.getResponse().getUserPrincipal()); > method.releaseConnection(); >} > > Nick > > -Original Message- > From: Bill Burke [mailto:bbu...@redhat.com] > Sen

Re: [Resteasy-users] Where to go for authorization examples?

2013-01-11 Thread Skriloff, Nicholas
t.assertEquals("admin", method.getResponse().getUserPrincipal()); method.releaseConnection(); } Nick -Original Message- From: Bill Burke [mailto:bbu...@redhat.com] Sent: Friday, January 11, 2013 10:39 AM To: resteasy-users@lists.sourceforge.net Subject: Re: [Resteasy-

Re: [Resteasy-users] Where to go for authorization examples?

2013-01-11 Thread Bill Burke
What do you actually want to do? JAXRS security is left up to web container on the server side, and is fully implementation dependent on the client. On the client side, its configuring Apache HC Client. On the server side, its configuring web.xml and setting your web tier to do SSL/HTTPS. On