dev@jax-ws.java.net

rpc/lit question

From: Jitendra Kotamraju <Jitendra.Kotamraju_at_Sun.COM>
Date: Wed, 08 Nov 2006 17:39:15 -0800

For the following rpc/lit wsdl, the generated SEI code doesn't capture
"http://echo.types.org/" anywhere. Shouldn't it capture somewhere ?

<definitions
  targetNamespace="http://echo.abstract.org/"
  xmlns:types="http://echo.types.org/"
  ...
>
  <message name="echoInteger">
    <part type="types:num" name="arg0"></part>
  </message>


<xsd:schema
...
  xmlns:tns="http://echo.types.org/"
  targetNamespace="http://echo.types.org/">

  <xsd:simpleType name="num">
    <xsd:restriction base="xsd:integer">
...
    </xsd:restriction>
  </xsd:simpleType>

</xsd:schema>

Jitu