Hi,
The SimpleJaxWsServiceExporter class in Spring 3.0.x version has a special if clause for Weblogic which is not there in version 2.5.6. Because of this it's adding a "/" at the end of my webservice address. For example if my service is MyTestImplService, I am expecting the wsdl address to be
http://localhost:7001/mytestwar/MyTestImplService?wsdl (which is the case with Spring 2.5.6) but with 3.x it is being published as
http://localhost:7001/mytestwar/MyTestImplService/?wsdl (with an extra "/" at the end of service name). But if I try to access this wsdl I am getting error that this wsdl is unreachable. Can anyone explain -
1. What is the reason for this special logic ?
2. How can I overcome this issue ?

Thanks in advance.