Support for Json arrays

2009-07-09 Thread Chaitanya
Hi, I have a JAX-RS method which takes an array of Employee objects as a param. Employee class is given below. @XmlRootElement public class Employee { private String name; public String getName() { return name; } public void setName(String name) { this.name =

Re: Support for Json arrays

2009-07-09 Thread Sergey Beryozkin
Hi, No, we don't support yet serilalizing/deserializing explicit collections/lists. I will attempt to fix it before 2.2.3, serializing bit at least. cheers, Sergey Chaitanya-10 wrote: Hi, I have a JAX-RS method which takes an array of Employee objects as a param. Employee class is

Re: Security header wsse:Security is missing in Response

2009-07-09 Thread rahul.soa
Many Thanks Mayank and Dan. Setting the WSSJIn/OutInterceptors both way worked for me and now security header is passing both sides. In addition, both client and server are able to handle them. Thanks again for the pointers for policy. I think, after setting up basic ws-security I can soon jump