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 Wes Devauld <we...@devauld.ca> on 2003/01/23 20:16:25 UTC

returned Element's namespace

Hello,


   I have a wsdd that looks like:




<deployment xmlns="http://xml.apache.org/axis/wsdd/">


<service name="Connectivity" provider="java:RPC" style="document"


use="literal">


      <parameter name="className"
value="GMML.interfaces.literal.ConnectivityTest"/>


      <parameter name="allowedMethods" value="*"/>


      <namespace>http://blah/GMML</namespace>


   </service>


</deployment>




But when I look on the wire I see:


...


<soapenv:Body>


<connectivityReturn xmlns="">


...


</connectivityReturn>


</soapenv:Body>


</soapenv:Envelope>




Why is the namespace of the returned object empty?  How can I set it?




Thanks,


-W