I'm getting the following error when using the web service navigator or Visual Composer to try to consume my webservice:
<b>Cannot download WSDL from http://server/HoldModificationService?wsdl: Hashtable Enumerator</b>
<b>Here is the WSDL:</b>
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://application" xmlns:tns="http://application" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://lang.java" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://lang.java">
<xsd:complexType abstract="true" name="Number"/>
</xsd:schema>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://application">
<xsd:element name="updateOrCloseHoldReference">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in3" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in4" nillable="true" type="ns1:Number"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in5" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in6" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in7" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in8" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in9" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in10" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in11" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in12" nillable="true" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="1" name="in13" nillable="true" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="updateOrCloseHoldReferenceResponse">
<xsd:complexType/>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="updateOrCloseHoldReferenceResponse">
<wsdl:part name="parameters" element="tns:updateOrCloseHoldReferenceResponse"/>
</wsdl:message>
<wsdl:message name="updateOrCloseHoldReferenceRequest">
<wsdl:part name="parameters" element="tns:updateOrCloseHoldReference"/>
</wsdl:message>
<wsdl:portType name="IHoldServicePortType">
<wsdl:operation name="updateOrCloseHoldReference">
<wsdl:input name="updateOrCloseHoldReferenceRequest" message="tns:updateOrCloseHoldReferenceRequest"/>
<wsdl:output name="updateOrCloseHoldReferenceResponse" message="tns:updateOrCloseHoldReferenceResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="IHoldServiceHttpBinding" type="tns:IHoldServicePortType">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="updateOrCloseHoldReference">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="updateOrCloseHoldReferenceRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="updateOrCloseHoldReferenceResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="IHoldService">
<wsdl:port name="IHoldServiceHttpPort" binding="tns:IHoldServiceHttpBinding">
<wsdlsoap:address location="http://server/HoldModificationService"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Does anyone have any clues on this?