RE: java2wsdl rejects class that is acceptable to the aegis universe

2007-07-18 Thread Benson Margulies
I will make a JIRA. The problem is a bean property on a public data member. That is I have a class that is used as a parameter on the SEI and it includes, ... public int scheme; public int getScheme() { return scheme; } public void setScheme(int x) { scheme = x; } Is this really

RE: java2wsdl rejects class that is acceptable to the aegis universe

2007-07-18 Thread Benson Margulies
CXF-807 reports the lack of Aegis support. CXF-806 whines about the brevity of the diagnosis of this class of mine that violates JAXB.

Re: java2wsdl rejects class that is acceptable to the aegis universe

2007-07-18 Thread Freeman Fang
Hi Benson, Yes, for jaxb spec 2.0, public int scheme is property scheme, and getScheme/setScheme is also property scheme which collide with the field name scheme. You can get details from 8.9 in specs I think the way aegis goes is just different with jaxb, it's not right or wrong. Best

java2wsdl rejects class that is acceptable to the aegis universe

2007-07-17 Thread Benson Margulies
Is there something special I have to do to run java2wsdl for an aegis environment? As it is, I get a very mysterious rejection letter until I ask for -verbose, and then I get the following... org.apache.cxf.bus.spring.BusApplicationContext getConfigResources [java] INFO: Could not find the

Re: java2wsdl rejects class that is acceptable to the aegis universe

2007-07-17 Thread Freeman Fang
Hi Benson, Would you please append your java class? From the exception, it seems your class method are bare mode so that java2wsdl load jaxb to process your method parameter type class, but unfortunately, this type class has two properties with same name, which is illegal for jaxb. As you