> I have deployed a very simple service using style="document". The WSDL
> looks like this:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <wsdl:definitions
> targetNamespace="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/Simple
> Document" xmlns="http://schemas.xmlsoap.org/wsdl/"
> xmlns:apachesoap="http://xml.apache.org/xml-soap"
> xmlns:impl="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocum
> ent"
> xmlns:intf="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocum
> ent" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
> xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
> xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
> xmlns:xsd="http://www.w3.org/2001/XMLSchema"><wsdl:types><schema
> targetNamespace="" xmlns="http://www.w3.org/2001/XMLSchema"><import
> namespace="http://schemas.xmlsoap.org/soap/encoding/"/><element name="in"
> type="xsd:string"/><element name="reverseReturn"
> type="xsd:string"/></schema></wsdl:types>
> <wsdl:message name="reverseResponse">
> <wsdl:part element="reverseReturn" name="reverseReturn"/>
> </wsdl:message>
> <wsdl:message name="reverseRequest">
> <wsdl:part element="in" name="in"/>
> </wsdl:message>
> <wsdl:portType name="Simple">
> <wsdl:operation name="reverse" parameterOrder="in">
> <wsdl:input message="intf:reverseRequest" name="reverseRequest"/>
> <wsdl:output message="intf:reverseResponse" name="reverseResponse"/>
> </wsdl:operation>
> </wsdl:portType>
> <wsdl:binding name="SimpleDocumentSoapBinding" type="intf:Simple">
> <wsdlsoap:binding style="document"
> transport="http://schemas.xmlsoap.org/soap/http"/>
> <wsdl:operation name="reverse">
> <wsdlsoap:operation soapAction=""/>
> <wsdl:input name="reverseRequest">
> <wsdlsoap:body
> namespace="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocume
> nt" use="literal"/>
> </wsdl:input>
> <wsdl:output name="reverseResponse">
> <wsdlsoap:body
> namespace="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocume
> nt" use="literal"/>
> </wsdl:output>
> </wsdl:operation>
> </wsdl:binding>
> <wsdl:service name="SimpleService">
> <wsdl:port binding="intf:SimpleDocumentSoapBinding"
> name="SimpleDocument">
> <wsdlsoap:address
> location="http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocumen
> t"/>
> </wsdl:port>
> </wsdl:service>
> </wsdl:definitions>
>
> When I try and generate client stubs for it using
> org.apache.axis.wsdl.WSDL2Java I get
>
> Parsing XML file:
> http://cpwsdd.devenv1.bt.co.uk:63024/axis/services/SimpleDocument?wsdl
> java.io.IOException: Element
> {http://schemas.xmlsoap.org/wsdl/}reverseReturn is referenced but not
> defined.
> at
> org.apache.axis.wsdl.symbolTable.SymbolTable.checkForUndefined(SymbolTable
> .java:527)
> at
> org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:422)
> at
> org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:408
> )
> at
> org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:393
> )
> at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:245)
> at java.lang.Thread.run(Thread.java:484)
>
> Is this a bug, or am I doing something wrong ?
>
> TIA
>
> Adrian