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=9527>. 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=9527 Problem generating client-stubs. WSDL to Java. Summary: Problem generating client-stubs. WSDL to Java. Product: Axis Version: current (nightly) Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Critical Priority: Other Component: Deployment / Registries AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] When generating the client stubs, it generates all the stubs plus ChainedException.java and ServiceException.java. When compiling these stubs, it fails to generate both of the exception classes that I stated above. The reason it fails to generate those stubs is b/c it is creating extra constructors. Here is what it generated for ServiceException.java: package com.attachmate.sc.ws.runtime.service; public class ServiceException extends com.attachmate.sc.ws.ChainedException implements java.io.Serializable { public ServiceException() { } public ServiceException( super( } .......... And the rest of the class would be here. Here is what it generated for ChainedException.java: package com.attachmate.sc.ws; public class ChainedException extends org.apache.axis.AxisFault implements java.io.Serializable { public ChainedException() { } public ChainedException( } ..... And rest of the class here.