Re: Jaxb Complex type

2008-03-13 Thread mateamargo
s message in context: http://www.nabble.com/Jaxb-Complex-type-tp12150941p16025517.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: Jaxb Complex type

2008-03-13 Thread mateamargo
Did you ever get a java.lang.TypeNotPresentException running java2wsdl? I'm having this issue with a complex type -- View this message in context: http://www.nabble.com/Jaxb-Complex-type-tp12150941p16025206.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: Jaxb Complex type

2007-08-15 Thread Julio Arias
Hi James - As I mention in the previous post it was my fault, I didn't put a non param constructor, now that I put it is working fine I get a complex type in my WSDL types schema. But I think I did found a bug in the WSDL generation using Aegis, I would post jira bug for this as soon as I

Re: Jaxb Complex type

2007-08-15 Thread James Mao
Hi, Is it the generics? I'm not sure about this, have not investigate into it, but can give you a quick answer, java2wsdl don't support Aegis yet. James Hi - I got a complex type as follows: @XmlType(name = "PaginatedResult", namespace = ReactorWSConstants.RBX_MODEL_NS) public class Pagin

Re: Jaxb Complex type

2007-08-14 Thread Julio Arias
Sorry it was my mistake, forget this post this is working fine. On Aug 14, 2007, at 1:35 PM, Julio Arias wrote: Hi - I got a complex type as follows: @XmlType(name = "PaginatedResult", namespace = ReactorWSConstants.RBX_MODEL_NS) public class PaginatedResult { List result = new Ar

Jaxb Complex type

2007-08-14 Thread Julio Arias
Hi - I got a complex type as follows: @XmlType(name = "PaginatedResult", namespace = ReactorWSConstants.RBX_MODEL_NS) public class PaginatedResult { List result = new ArrayList(); long totalResults; long currentPage; long pageSize; long lastPage; } and