Help me out...
I'm messing around with web services, and getting this error under microsoft. (BTW, damn microsoft for making simple things difficult)
Error: Cannot find definition for
http://www.wirerunner.com/WireAuthSe...hServerBinding Service Description with namespace
http://www.wirerunner.com/WireAuthServer.wsdl is missing. Paramater name: name
And here is the actual WSDL:
<?xml version="1.0"?>
<definitions name="WireAuthServer" xmlns:tns="http://www.wirerunner.com/WireAuthServer.wsdl"
targetNamespace="urn:WireAuthServer"
xmlns:typens="urn:WireAuthServer"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<!-- Types for search - result elements, directory categories -->
<message name="verifyRequest">
<part name="username" type="xsd:string"/>
<part name="password" type="xsd:string"/>
</message>
<message name="verifyResponse">
<part name="token" type="xsd:string"/>
</message>
<portType name="WireAuthServerPortType">
<operation name="verify">
<input message="tns:verifyRequest"/>
<output message="tns:verifyResponse"/>
</operation>
</portType>
<binding name="WireAuthServerBinding" type="tns:WireAuthServerPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="verify">
<soap:operation soapAction="urn:WireAuthServer#verify"/>
<input>
<soap:body use="encoded" namespace="urn:WireAuthServer" encodingStyle=\
"http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:WireAuthServer" encodingStyle=\
"http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="WireAuthServer">
<port name="WireAuthServerPort" binding="tns:WireAuthServerBinding">
<soap:address location="http://www.wirerunner.com:9988"/>
</port>
</service>
</definitions>
Help!