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 />
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPojectInfo");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPojectInfo" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPoDetails");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPoDetails" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getIssueDetails");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getIssueDetails" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,7 +215,46 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPartNoInfo");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPartNoInfo" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
public static void getMTODetailInfo(long projectId)
|
||||
{
|
||||
try
|
||||
{
|
||||
using (var db = new Model.SGGLDB(Funs.ConnString))
|
||||
{
|
||||
MCSService.WebService1SoapClient mscsC = new MCSService.WebService1SoapClient();
|
||||
var details = mscsC.getPojectReport(projectId, "MTO明细信息一览表");
|
||||
if (!string.IsNullOrEmpty(details))
|
||||
{
|
||||
var q = from x in db.CLGL_Material where x.ProjectId == projectId.ToString() select x;
|
||||
if (q.Count() > 0)
|
||||
{
|
||||
db.CLGL_Material.DeleteAllOnSubmit(q);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
JArray arr = JArray.Parse(details);
|
||||
foreach (var item in arr)
|
||||
{
|
||||
Model.CLGL_Material material = new Model.CLGL_Material();
|
||||
material.Id = SQLHelper.GetNewID();
|
||||
material.ProjectId = projectId.ToString();
|
||||
material.MaterialCode = item["材料编码"].ToString();
|
||||
material.TagNo = item["位号"].ToString();
|
||||
material.MaterialName = item["材料名称"].ToString();
|
||||
material.Def = item["规格描述"].ToString();
|
||||
material.Unit = item["计量单位"].ToString();
|
||||
db.CLGL_Material.InsertOnSubmit(material);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getMTODetailInfo" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -251,7 +290,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPartNoInfo");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getPartNoInfo" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -287,7 +326,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getSubcontractor");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getSubcontractor" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -322,7 +361,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getVendor");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getVendor" + ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -374,7 +413,7 @@
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getVendor");
|
||||
ErrLogInfo.WriteLog(ex, "材料管理接口定时器", "MCSWebService.getVendor" + ex.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MTODetail.aspx.cs" Inherits="FineUIPro.Web.CLGL.MTODetail" %>
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<title>材料信息</title>
|
||||
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
|
||||
<style type="text/css">
|
||||
.f-grid-row .f-grid-cell-inner {
|
||||
white-space: normal;
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form id="form1" runat="server">
|
||||
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
|
||||
<f:Panel ID="Panel1" runat="server" Margin="5px" BodyPadding="5px" ShowBorder="false"
|
||||
ShowHeader="false" Layout="VBox" BoxConfigAlign="Stretch">
|
||||
<Items>
|
||||
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="材料信息" EnableCollapse="true"
|
||||
runat="server" BoxFlex="1" DataKeyNames="Id" EnableColumnLines="true" ForceFit="true"
|
||||
DataIDField="Id" AllowSorting="true" SortField="Id"
|
||||
SortDirection="desc" OnSort="Grid1_Sort" AllowPaging="true" IsDatabasePaging="true"
|
||||
PageSize="10" OnPageIndexChange="Grid1_PageIndexChange" EnableTextSelection="True">
|
||||
<Toolbars>
|
||||
<f:Toolbar ID="Toolbar2" Position="Top" runat="server" ToolbarAlign="Right">
|
||||
<Items>
|
||||
<f:Button ID="btnGetAll" Text="获取全部" ToolTip="从材料系统中获取数据" Icon="FolderPage" Hidden="true" runat="server" OnClick="btnGetAll_Click">
|
||||
</f:Button>
|
||||
<f:Button ID="btnGet" Text="获取" ToolTip="从材料系统中获取数据" Icon="FolderPage" runat="server" OnClick="btnGet_Click">
|
||||
</f:Button>
|
||||
</Items>
|
||||
</f:Toolbar>
|
||||
</Toolbars>
|
||||
<Columns>
|
||||
<f:RowNumberField EnablePagingNumber="true" HeaderText="序号" Width="45px" HeaderTextAlign="Center"
|
||||
TextAlign="Center" />
|
||||
<f:RenderField Width="150px" ColumnID="MaterialCode" DataField="MaterialCode" SortField="MaterialCode"
|
||||
FieldType="String" HeaderText="材料编码" HeaderTextAlign="Center" TextAlign="Left">
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="150px" ColumnID="MaterialName" DataField="MaterialName" SortField="MaterialName"
|
||||
FieldType="String" HeaderText="材料名称" HeaderTextAlign="Center" TextAlign="Left">
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="100px" ColumnID="TagNo" DataField="TagNo" SortField="TagNo"
|
||||
FieldType="String" HeaderText="位号" HeaderTextAlign="Center" TextAlign="Left" >
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="200px" ColumnID="Def" DataField="Def" SortField="Def"
|
||||
FieldType="String" HeaderText="规格描述" HeaderTextAlign="Center" TextAlign="Left">
|
||||
</f:RenderField>
|
||||
<f:RenderField Width="100px" ColumnID="Unit" DataField="Unit" SortField="Unit"
|
||||
FieldType="String" HeaderText="计量单位" HeaderTextAlign="Center" TextAlign="Left">
|
||||
</f:RenderField>
|
||||
</Columns>
|
||||
<PageItems>
|
||||
<f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
|
||||
</f:ToolbarSeparator>
|
||||
<f:ToolbarText ID="ToolbarText1" runat="server" Text="每页记录数:">
|
||||
</f:ToolbarText>
|
||||
<f:DropDownList runat="server" ID="ddlPageSize" Width="80px" AutoPostBack="true"
|
||||
OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged">
|
||||
<f:ListItem Value="10" Text="10" Selected="true" />
|
||||
<f:ListItem Value="20" Text="20" />
|
||||
<f:ListItem Value="50" Text="50" />
|
||||
<f:ListItem Value="100000" Text="所有行" />
|
||||
</f:DropDownList>
|
||||
</PageItems>
|
||||
</f:Grid>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
</form>
|
||||
<script type="text/jscript">
|
||||
function reloadGrid() {
|
||||
__doPostBack(null, 'reloadGrid');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,108 @@
|
||||
using BLL;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace FineUIPro.Web.CLGL
|
||||
{
|
||||
public partial class MTODetail : PageBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 加载页面
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsPostBack)
|
||||
{
|
||||
if (this.CurrUser.UserId == BLL.Const.hfnbdId)
|
||||
{
|
||||
this.btnGetAll.Hidden = false;
|
||||
}
|
||||
this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
||||
// 绑定表格
|
||||
this.BindGrid();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取全部
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnGetAll_Click(object sender, EventArgs e)
|
||||
{
|
||||
BLL.MCSWebService.GetCLData(null, null);
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnGet_Click(object sender, EventArgs e)
|
||||
{
|
||||
BLL.MCSWebService.getMTODetailInfo(BLL.ProjectService.GetCLProjectCodeByProjectId(this.CurrUser.LoginProjectId));
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 绑定数据
|
||||
/// </summary>
|
||||
private void BindGrid()
|
||||
{
|
||||
string strSql = @"select *
|
||||
from dbo.CLGL_Material c
|
||||
where c.ProjectId=@ProjectId order by c.MaterialCode desc";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
listStr.Add(new SqlParameter("@ProjectId", BLL.ProjectService.GetCLProjectCodeByProjectId(this.CurrUser.LoginProjectId)));
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||
Grid1.RecordCount = tb.Rows.Count;
|
||||
//tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
var table = this.GetPagedDataTable(Grid1, tb);
|
||||
Grid1.DataSource = table;
|
||||
Grid1.DataBind();
|
||||
}
|
||||
|
||||
#region 分页
|
||||
/// <summary>
|
||||
/// 分页
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 分页显示条数下拉框
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
+105
@@ -0,0 +1,105 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <自动生成>
|
||||
// 此代码由工具生成。
|
||||
//
|
||||
// 对此文件的更改可能导致不正确的行为,如果
|
||||
// 重新生成代码,则所做更改将丢失。
|
||||
// </自动生成>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace FineUIPro.Web.CLGL {
|
||||
|
||||
|
||||
public partial class MTODetail {
|
||||
|
||||
/// <summary>
|
||||
/// form1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
|
||||
|
||||
/// <summary>
|
||||
/// PageManager1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.PageManager PageManager1;
|
||||
|
||||
/// <summary>
|
||||
/// Panel1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Panel Panel1;
|
||||
|
||||
/// <summary>
|
||||
/// Grid1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Grid Grid1;
|
||||
|
||||
/// <summary>
|
||||
/// Toolbar2 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Toolbar Toolbar2;
|
||||
|
||||
/// <summary>
|
||||
/// btnGetAll 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Button btnGetAll;
|
||||
|
||||
/// <summary>
|
||||
/// btnGet 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Button btnGet;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarSeparator1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarText1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarText ToolbarText1;
|
||||
|
||||
/// <summary>
|
||||
/// ddlPageSize 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList ddlPageSize;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:EndpointNotFoundException
|
||||
错误信息:没有终结点在侦听可以接受消息的 http://localhost/CNCECHSSE/HSSEService.svc。这通常是由于不正确的地址或者 SOAP 操作导致的。如果存在此情况,请参见 InnerException 以了解详细信息。
|
||||
错误堆栈:
|
||||
|
||||
Server stack trace:
|
||||
在 System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
|
||||
|
||||
Exception rethrown at [0]:
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
|
||||
在 BLL.CNCECHSSEService.HSSEService.GetSupervise_SubUnitReportListToSUB()
|
||||
在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13827
|
||||
在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1014
|
||||
----错误类型:WebException
|
||||
----错误信息:
|
||||
----远程服务器返回错误: (404) 未找到。
|
||||
----错误堆栈:
|
||||
在 System.Net.HttpWebRequest.GetResponse()
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
出错时间:07/19/2022 11:34:53
|
||||
出错时间:07/19/2022 11:34:53
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:EndpointNotFoundException
|
||||
错误信息:没有终结点在侦听可以接受消息的 http://localhost/CNCECHSSE/HSSEService.svc。这通常是由于不正确的地址或者 SOAP 操作导致的。如果存在此情况,请参见 InnerException 以了解详细信息。
|
||||
错误堆栈:
|
||||
|
||||
Server stack trace:
|
||||
在 System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
|
||||
|
||||
Exception rethrown at [0]:
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
|
||||
在 BLL.CNCECHSSEService.HSSEService.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId)
|
||||
在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13851
|
||||
在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 879
|
||||
----错误类型:WebException
|
||||
----错误信息:
|
||||
----远程服务器返回错误: (404) 未找到。
|
||||
----错误堆栈:
|
||||
在 System.Net.HttpWebRequest.GetResponse()
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
出错时间:07/19/2022 11:34:53
|
||||
出错时间:07/19/2022 11:34:53
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:EndpointNotFoundException
|
||||
错误信息:没有终结点在侦听可以接受消息的 http://localhost/CNCECHSSE/HSSEService.svc。这通常是由于不正确的地址或者 SOAP 操作导致的。如果存在此情况,请参见 InnerException 以了解详细信息。
|
||||
错误堆栈:
|
||||
|
||||
Server stack trace:
|
||||
在 System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
|
||||
|
||||
Exception rethrown at [0]:
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
|
||||
在 BLL.CNCECHSSEService.HSSEService.GetCheck_CheckRectifyListToSUB(String unitId)
|
||||
在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13843
|
||||
在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 776
|
||||
----错误类型:WebException
|
||||
----错误信息:
|
||||
----远程服务器返回错误: (404) 未找到。
|
||||
----错误堆栈:
|
||||
在 System.Net.HttpWebRequest.GetResponse()
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
出错时间:07/19/2022 11:34:53
|
||||
出错时间:07/19/2022 11:34:53
|
||||
|
||||
|
||||
错误信息开始=====>
|
||||
错误类型:EndpointNotFoundException
|
||||
错误信息:没有终结点在侦听可以接受消息的 http://localhost/CNCECHSSE/HSSEService.svc。这通常是由于不正确的地址或者 SOAP 操作导致的。如果存在此情况,请参见 InnerException 以了解详细信息。
|
||||
错误堆栈:
|
||||
|
||||
Server stack trace:
|
||||
在 System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
|
||||
在 System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
|
||||
|
||||
Exception rethrown at [0]:
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
|
||||
在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
|
||||
在 BLL.CNCECHSSEService.HSSEService.GetInformation_UrgeReportToSUB(String unitId)
|
||||
在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 13643
|
||||
在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 719
|
||||
----错误类型:WebException
|
||||
----错误信息:
|
||||
----远程服务器返回错误: (404) 未找到。
|
||||
----错误堆栈:
|
||||
在 System.Net.HttpWebRequest.GetResponse()
|
||||
在 System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
|
||||
出错时间:07/19/2022 11:34:53
|
||||
出错时间:07/19/2022 11:34:53
|
||||
|
||||
|
||||
@@ -250,6 +250,7 @@
|
||||
<Content Include="CLGL\GoodsShelves.aspx" />
|
||||
<Content Include="CLGL\Material.aspx" />
|
||||
<Content Include="CLGL\MaterialRecord.aspx" />
|
||||
<Content Include="CLGL\MTODetail.aspx" />
|
||||
<Content Include="CLGL\PurchaseRequisition.aspx" />
|
||||
<Content Include="CLGL\SubUnit.aspx" />
|
||||
<Content Include="CLGL\Supplier.aspx" />
|
||||
@@ -6031,6 +6032,13 @@
|
||||
<Compile Include="CLGL\MaterialRecord.aspx.designer.cs">
|
||||
<DependentUpon>MaterialRecord.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CLGL\MTODetail.aspx.cs">
|
||||
<DependentUpon>MTODetail.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="CLGL\MTODetail.aspx.designer.cs">
|
||||
<DependentUpon>MTODetail.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CLGL\PurchaseRequisition.aspx.cs">
|
||||
<DependentUpon>PurchaseRequisition.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
|
||||
Reference in New Issue
Block a user