Hi bros & sisters,
My name is veda.
Need some help in calling a SOAP binding web service.
After reading this link http://www.aspfree.com/c/a/ASP/Consu...vice-from-ASP/,
1. i still do not know what value to pass in for parameter SoapURL. I did try http://invicta.app.vic:8002/RTO/RTOS...CustomerOffers, but return a negative result.
2. Am i right to say i cannot do a SoapRequest.Open "GET",
or SoapRequest.Open "POST", because i only have a SOAP protocol binding instead of HTTP protocol binding.
I really appreciate any help to enlighten me.
Below is my complete wsdl. Its quite a small wsdl
Code:<?xml version="1.0" encoding="utf-8" ?> - <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://com.gtr.ma.rto/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://com.gtr.ma.rto/" name="RTOService"> - <types> - <xsd:schema> <xsd:import namespace="http://com.gtr.ma.rto/jws" schemaLocation="http://invicta.app.vic:8002/RTO/RTOService?xsd=1" /> </xsd:schema> - <xsd:schema> <xsd:import namespace="http://api.interact.coycorp.com/xsd" schemaLocation="http://invicta.app.vic:8002/RTO/RTOService?xsd=2" /> </xsd:schema> </types> - <message name="getCustomerOffers"> <part xmlns:ns1="http://com.gtr.ma.rto/jws" name="parameters" element="ns1:getCustomerOffers" /> </message> - <message name="getCustomerOffersResponse"> <part xmlns:ns2="http://com.gtr.ma.rto/jws" name="parameters" element="ns2:getOffersResponse" /> </message> - <message name="endCustomerSession"> <part xmlns:ns3="http://com.gtr.ma.rto/jws" name="parameters" element="ns3:endCustomerSession" /> </message> - <message name="endCustomerSessionResponse"> <part xmlns:ns4="http://com.gtr.ma.rto/jws" name="parameters" element="ns4:endCustomerSessionResponse" /> </message> - <portType name="RTOImpl"> - <operation name="getCustomerOffers"> <input message="tns:getCustomerOffers" /> <output message="tns:getCustomerOffersResponse" /> </operation> + <operation name="endCustomerSession"> <input message="tns:endCustomerSession" /> <output message="tns:endCustomerSessionResponse" /> </operation> </portType> - <binding name="RTOImplPortBinding" type="tns:RTOImpl"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> - <operation name="getCustomerOffers"> <soap:operation soapAction="" /> - <input> <soap:body use="literal" /> </input> - <output> <soap:body use="literal" /> </output> </operation> - <operation name="endCustomerSession"> <soap:operation soapAction="" /> - <input> <soap:body use="literal" /> </input> - <output> <soap:body use="literal" /> </output> </operation> </binding> - <service name="RTOService"> - <port name="RTOImplPort" binding="tns:RTOImplPortBinding"> <soap:address location="http://invicta.app.vic:8002/RTO/RTOService" /> </port> </service> </definitions>



Bookmarks