0902-修改材料管理接口
This commit is contained in:
@@ -15,6 +15,20 @@ namespace BLL.MCSService {
|
||||
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="MCSService.WebService1Soap")]
|
||||
public interface WebService1Soap {
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getLabPoDetails", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getLabPoDetails(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getLabPoDetails", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getLabPoDetailsAsync(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeLabIssueDetails", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string writeLabIssueDetails(string JsonVoiceArray, long ProjectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeLabIssueDetails", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> writeLabIssueDetailsAsync(string JsonVoiceArray, long ProjectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendorUserNameAndPwd", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getVendorUserNameAndPwd();
|
||||
@@ -22,6 +36,27 @@ namespace BLL.MCSService {
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getVendorUserNameAndPwd", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getVendorUserNameAndPwdAsync();
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPipeMaterilalByType", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getPipeMaterilalByType(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPipeMaterilalByType", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getPipeMaterilalByTypeAsync(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPipeMaterilalByAera", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getPipeMaterilalByAera(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPipeMaterilalByAera", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getPipeMaterilalByAeraAsync(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPojectReport", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getPojectReport(long projectId, string name);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPojectReport", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getPojectReportAsync(long projectId, string name);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPojectInfo", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getPojectInfo();
|
||||
@@ -36,6 +71,13 @@ namespace BLL.MCSService {
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetails", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getPoDetailsAsync(long projectID);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetailsByPoNo", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string getPoDetailsByPoNo(long projectID, string poNo);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/getPoDetailsByPoNo", ReplyAction="*")]
|
||||
System.Threading.Tasks.Task<string> getPoDetailsByPoNoAsync(long projectID, string poNo);
|
||||
|
||||
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/writeShelvesNo", ReplyAction="*")]
|
||||
[System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)]
|
||||
string writeShelvesNo(string JsonVoiceArray, long ProjectID);
|
||||
@@ -155,6 +197,22 @@ namespace BLL.MCSService {
|
||||
base(binding, remoteAddress) {
|
||||
}
|
||||
|
||||
public string getLabPoDetails(long projectID) {
|
||||
return base.Channel.getLabPoDetails(projectID);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> getLabPoDetailsAsync(long projectID) {
|
||||
return base.Channel.getLabPoDetailsAsync(projectID);
|
||||
}
|
||||
|
||||
public string writeLabIssueDetails(string JsonVoiceArray, long ProjectID) {
|
||||
return base.Channel.writeLabIssueDetails(JsonVoiceArray, ProjectID);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> writeLabIssueDetailsAsync(string JsonVoiceArray, long ProjectID) {
|
||||
return base.Channel.writeLabIssueDetailsAsync(JsonVoiceArray, ProjectID);
|
||||
}
|
||||
|
||||
public string getVendorUserNameAndPwd() {
|
||||
return base.Channel.getVendorUserNameAndPwd();
|
||||
}
|
||||
@@ -163,6 +221,30 @@ namespace BLL.MCSService {
|
||||
return base.Channel.getVendorUserNameAndPwdAsync();
|
||||
}
|
||||
|
||||
public string getPipeMaterilalByType(long projectID) {
|
||||
return base.Channel.getPipeMaterilalByType(projectID);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> getPipeMaterilalByTypeAsync(long projectID) {
|
||||
return base.Channel.getPipeMaterilalByTypeAsync(projectID);
|
||||
}
|
||||
|
||||
public string getPipeMaterilalByAera(long projectID) {
|
||||
return base.Channel.getPipeMaterilalByAera(projectID);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> getPipeMaterilalByAeraAsync(long projectID) {
|
||||
return base.Channel.getPipeMaterilalByAeraAsync(projectID);
|
||||
}
|
||||
|
||||
public string getPojectReport(long projectId, string name) {
|
||||
return base.Channel.getPojectReport(projectId, name);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> getPojectReportAsync(long projectId, string name) {
|
||||
return base.Channel.getPojectReportAsync(projectId, name);
|
||||
}
|
||||
|
||||
public string getPojectInfo() {
|
||||
return base.Channel.getPojectInfo();
|
||||
}
|
||||
@@ -179,6 +261,14 @@ namespace BLL.MCSService {
|
||||
return base.Channel.getPoDetailsAsync(projectID);
|
||||
}
|
||||
|
||||
public string getPoDetailsByPoNo(long projectID, string poNo) {
|
||||
return base.Channel.getPoDetailsByPoNo(projectID, poNo);
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string> getPoDetailsByPoNoAsync(long projectID, string poNo) {
|
||||
return base.Channel.getPoDetailsByPoNoAsync(projectID, poNo);
|
||||
}
|
||||
|
||||
public string writeShelvesNo(string JsonVoiceArray, long ProjectID) {
|
||||
return base.Channel.writeShelvesNo(JsonVoiceArray, ProjectID);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="5f8efb35-0475-48cd-b9af-a438f936a5ea" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
|
||||
<ReferenceGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ID="086c9c48-2429-48ad-bc54-5b0cf954befd" xmlns="urn:schemas-microsoft-com:xml-wcfservicemap">
|
||||
<ClientOptions>
|
||||
<GenerateAsynchronousMethods>false</GenerateAsynchronousMethods>
|
||||
<GenerateTaskBasedAsynchronousMethod>true</GenerateTaskBasedAsynchronousMethod>
|
||||
@@ -19,11 +19,11 @@
|
||||
<ServiceContractMappings />
|
||||
</ClientOptions>
|
||||
<MetadataSources>
|
||||
<MetadataSource Address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" Protocol="http" SourceId="1" />
|
||||
<MetadataSource Address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" Protocol="http" SourceId="1" />
|
||||
</MetadataSources>
|
||||
<Metadata>
|
||||
<MetadataFile FileName="WebService1.wsdl" MetadataType="Wsdl" ID="147ca4c4-e6f9-4f63-8f58-9f0252b12bb2" SourceId="1" SourceUrl="http://mat.cwcec.com/LocWebServices/WebService1.asmx?wsdl" />
|
||||
<MetadataFile FileName="WebService1.disco" MetadataType="Disco" ID="a821a427-5351-4ca8-9653-b4e32b14d913" SourceId="1" SourceUrl="http://mat.cwcec.com/LocWebServices/WebService1.asmx?disco" />
|
||||
<MetadataFile FileName="WebService1.wsdl" MetadataType="Wsdl" ID="83764088-5b84-4684-92c8-839efa4916f2" SourceId="1" SourceUrl="https://mat.cwcec.com/LocWebServices/WebService1.asmx?wsdl" />
|
||||
<MetadataFile FileName="WebService1.disco" MetadataType="Disco" ID="23debe2a-8fc4-4880-b170-a0fd150cb4f8" SourceId="1" SourceUrl="https://mat.cwcec.com/LocWebServices/WebService1.asmx?disco" />
|
||||
</Metadata>
|
||||
<Extensions>
|
||||
<ExtensionFile FileName="configuration91.svcinfo" Name="configuration91.svcinfo" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<discovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/disco/">
|
||||
<contractRef ref="http://mat.cwcec.com/LocWebServices/WebService1.asmx?wsdl" docRef="http://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
|
||||
<soap address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q1="http://tempuri.org/" binding="q1:WebService1Soap" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||
<soap address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q2="http://tempuri.org/" binding="q2:WebService1Soap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||
<contractRef ref="https://mat.cwcec.com/LocWebServices/WebService1.asmx?wsdl" docRef="https://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" />
|
||||
<soap address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q1="http://tempuri.org/" binding="q1:WebService1Soap" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||
<soap address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" xmlns:q2="http://tempuri.org/" binding="q2:WebService1Soap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" />
|
||||
</discovery>
|
||||
@@ -2,6 +2,35 @@
|
||||
<wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
||||
<wsdl:types>
|
||||
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
|
||||
<s:element name="getLabPoDetails">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="1" maxOccurs="1" name="projectID" type="s:long" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getLabPoDetailsResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="getLabPoDetailsResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="writeLabIssueDetails">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="JsonVoiceArray" type="s:string" />
|
||||
<s:element minOccurs="1" maxOccurs="1" name="ProjectID" type="s:long" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="writeLabIssueDetailsResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="writeLabIssueDetailsResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getVendorUserNameAndPwd">
|
||||
<s:complexType />
|
||||
</s:element>
|
||||
@@ -12,6 +41,49 @@
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPipeMaterilalByType">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="1" maxOccurs="1" name="projectID" type="s:long" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPipeMaterilalByTypeResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="getPipeMaterilalByTypeResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPipeMaterilalByAera">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="1" maxOccurs="1" name="projectID" type="s:long" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPipeMaterilalByAeraResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="getPipeMaterilalByAeraResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPojectReport">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="1" maxOccurs="1" name="projectId" type="s:long" />
|
||||
<s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPojectReportResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="getPojectReportResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPojectInfo">
|
||||
<s:complexType />
|
||||
</s:element>
|
||||
@@ -36,6 +108,21 @@
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPoDetailsByPoNo">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="1" maxOccurs="1" name="projectID" type="s:long" />
|
||||
<s:element minOccurs="0" maxOccurs="1" name="poNo" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="getPoDetailsByPoNoResponse">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
<s:element minOccurs="0" maxOccurs="1" name="getPoDetailsByPoNoResult" type="s:string" />
|
||||
</s:sequence>
|
||||
</s:complexType>
|
||||
</s:element>
|
||||
<s:element name="writeShelvesNo">
|
||||
<s:complexType>
|
||||
<s:sequence>
|
||||
@@ -224,12 +311,42 @@
|
||||
<s:element name="string" nillable="true" type="s:string" />
|
||||
</s:schema>
|
||||
</wsdl:types>
|
||||
<wsdl:message name="getLabPoDetailsSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getLabPoDetails" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getLabPoDetailsSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getLabPoDetailsResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:writeLabIssueDetails" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:writeLabIssueDetailsResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getVendorUserNameAndPwdSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getVendorUserNameAndPwd" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getVendorUserNameAndPwdSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getVendorUserNameAndPwdResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getPipeMaterilalByType" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getPipeMaterilalByTypeResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getPipeMaterilalByAera" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getPipeMaterilalByAeraResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getPojectReport" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getPojectReportResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectInfoSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getPojectInfo" />
|
||||
</wsdl:message>
|
||||
@@ -242,6 +359,12 @@
|
||||
<wsdl:message name="getPoDetailsSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getPoDetailsResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:getPoDetailsByPoNo" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getPoDetailsByPoNoResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeShelvesNoSoapIn">
|
||||
<wsdl:part name="parameters" element="tns:writeShelvesNo" />
|
||||
</wsdl:message>
|
||||
@@ -320,10 +443,42 @@
|
||||
<wsdl:message name="getReqDetailsSoapOut">
|
||||
<wsdl:part name="parameters" element="tns:getReqDetailsResponse" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getLabPoDetailsHttpGetIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getLabPoDetailsHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsHttpGetIn">
|
||||
<wsdl:part name="JsonVoiceArray" type="s:string" />
|
||||
<wsdl:part name="ProjectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getVendorUserNameAndPwdHttpGetIn" />
|
||||
<wsdl:message name="getVendorUserNameAndPwdHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeHttpGetIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraHttpGetIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportHttpGetIn">
|
||||
<wsdl:part name="projectId" type="s:string" />
|
||||
<wsdl:part name="name" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectInfoHttpGetIn" />
|
||||
<wsdl:message name="getPojectInfoHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
@@ -334,6 +489,13 @@
|
||||
<wsdl:message name="getPoDetailsHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoHttpGetIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
<wsdl:part name="poNo" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeShelvesNoHttpGetIn">
|
||||
<wsdl:part name="JsonVoiceArray" type="s:string" />
|
||||
<wsdl:part name="ProjectID" type="s:string" />
|
||||
@@ -417,10 +579,42 @@
|
||||
<wsdl:message name="getReqDetailsHttpGetOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getLabPoDetailsHttpPostIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getLabPoDetailsHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsHttpPostIn">
|
||||
<wsdl:part name="JsonVoiceArray" type="s:string" />
|
||||
<wsdl:part name="ProjectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeLabIssueDetailsHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getVendorUserNameAndPwdHttpPostIn" />
|
||||
<wsdl:message name="getVendorUserNameAndPwdHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeHttpPostIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByTypeHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraHttpPostIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPipeMaterilalByAeraHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportHttpPostIn">
|
||||
<wsdl:part name="projectId" type="s:string" />
|
||||
<wsdl:part name="name" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectReportHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPojectInfoHttpPostIn" />
|
||||
<wsdl:message name="getPojectInfoHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
@@ -431,6 +625,13 @@
|
||||
<wsdl:message name="getPoDetailsHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoHttpPostIn">
|
||||
<wsdl:part name="projectID" type="s:string" />
|
||||
<wsdl:part name="poNo" type="s:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getPoDetailsByPoNoHttpPostOut">
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:message name="writeShelvesNoHttpPostIn">
|
||||
<wsdl:part name="JsonVoiceArray" type="s:string" />
|
||||
<wsdl:part name="ProjectID" type="s:string" />
|
||||
@@ -515,10 +716,30 @@
|
||||
<wsdl:part name="Body" element="tns:string" />
|
||||
</wsdl:message>
|
||||
<wsdl:portType name="WebService1Soap">
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<wsdl:input message="tns:getLabPoDetailsSoapIn" />
|
||||
<wsdl:output message="tns:getLabPoDetailsSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<wsdl:input message="tns:writeLabIssueDetailsSoapIn" />
|
||||
<wsdl:output message="tns:writeLabIssueDetailsSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<wsdl:input message="tns:getVendorUserNameAndPwdSoapIn" />
|
||||
<wsdl:output message="tns:getVendorUserNameAndPwdSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<wsdl:input message="tns:getPipeMaterilalByTypeSoapIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByTypeSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<wsdl:input message="tns:getPipeMaterilalByAeraSoapIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByAeraSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<wsdl:input message="tns:getPojectReportSoapIn" />
|
||||
<wsdl:output message="tns:getPojectReportSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<wsdl:input message="tns:getPojectInfoSoapIn" />
|
||||
<wsdl:output message="tns:getPojectInfoSoapOut" />
|
||||
@@ -527,6 +748,10 @@
|
||||
<wsdl:input message="tns:getPoDetailsSoapIn" />
|
||||
<wsdl:output message="tns:getPoDetailsSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<wsdl:input message="tns:getPoDetailsByPoNoSoapIn" />
|
||||
<wsdl:output message="tns:getPoDetailsByPoNoSoapOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<wsdl:input message="tns:writeShelvesNoSoapIn" />
|
||||
<wsdl:output message="tns:writeShelvesNoSoapOut" />
|
||||
@@ -581,10 +806,30 @@
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<wsdl:portType name="WebService1HttpGet">
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<wsdl:input message="tns:getLabPoDetailsHttpGetIn" />
|
||||
<wsdl:output message="tns:getLabPoDetailsHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<wsdl:input message="tns:writeLabIssueDetailsHttpGetIn" />
|
||||
<wsdl:output message="tns:writeLabIssueDetailsHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<wsdl:input message="tns:getVendorUserNameAndPwdHttpGetIn" />
|
||||
<wsdl:output message="tns:getVendorUserNameAndPwdHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<wsdl:input message="tns:getPipeMaterilalByTypeHttpGetIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByTypeHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<wsdl:input message="tns:getPipeMaterilalByAeraHttpGetIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByAeraHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<wsdl:input message="tns:getPojectReportHttpGetIn" />
|
||||
<wsdl:output message="tns:getPojectReportHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<wsdl:input message="tns:getPojectInfoHttpGetIn" />
|
||||
<wsdl:output message="tns:getPojectInfoHttpGetOut" />
|
||||
@@ -593,6 +838,10 @@
|
||||
<wsdl:input message="tns:getPoDetailsHttpGetIn" />
|
||||
<wsdl:output message="tns:getPoDetailsHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<wsdl:input message="tns:getPoDetailsByPoNoHttpGetIn" />
|
||||
<wsdl:output message="tns:getPoDetailsByPoNoHttpGetOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<wsdl:input message="tns:writeShelvesNoHttpGetIn" />
|
||||
<wsdl:output message="tns:writeShelvesNoHttpGetOut" />
|
||||
@@ -647,10 +896,30 @@
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<wsdl:portType name="WebService1HttpPost">
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<wsdl:input message="tns:getLabPoDetailsHttpPostIn" />
|
||||
<wsdl:output message="tns:getLabPoDetailsHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<wsdl:input message="tns:writeLabIssueDetailsHttpPostIn" />
|
||||
<wsdl:output message="tns:writeLabIssueDetailsHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<wsdl:input message="tns:getVendorUserNameAndPwdHttpPostIn" />
|
||||
<wsdl:output message="tns:getVendorUserNameAndPwdHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<wsdl:input message="tns:getPipeMaterilalByTypeHttpPostIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByTypeHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<wsdl:input message="tns:getPipeMaterilalByAeraHttpPostIn" />
|
||||
<wsdl:output message="tns:getPipeMaterilalByAeraHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<wsdl:input message="tns:getPojectReportHttpPostIn" />
|
||||
<wsdl:output message="tns:getPojectReportHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<wsdl:input message="tns:getPojectInfoHttpPostIn" />
|
||||
<wsdl:output message="tns:getPojectInfoHttpPostOut" />
|
||||
@@ -659,6 +928,10 @@
|
||||
<wsdl:input message="tns:getPoDetailsHttpPostIn" />
|
||||
<wsdl:output message="tns:getPoDetailsHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<wsdl:input message="tns:getPoDetailsByPoNoHttpPostIn" />
|
||||
<wsdl:output message="tns:getPoDetailsByPoNoHttpPostOut" />
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<wsdl:input message="tns:writeShelvesNoHttpPostIn" />
|
||||
<wsdl:output message="tns:writeShelvesNoHttpPostOut" />
|
||||
@@ -714,6 +987,24 @@
|
||||
</wsdl:portType>
|
||||
<wsdl:binding name="WebService1Soap" type="tns:WebService1Soap">
|
||||
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<soap:operation soapAction="http://tempuri.org/getLabPoDetails" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<soap:operation soapAction="http://tempuri.org/writeLabIssueDetails" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<soap:operation soapAction="http://tempuri.org/getVendorUserNameAndPwd" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -723,6 +1014,33 @@
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<soap:operation soapAction="http://tempuri.org/getPipeMaterilalByType" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<soap:operation soapAction="http://tempuri.org/getPipeMaterilalByAera" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<soap:operation soapAction="http://tempuri.org/getPojectReport" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<soap:operation soapAction="http://tempuri.org/getPojectInfo" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -741,6 +1059,15 @@
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<soap:operation soapAction="http://tempuri.org/getPoDetailsByPoNo" style="document" />
|
||||
<wsdl:input>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<soap:operation soapAction="http://tempuri.org/writeShelvesNo" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -861,6 +1188,24 @@
|
||||
</wsdl:binding>
|
||||
<wsdl:binding name="WebService1Soap12" type="tns:WebService1Soap">
|
||||
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<soap12:operation soapAction="http://tempuri.org/getLabPoDetails" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<soap12:operation soapAction="http://tempuri.org/writeLabIssueDetails" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<soap12:operation soapAction="http://tempuri.org/getVendorUserNameAndPwd" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -870,6 +1215,33 @@
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<soap12:operation soapAction="http://tempuri.org/getPipeMaterilalByType" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<soap12:operation soapAction="http://tempuri.org/getPipeMaterilalByAera" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<soap12:operation soapAction="http://tempuri.org/getPojectReport" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<soap12:operation soapAction="http://tempuri.org/getPojectInfo" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -888,6 +1260,15 @@
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<soap12:operation soapAction="http://tempuri.org/getPoDetailsByPoNo" style="document" />
|
||||
<wsdl:input>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<soap12:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<soap12:operation soapAction="http://tempuri.org/writeShelvesNo" style="document" />
|
||||
<wsdl:input>
|
||||
@@ -1008,6 +1389,24 @@
|
||||
</wsdl:binding>
|
||||
<wsdl:binding name="WebService1HttpGet" type="tns:WebService1HttpGet">
|
||||
<http:binding verb="GET" />
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<http:operation location="/getLabPoDetails" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<http:operation location="/writeLabIssueDetails" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<http:operation location="/getVendorUserNameAndPwd" />
|
||||
<wsdl:input>
|
||||
@@ -1017,6 +1416,33 @@
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<http:operation location="/getPipeMaterilalByType" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<http:operation location="/getPipeMaterilalByAera" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<http:operation location="/getPojectReport" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<http:operation location="/getPojectInfo" />
|
||||
<wsdl:input>
|
||||
@@ -1035,6 +1461,15 @@
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<http:operation location="/getPoDetailsByPoNo" />
|
||||
<wsdl:input>
|
||||
<http:urlEncoded />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<http:operation location="/writeShelvesNo" />
|
||||
<wsdl:input>
|
||||
@@ -1155,6 +1590,24 @@
|
||||
</wsdl:binding>
|
||||
<wsdl:binding name="WebService1HttpPost" type="tns:WebService1HttpPost">
|
||||
<http:binding verb="POST" />
|
||||
<wsdl:operation name="getLabPoDetails">
|
||||
<http:operation location="/getLabPoDetails" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeLabIssueDetails">
|
||||
<http:operation location="/writeLabIssueDetails" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getVendorUserNameAndPwd">
|
||||
<http:operation location="/getVendorUserNameAndPwd" />
|
||||
<wsdl:input>
|
||||
@@ -1164,6 +1617,33 @@
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByType">
|
||||
<http:operation location="/getPipeMaterilalByType" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPipeMaterilalByAera">
|
||||
<http:operation location="/getPipeMaterilalByAera" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectReport">
|
||||
<http:operation location="/getPojectReport" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPojectInfo">
|
||||
<http:operation location="/getPojectInfo" />
|
||||
<wsdl:input>
|
||||
@@ -1182,6 +1662,15 @@
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="getPoDetailsByPoNo">
|
||||
<http:operation location="/getPoDetailsByPoNo" />
|
||||
<wsdl:input>
|
||||
<mime:content type="application/x-www-form-urlencoded" />
|
||||
</wsdl:input>
|
||||
<wsdl:output>
|
||||
<mime:mimeXml part="Body" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
<wsdl:operation name="writeShelvesNo">
|
||||
<http:operation location="/writeShelvesNo" />
|
||||
<wsdl:input>
|
||||
@@ -1302,16 +1791,16 @@
|
||||
</wsdl:binding>
|
||||
<wsdl:service name="WebService1">
|
||||
<wsdl:port name="WebService1Soap" binding="tns:WebService1Soap">
|
||||
<soap:address location="http://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
<soap:address location="https://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
</wsdl:port>
|
||||
<wsdl:port name="WebService1Soap12" binding="tns:WebService1Soap12">
|
||||
<soap12:address location="http://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
<soap12:address location="https://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
</wsdl:port>
|
||||
<wsdl:port name="WebService1HttpGet" binding="tns:WebService1HttpGet">
|
||||
<http:address location="http://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
<http:address location="https://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
</wsdl:port>
|
||||
<wsdl:port name="WebService1HttpPost" binding="tns:WebService1HttpPost">
|
||||
<http:address location="http://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
<http:address location="https://mat.cwcec.com/LocWebServices/WebService1.asmx" />
|
||||
</wsdl:port>
|
||||
</wsdl:service>
|
||||
</wsdl:definitions>
|
||||
@@ -2,11 +2,12 @@
|
||||
<configurationSnapshot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:schemas-microsoft-com:xml-wcfconfigurationsnapshot">
|
||||
<behaviors />
|
||||
<bindings>
|
||||
<binding digest="System.ServiceModel.Configuration.BasicHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WebService1Soap" />" bindingType="basicHttpBinding" name="WebService1Soap" />
|
||||
<binding digest="System.ServiceModel.Configuration.CustomBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WebService1Soap12"><httpTransport /><textMessageEncoding messageVersion="Soap12" /></Data>" bindingType="customBinding" name="WebService1Soap12" />
|
||||
<binding digest="System.ServiceModel.Configuration.BasicHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WebService1Soap"><security mode="Transport" /></Data>" bindingType="basicHttpBinding" name="WebService1Soap" />
|
||||
<binding digest="System.ServiceModel.Configuration.BasicHttpBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WebService1Soap1" />" bindingType="basicHttpBinding" name="WebService1Soap1" />
|
||||
<binding digest="System.ServiceModel.Configuration.CustomBindingElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:<?xml version="1.0" encoding="utf-16"?><Data name="WebService1Soap12"><httpsTransport /><textMessageEncoding messageVersion="Soap12" /></Data>" bindingType="customBinding" name="WebService1Soap12" />
|
||||
</bindings>
|
||||
<endpoints>
|
||||
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap" />" contractName="MCSService.WebService1Soap" name="WebService1Soap" />
|
||||
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="customBinding" bindingConfiguration="WebService1Soap12" contract="MCSService.WebService1Soap" name="WebService1Soap12" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="customBinding" bindingConfiguration="WebService1Soap12" contract="MCSService.WebService1Soap" name="WebService1Soap12" />" contractName="MCSService.WebService1Soap" name="WebService1Soap12" />
|
||||
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="basicHttpBinding" bindingConfiguration="WebService1Soap" contract="MCSService.WebService1Soap" name="WebService1Soap" />" contractName="MCSService.WebService1Soap" name="WebService1Soap" />
|
||||
<endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="customBinding" bindingConfiguration="WebService1Soap12" contract="MCSService.WebService1Soap" name="WebService1Soap12" />" digest="<?xml version="1.0" encoding="utf-16"?><Data address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" binding="customBinding" bindingConfiguration="WebService1Soap12" contract="MCSService.WebService1Soap" name="WebService1Soap12" />" contractName="MCSService.WebService1Soap" name="WebService1Soap12" />
|
||||
</endpoints>
|
||||
</configurationSnapshot>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="uG86B3WT1jeys7x2zmrq1Sa3bTc=">
|
||||
<SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="qVKxcFbdGCCS8eD1sw8FYkgbSfk=">
|
||||
<bindingConfigurations>
|
||||
<bindingConfiguration bindingType="basicHttpBinding" name="WebService1Soap">
|
||||
<properties>
|
||||
@@ -72,6 +72,115 @@
|
||||
<property path="/security" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.BasicHttpSecurityElement</serializedValue>
|
||||
</property>
|
||||
<property path="/security/mode" isComplexType="false" isExplicitlyDefined="true" clrType="System.ServiceModel.BasicHttpSecurityMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Transport</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpTransportSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.HttpTransportSecurityElement</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpClientCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>None</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/proxyCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HttpProxyCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>None</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Never</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>TransportSelected</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>(集合)</serializedValue>
|
||||
</property>
|
||||
<property path="/security/transport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/security/message" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpMessageSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.BasicHttpMessageSecurityElement</serializedValue>
|
||||
</property>
|
||||
<property path="/security/message/clientCredentialType" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpMessageCredentialType, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>UserName</serializedValue>
|
||||
</property>
|
||||
<property path="/security/message/algorithmSuite" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Security.SecurityAlgorithmSuite, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Default</serializedValue>
|
||||
</property>
|
||||
</properties>
|
||||
</bindingConfiguration>
|
||||
<bindingConfiguration bindingType="basicHttpBinding" name="WebService1Soap1">
|
||||
<properties>
|
||||
<property path="/name" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>WebService1Soap1</serializedValue>
|
||||
</property>
|
||||
<property path="/closeTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/openTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/receiveTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/sendTimeout" isComplexType="false" isExplicitlyDefined="true" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/allowCookies" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>StrongWildcard</serializedValue>
|
||||
</property>
|
||||
<property path="/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>65536</serializedValue>
|
||||
</property>
|
||||
<property path="/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="true" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/readerQuotas" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement</serializedValue>
|
||||
</property>
|
||||
<property path="/readerQuotas/maxDepth" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/readerQuotas/maxStringContentLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/readerQuotas/maxArrayLength" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/readerQuotas/maxBytesPerRead" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/readerQuotas/maxNameTableCharCount" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/textEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.Text.UTF8Encoding</serializedValue>
|
||||
</property>
|
||||
<property path="/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Buffered</serializedValue>
|
||||
</property>
|
||||
<property path="/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="true" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/messageEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.WSMessageEncoding, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Text</serializedValue>
|
||||
</property>
|
||||
<property path="/security" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.BasicHttpSecurityElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.BasicHttpSecurityElement</serializedValue>
|
||||
</property>
|
||||
<property path="/security/mode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.BasicHttpSecurityMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>None</serializedValue>
|
||||
</property>
|
||||
@@ -160,113 +269,116 @@
|
||||
<property path="/textMessageEncoding/writeEncoding" isComplexType="false" isExplicitlyDefined="false" clrType="System.Text.Encoding, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.Text.UTF8Encoding</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpTransportElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.HttpTransportElement</serializedValue>
|
||||
<property path="/httpsTransport" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpsTransportElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.HttpsTransportElement</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/manualAddressing" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/manualAddressing" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/maxBufferPoolSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>524288</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/maxReceivedMessageSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>65536</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/allowCookies" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/allowCookies" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/requestInitializationTimeout" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/requestInitializationTimeout" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>00:00:00</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/authenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/authenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Anonymous</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/bypassProxyOnLocal" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/decompressionEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/decompressionEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>True</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/hostNameComparisonMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.HostNameComparisonMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>StrongWildcard</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/keepAliveEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/keepAliveEnabled" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>True</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/maxBufferSize" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>65536</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/maxPendingAccepts" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/maxPendingAccepts" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/messageHandlerFactory" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/messageHandlerFactory" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.HttpMessageHandlerFactoryElement</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/messageHandlerFactory/handlers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DelegatingHandlerElementCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/messageHandlerFactory/handlers" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.DelegatingHandlerElementCollection, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>(集合)</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/messageHandlerFactory/type" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/messageHandlerFactory/type" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/httpTransport/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/proxyAddress" isComplexType="false" isExplicitlyDefined="false" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/httpTransport/proxyAuthenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/proxyAuthenticationScheme" isComplexType="false" isExplicitlyDefined="false" clrType="System.Net.AuthenticationSchemes, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Anonymous</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/realm" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/httpTransport/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/transferMode" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.TransferMode, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Buffered</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/unsafeConnectionNtlmAuthentication" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/unsafeConnectionNtlmAuthentication" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/useDefaultWebProxy" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>True</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/extendedProtectionPolicy" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/extendedProtectionPolicy/policyEnforcement" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.PolicyEnforcement, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Never</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/extendedProtectionPolicy/protectionScenario" isComplexType="false" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.ProtectionScenario, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>TransportSelected</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/extendedProtectionPolicy/customServiceNames" isComplexType="true" isExplicitlyDefined="false" clrType="System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>(集合)</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.WebSocketTransportSettingsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.WebSocketTransportSettingsElement, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>System.ServiceModel.Configuration.WebSocketTransportSettingsElement</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/transportUsage" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Channels.WebSocketTransportUsage, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/transportUsage" isComplexType="false" isExplicitlyDefined="false" clrType="System.ServiceModel.Channels.WebSocketTransportUsage, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>Never</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/createNotificationOnConnection" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/createNotificationOnConnection" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/keepAliveInterval" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/keepAliveInterval" isComplexType="false" isExplicitlyDefined="false" clrType="System.TimeSpan, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>00:00:00</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/subProtocol" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/subProtocol" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/disablePayloadMasking" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/disablePayloadMasking" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
<property path="/httpTransport/webSocketSettings/maxPendingConnections" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<property path="/httpsTransport/webSocketSettings/maxPendingConnections" isComplexType="false" isExplicitlyDefined="false" clrType="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>0</serializedValue>
|
||||
</property>
|
||||
<property path="/httpsTransport/requireClientCertificate" isComplexType="false" isExplicitlyDefined="false" clrType="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>False</serializedValue>
|
||||
</property>
|
||||
</properties>
|
||||
</bindingConfiguration>
|
||||
</bindingConfigurations>
|
||||
<endpoints>
|
||||
<endpoint name="WebService1Soap" contract="MCSService.WebService1Soap" bindingType="basicHttpBinding" address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap">
|
||||
<endpoint name="WebService1Soap" contract="MCSService.WebService1Soap" bindingType="basicHttpBinding" address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap">
|
||||
<properties>
|
||||
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>http://mat.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
|
||||
<serializedValue>https://mat.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
|
||||
</property>
|
||||
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
@@ -348,10 +460,10 @@
|
||||
</property>
|
||||
</properties>
|
||||
</endpoint>
|
||||
<endpoint name="WebService1Soap12" contract="MCSService.WebService1Soap" bindingType="customBinding" address="http://mat.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap12">
|
||||
<endpoint name="WebService1Soap12" contract="MCSService.WebService1Soap" bindingType="customBinding" address="https://mat.cwcec.com/LocWebServices/WebService1.asmx" bindingConfiguration="WebService1Soap12">
|
||||
<properties>
|
||||
<property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue>http://mat.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
|
||||
<serializedValue>https://mat.cwcec.com/LocWebServices/WebService1.asmx</serializedValue>
|
||||
</property>
|
||||
<property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<serializedValue />
|
||||
|
||||
Reference in New Issue
Block a user