You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2003/06/04 11:46:04 UTC

DO NOT REPLY [Bug 20452] - style="document", reference but not defined problem. Also duplicate element name.

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=20452>.
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=20452

style="document", reference but not defined problem.  Also duplicate element name.





------- Additional Comments From kmb@mssl.ucl.ac.uk  2003-06-04 09:46 -------
This is me Kevin again.  I would like to say I finally got the WSDL2Java to 
work.  It seems that WSDL2Java ignores <wsdl:types>
Another words I needed to manually put in the type="xsd:string" on the 
<wsdl:part..> and then everyting worked.
<wsdl:message name="setSRequest">
  <wsdl:part element="in0" name="in0" /> 
  </wsdl:message>
- <wsdl:message name="getSResponse">
  <wsdl:part element="getSReturn" name="getSReturn" /> 
  </wsdl:message>
Just for reference the <wsdl:types> was:
<wsdl:types>
- <schema targetNamespace="" xmlns="http://www.w3.org/2001/XMLSchema">
  <import namespace="http://schemas.xmlsoap.org/soap/encoding/" /> 
  <element name="in0" type="xsd:string" /> 
  <element name="getSReturn" type="xsd:string" /> 
  </schema>
  </wsdl:types>
So to me personally it seems that this is still a bug unless I missed 
something.  Sorry if I did, please enlighten me if there was something I did 
wrong.