markus / KCOM / Web References / kr.co.devdoftech.cloud / FileUpload.wsdl @ ea8a8440
이력 | 보기 | 이력해설 | 다운로드 (4.92 KB)
1 | 787a4489 | KangIngu | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||
3 | <wsdl:types> |
||
4 | <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||
5 | <s:element name="Run"> |
||
6 | <s:complexType> |
||
7 | <s:sequence> |
||
8 | <s:element minOccurs="0" maxOccurs="1" name="ProjectNo" type="s:string" /> |
||
9 | <s:element minOccurs="0" maxOccurs="1" name="VPNo" type="s:string" /> |
||
10 | <s:element minOccurs="0" maxOccurs="1" name="UserID" type="s:string" /> |
||
11 | <s:element minOccurs="0" maxOccurs="1" name="FileName" type="s:string" /> |
||
12 | <s:element minOccurs="0" maxOccurs="1" name="f" type="s:base64Binary" /> |
||
13 | </s:sequence> |
||
14 | </s:complexType> |
||
15 | </s:element> |
||
16 | <s:element name="RunResponse"> |
||
17 | <s:complexType> |
||
18 | <s:sequence> |
||
19 | <s:element minOccurs="0" maxOccurs="1" name="RunResult" type="s:string" /> |
||
20 | </s:sequence> |
||
21 | </s:complexType> |
||
22 | </s:element> |
||
23 | a4aac5fe | taeseongkim | <s:element name="RunSymbol"> |
24 | <s:complexType> |
||
25 | <s:sequence> |
||
26 | <s:element minOccurs="0" maxOccurs="1" name="ProjectNo" type="s:string" /> |
||
27 | <s:element minOccurs="0" maxOccurs="1" name="VPNo" type="s:string" /> |
||
28 | <s:element minOccurs="0" maxOccurs="1" name="UserID" type="s:string" /> |
||
29 | <s:element minOccurs="0" maxOccurs="1" name="FileName" type="s:string" /> |
||
30 | <s:element minOccurs="0" maxOccurs="1" name="f" type="s:base64Binary" /> |
||
31 | </s:sequence> |
||
32 | </s:complexType> |
||
33 | </s:element> |
||
34 | <s:element name="RunSymbolResponse"> |
||
35 | <s:complexType> |
||
36 | <s:sequence> |
||
37 | <s:element minOccurs="0" maxOccurs="1" name="RunSymbolResult" type="s:string" /> |
||
38 | </s:sequence> |
||
39 | </s:complexType> |
||
40 | </s:element> |
||
41 | 787a4489 | KangIngu | </s:schema> |
42 | </wsdl:types> |
||
43 | <wsdl:message name="RunSoapIn"> |
||
44 | <wsdl:part name="parameters" element="tns:Run" /> |
||
45 | </wsdl:message> |
||
46 | <wsdl:message name="RunSoapOut"> |
||
47 | <wsdl:part name="parameters" element="tns:RunResponse" /> |
||
48 | </wsdl:message> |
||
49 | a4aac5fe | taeseongkim | <wsdl:message name="RunSymbolSoapIn"> |
50 | <wsdl:part name="parameters" element="tns:RunSymbol" /> |
||
51 | </wsdl:message> |
||
52 | <wsdl:message name="RunSymbolSoapOut"> |
||
53 | <wsdl:part name="parameters" element="tns:RunSymbolResponse" /> |
||
54 | </wsdl:message> |
||
55 | 787a4489 | KangIngu | <wsdl:portType name="FileUploadSoap"> |
56 | <wsdl:operation name="Run"> |
||
57 | <wsdl:input message="tns:RunSoapIn" /> |
||
58 | <wsdl:output message="tns:RunSoapOut" /> |
||
59 | </wsdl:operation> |
||
60 | a4aac5fe | taeseongkim | <wsdl:operation name="RunSymbol"> |
61 | <wsdl:input message="tns:RunSymbolSoapIn" /> |
||
62 | <wsdl:output message="tns:RunSymbolSoapOut" /> |
||
63 | </wsdl:operation> |
||
64 | 787a4489 | KangIngu | </wsdl:portType> |
65 | <wsdl:binding name="FileUploadSoap" type="tns:FileUploadSoap"> |
||
66 | <soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||
67 | <wsdl:operation name="Run"> |
||
68 | <soap:operation soapAction="http://tempuri.org/Run" style="document" /> |
||
69 | <wsdl:input> |
||
70 | <soap:body use="literal" /> |
||
71 | </wsdl:input> |
||
72 | <wsdl:output> |
||
73 | <soap:body use="literal" /> |
||
74 | </wsdl:output> |
||
75 | </wsdl:operation> |
||
76 | a4aac5fe | taeseongkim | <wsdl:operation name="RunSymbol"> |
77 | <soap:operation soapAction="http://tempuri.org/RunSymbol" style="document" /> |
||
78 | <wsdl:input> |
||
79 | <soap:body use="literal" /> |
||
80 | </wsdl:input> |
||
81 | <wsdl:output> |
||
82 | <soap:body use="literal" /> |
||
83 | </wsdl:output> |
||
84 | </wsdl:operation> |
||
85 | 787a4489 | KangIngu | </wsdl:binding> |
86 | <wsdl:binding name="FileUploadSoap12" type="tns:FileUploadSoap"> |
||
87 | <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||
88 | <wsdl:operation name="Run"> |
||
89 | <soap12:operation soapAction="http://tempuri.org/Run" style="document" /> |
||
90 | <wsdl:input> |
||
91 | <soap12:body use="literal" /> |
||
92 | </wsdl:input> |
||
93 | <wsdl:output> |
||
94 | <soap12:body use="literal" /> |
||
95 | </wsdl:output> |
||
96 | </wsdl:operation> |
||
97 | a4aac5fe | taeseongkim | <wsdl:operation name="RunSymbol"> |
98 | <soap12:operation soapAction="http://tempuri.org/RunSymbol" style="document" /> |
||
99 | <wsdl:input> |
||
100 | <soap12:body use="literal" /> |
||
101 | </wsdl:input> |
||
102 | <wsdl:output> |
||
103 | <soap12:body use="literal" /> |
||
104 | </wsdl:output> |
||
105 | </wsdl:operation> |
||
106 | 787a4489 | KangIngu | </wsdl:binding> |
107 | <wsdl:service name="FileUpload"> |
||
108 | <wsdl:port name="FileUploadSoap" binding="tns:FileUploadSoap"> |
||
109 | a4aac5fe | taeseongkim | <soap:address location="http://localhost:44301/ImageUpload/FileUpload.asmx" /> |
110 | 787a4489 | KangIngu | </wsdl:port> |
111 | <wsdl:port name="FileUploadSoap12" binding="tns:FileUploadSoap12"> |
||
112 | a4aac5fe | taeseongkim | <soap12:address location="http://localhost:44301/ImageUpload/FileUpload.asmx" /> |
113 | 787a4489 | KangIngu | </wsdl:port> |
114 | </wsdl:service> |
||
115 | </wsdl:definitions> |