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=15072>. 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=15072 WSDL2Java now creates other classnames then in Version 1.0 (_Port) ------- Additional Comments From [EMAIL PROTECTED] 2002-12-16 14:03 ------- I have Axis deployed in JBoss3.0.4_Tomcat4.1.12 - also there resists the Stateless Session Beans I'm exporting through Axis. In my server-config.wsdd i have follwing entrys for each session bean: <service name="UnitSession" provider="java:EJB"> <parameter name="allowedMethods" value="addUser2Unit, createUnit, getContents4Unit, getEditors4Unit, getRootUnit, getUnit4Name, getUnits, isTrue, removeUnit, removeUserFromUnit, updateUnit"/> <parameter name="remoteInterfaceName" value="de.juwimm.cms.interfaces.UnitSession"/> <parameter name="beanJndiName" value="cmr.UnitSession"/> <parameter name="homeInterfaceName" value="de.juwimm.cms.interfaces.UnitSessionHome"/> </service> Also I'm using following Mappings for each Bean: <beanMapping languageSpecificType="java:de.juwimm.cms.dao.UnitDao" qname="ns14:UnitDao" xmlns:ns14="urn:dao.cms.juwimm.de"/> <beanMapping languageSpecificType="java:de.juwimm.cms.interfaces.UserData" qname="ns15:UserData" xmlns:ns15="urn:interfaces.cms.juwimm.de"/> Then I access the service through servername/axis/services/UnitSession?wsdl Following is a part from the 1.0 Axis WSDL: <wsdl:service name="UnitSessionService"> <wsdl:port name="UnitSession" binding="impl:UnitSessionSoapBinding"> <wsdlsoap:address location="http://localhost/axis/services/UnitSession"/> </wsdl:port> </wsdl:service> Following is a part from the 1.1 Axis WSDL: <wsdl:service name="UnitSession"> <wsdl:port name="UnitSession" binding="impl:UnitSessionSoapBinding"> <wsdlsoap:address location="http://testserver/axis/services/UnitSession"/> </wsdl:port> </wsdl:service> And like your previous Mail, there is a Problem with the same Name as Port Name and as Service Name I will get every Bean as UnitSession_Port exported.