Folks
I'm trying out WSDL2Code on the XMethods StockQuote WSDL
java org.apache.axis2.wsdl.WSDL2Java -o . -uri http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl
The resulting classes are like this:
public interface net.xmethods.services.stockquote.StockQuotePortType {
...
}
which is of course illegal Java.
It should read
package net.xmethods.services.stockquote;
public interface StockQuotePortType {
}
The -p option doesn't fix this. I did this on the .91 source drop. Is this already fixed?
Otherwise I'll raise a JIRA
Paul
- [Axis2] codegen Paul Fremantle
- Re: [Axis2] codegen Ajith Ranabahu
- Re: [Axis2] codegen Glen Daniels
- Re: [Axis2] codegen Paul Fremantle
- RE: [Axis2] codegen Tom Jordahl
