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 ------- Additional Comments From [EMAIL PROTECTED] 2003-02-28 12:51 ------- 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!
