You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Benjamin Tomasini <bt...@neteverything.com> on 2002/08/20 22:26:18 UTC

Double target namespace in WSDL

After deploying with the following WSDD:

<deployment xmlns="http://xml.apache.org/axis/wsdd/"
            xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
 <service name="LoginService" provider="java:RPC">
  <parameter name="className" value="com.company.om.service.LoginService"/>
  <parameter name="allowedMethods" value="*"/>
  <parameter name="scope" value="request"/>
 </service>
</deployment>

The WSDL from the Axis admin shows the follwing:

<wsdl:definitions targetNamespace="http://localhost:8080/axis/services/LoginService/axis/services/LoginService" ... 

Notice the targetNamespace shows a redundant URL.  Why is that?


I am running Axis beta 3 in Tomcat 4.0.4

Ben Tomasini