Re: [Resteasy-users] Multipart Form Data + multi-value part

2013-01-11 Thread Eric Wittmann
Thanks! On the server-side that's great. I'll use: input.getFormDataMap().get("propertyName"); Is there an analog on the client side? Looking at the MultipartFormDataOutput version of getFormData(), it's a map of name to OutputPart (rather than List). As to what I'm trying to do - I'm i

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

2013-01-11 Thread Skriloff, Nicholas
In the book, "Restful Java with JAXRS" there are examples up through chapter 11. I need examples with tests for chapter 12, "Authentication and Authorization with JaxRS." Where can I get them? Sincerely, Nick Skriloff , ME , MCP, SCJP Information Technology Specialist Darden Information Servic

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

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

2013-01-11 Thread Skriloff, Nicholas
Suppose the example in Chapter 11 had paths all under basic authentication with a login of "admin" and password of "password". This is explained some in Chapter 12 I need an example of a test that would be able to login and prove the container got back the userPrincipal off the Request/Resp