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 ListOutputPart).

As to what I'm trying to do - I'm implementing the OASIS S-RAMP 
specification, which has an Atom based API binding.  The specification 
stipulates the 'propertyNames' input as a list of values, passed via 
multipart/form-data.

-Eric


On 01/10/2013 05:21 PM, Bill Burke wrote:


 On 1/10/2013 9:41 AM, Eric Wittmann wrote:
 Greetings.

 I am trying to get a multi-value input part working in my resteasy
 service.  On the inbound side, I'm expecting a multipart/formdata post,
 where an input part named propertyName may appear multiple times.  I
 need to read that in as a Collection of some sort.  Some sample code
 that may or may not be right:

 @POST
 @Consumes(MediaType.MULTIPART_FORM_DATA)
 @Produces(MediaType.APPLICATION_ATOM_XML_FEED)
 public Feed queryFromPost(MultipartFormDataInput input) {
  String query = input.getFormDataPart(query,
new GenericTypeString() { });
  SetString propNames = input.getFormDataPart(propertyName,
new GenericTypeSetString() { });
  return doQuery(query, propNames);
 }


 qyer is right, propNames is wrong.

 You'll have to do

 ListInputPart propNames = input.getFormDataMap().get(propertyName);

 I'm also using resteasy on the client-side.  Not sure how to submit the
 POST with multiple values.  Currently I have:

  String url = ...
  String query = ...
  SetString propertyNames = ...
  ClientRequest request = new ClientRequest(url);
  MultipartFormDataOutput formData = new MultipartFormDataOutput();
  formData.addFormData(query, query, MediaType.TEXT_PLAIN_TYPE);
  formData.addFormData(propertyName, propertyNames,
MediaType.TEXT_PLAIN_TYPE);

 The above will try to marshal a SetString into TEXT_PLAIN, which will
 call Set.toString().

  request.body(MediaType.MULTIPART_FORM_DATA_TYPE, formData);
  ClientResponseFeed response = request.post(Feed.class);

 Clearly this isn't right.  Any thoughts on how this should be done?


 I'm not exactly sure what you're trying to do?  Why not just create your
 own json or XML media type and send that?  What are you using multipart?


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


[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 Services
Voice 434 243 5025  Fax 434 243 2279
skrilo...@darden.virginia.edu

--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


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 1/11/2013 10:30 AM, Skriloff, Nicholas wrote:
 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 Services

 Voice 434 243 5025  Fax 434 243 2279

 skrilo...@darden.virginia.edu



 --
 Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
 much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812



 ___
 Resteasy-users mailing list
 Resteasy-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/resteasy-users


-- 
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com

--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


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/Response
 

 HttpClient client = new HttpClient();

  {
setup the authorization credentials
 GetMethod method = new 
GetMethod(http://localhost:8080/ejb-integration-war/basic;);
 int status = client.executeMethod(method);
  I need something like the below line 
 Assert.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-users] Where to go for authorization examples?

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 1/11/2013 10:30 AM, Skriloff, Nicholas wrote:
 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 Services

 Voice 434 243 5025  Fax 434 243 2279

 skrilo...@darden.virginia.edu



 --
  Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API 
 and much more. Get web development skills now with LearnDevNow -
 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
 SALE $99.99 this month only -- learn more at:
 http://p.sf.net/sfu/learnmore_122812



 ___
 Resteasy-users mailing list
 Resteasy-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/resteasy-users


--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com

--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and much more. Get 
web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Resteasy-users mailing list
Resteasy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/resteasy-users