RE: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-23 Thread Derek
] Why do I get service skeletons taking OMElement, and uncompilable code? Oops, a little late here and I misread the method signature. Getting XmlObject instead of OMElement probably isn't what you were hoping for, so perhaps as Anne implied xs:any is the culprit. Do keep

RE: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-21 Thread Derek
@ws.apache.org Subject: Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code? Oops, a little late here and I misread the method signature. Getting XmlObject instead of OMElement probably isn't what you were hoping for, so perhaps as Anne implied xs:any

Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-21 Thread Davanum Srinivas
, 2006 5:38 PM To: axis-user@ws.apache.org Subject: Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code? Oops, a little late here and I misread the method signature. Getting XmlObject instead of OMElement probably isn't what you were hoping for, so perhaps

Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-20 Thread Anne Thomas Manes
I suspect it's because you have xs:any in your schema. Since WSDL2Java doesn't know what will be in the message, it defaults to OMElement.AnneOn 6/20/06, Derek [EMAIL PROTECTED] wrote: I'm getting rather frustrated trying to use Axis2 to do something apparentlypretty basic.Using the WSDL and

RE: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-20 Thread Derek
, June 20, 2006 5:10 PMTo: axis-user@ws.apache.org; [EMAIL PROTECTED]Subject: Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?I suspect it's because you have xs:any in your schema. Since WSDL2Java doesn't know what will be in the message, it defaults

Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-20 Thread robert lazarski
To add to what Anne said, you're using a version of axis from May 05, 2006 . While that may be the official 1.0 release, there were several important bugs fixed for xmlbeans after that. The good news is that this is the code that I was able to produce from the latest nightly: /** *

Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-20 Thread robert lazarski
Oops, a little late here and I misread the method signature. Getting XmlObject instead of OMElement probably isn't what you were hoping for, so perhaps as Anne implied xs:any is the culprit. Do keep in mind the bug fixes in the xmlbeans code since the 1.0 release, however. Good luck, Robert