Calling Webservice like this WSDL.

  • Thread starter 성준 ê¹€
  • Start date
Ì

성준 김

This is WSDL from I received from somebody

I must Call it from c#

I'm using VS2005.


Somebody help me


-------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:xs="http://
www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/
soap/" xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:rm="http://docs.oasis-open.org/ws-rx/wsrm/200608"
xmlns:tns="http://docs.oasis-open.org/ws-rx/wsrm/200608/wsdl"
xmlns:kec="http://www.kec.or.kr/standard/Tax/" targetNamespace="http://
www.kec.or.kr/standard/Tax/">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.kec.or.kr/standard/Tax/">
<xs:element name="RequestMessage">
<xs:complexType>
<xs:sequence>
<xs:element name="ResultID">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ReferenceID">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="50"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ResponseMessage">
<xs:complexType>
<xs:sequence>
<xs:element name="RefResultID">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="40"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
<wsdl:message name="SendResultsRequestMessage">
<wsdl:part name="request" element="kec:RequestMessage"/>
<wsdl:part name="attach"/>
</wsdl:message>
<wsdl:message name="SendResultsResponseMessage">
<wsdl:part name="response" element="kec:ResponseMessage"/>
</wsdl:message>
<wsdl:portType name="SendResultsPortType">
<wsdl:blush:peration name="SendResults">
<wsdl:input message="kec:SendResultsRequestMessage"
wsa:Action="http://www.kec.or.kr/standard/Tax/ResultsSubmit"/>
<wsdl:blush:utput message="kec:SendResultsResponseMessage"
wsa:Action="http://www.kec.or.kr/standard/Tax/ResultsRecvAck"/>
</wsdl:blush:peration>
</wsdl:portType>
<wsdl:binding name="SendResultsBinding"
type="kec:SendResultsPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/
soap/http"/>
<wsdl:blush:peration name="SendResults">
<wsdl:input>
<mime:multipartRelated>
<mime:part>
<soap:body parts="request" use="literal"/>
</mime:part>
<mime:part>
<mime:content part="attach" type="application/octet-stream"/>
</mime:part>
</mime:multipartRelated>
</wsdl:input>
<wsdl:blush:utput>
<soap:body parts="response" use="literal"/>
</wsdl:blush:utput>
</wsdl:blush:peration>
</wsdl:binding>
<wsdl:service name="SendResultsService">
<wsdl:port name="SendResultsPort" binding="kec:SendResultsBinding">
<soap:address location="http://saupja.co.kr:8080/Etax/msh?wsdl=eTax-
Service"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top