DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17522>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17522 stub has incorrect endpoint Summary: stub has incorrect endpoint Product: Axis Version: 1.1RC1 Platform: PC OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: WSDL processing AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] In the stub class (automatically generated by wsdl2java ), the empty constructor does not instatiates correctly the object. In fact it : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>..................................... public ContactAMSServiceStub() throws org.apache.axis.AxisFault { this(null); } >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>..................................... calls the following : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>..................................... public ContactAMSServiceStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { if (service == null) { super.service = new org.apache.axis.client.Service(); } else ................. ................. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>..................................... but this last method does not avvalorate the attribute : super.cachedEndpoint So at the end my client reaches the AxisFault : No endpoint!
