yidi.wu
2 months ago
28 changed files with 9375 additions and 37 deletions
@ -0,0 +1,184 @@ |
|||||
|
using CK.SCP.Controller.WebReference; |
||||
|
using CK.SCP.Models.UniApiEntity; |
||||
|
using Newtonsoft.Json; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using System.Text; |
||||
|
using System.Threading.Tasks; |
||||
|
|
||||
|
namespace CK.SCP.Controller |
||||
|
{ |
||||
|
public class ExchangeCenterFactoryController |
||||
|
{ |
||||
|
public IExchangeCenterService CreateExchangeCenterService(string doMain) |
||||
|
{ |
||||
|
switch (doMain.ToUpper()) |
||||
|
{ |
||||
|
case "BJBMPT": //北京
|
||||
|
return new BJExchangeCenterService(); |
||||
|
case "CQBMPT": //重庆
|
||||
|
return new CQExchangeCenterService(); |
||||
|
case "HFBMPT": //合肥
|
||||
|
return new HFExchangeCenterService(); |
||||
|
case "CDBMPT": //成都
|
||||
|
return new CDExchangeCenterService(); |
||||
|
case "ZZBMPT": //株洲
|
||||
|
return new ZZExchangeCenterService(); |
||||
|
default: |
||||
|
throw new ArgumentException("Invalid Domain is empty!"); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
public interface IExchangeCenterService |
||||
|
{ |
||||
|
string GetSessionId(); |
||||
|
string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 北京
|
||||
|
/// http://10.60.101.3:8009/ExchangeCenterService.asmx
|
||||
|
/// </summary>
|
||||
|
public class BJExchangeCenterService : IExchangeCenterService |
||||
|
{ |
||||
|
private BJ.ExchangeCenterService service; |
||||
|
|
||||
|
public BJExchangeCenterService() |
||||
|
{ |
||||
|
service = new BJ.ExchangeCenterService(); |
||||
|
} |
||||
|
|
||||
|
public string GetSessionId() |
||||
|
{ |
||||
|
var jsonResult = service.GetSessionId("SCP", "5C2DE907DB859810", ""); |
||||
|
var serviceResultEntityList = JsonConvert.DeserializeObject<List<ServiceResult>>(jsonResult); |
||||
|
string sessionId = serviceResultEntityList.First().Data; |
||||
|
return sessionId; |
||||
|
} |
||||
|
|
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) |
||||
|
{ |
||||
|
string result = service.UpdateTaskState(sessionId, taskID, taskState, failedCount, failedInfo); |
||||
|
return result; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 重庆
|
||||
|
/// http://10.60.101.85:8010/ExchangeCenterService.asmx
|
||||
|
/// </summary>
|
||||
|
public class CQExchangeCenterService : IExchangeCenterService |
||||
|
{ |
||||
|
private CQ.ExchangeCenterService service; |
||||
|
|
||||
|
public CQExchangeCenterService() |
||||
|
{ |
||||
|
service = new CQ.ExchangeCenterService(); |
||||
|
} |
||||
|
|
||||
|
public string GetSessionId() |
||||
|
{ |
||||
|
var jsonResult = service.GetSessionId("SCP", "5C2DE907DB859810", ""); |
||||
|
var serviceResultEntityList = JsonConvert.DeserializeObject<List<ServiceResult>>(jsonResult); |
||||
|
string sessionId = serviceResultEntityList.First().Data; |
||||
|
return sessionId; |
||||
|
} |
||||
|
|
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) |
||||
|
{ |
||||
|
string result = service.UpdateTaskState(sessionId, taskID, taskState, failedCount, failedInfo); |
||||
|
return result; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 合肥
|
||||
|
/// http://10.60.101.3:8012/ExchangeCenterService.asmx
|
||||
|
/// </summary>
|
||||
|
public class HFExchangeCenterService : IExchangeCenterService |
||||
|
{ |
||||
|
private HF.ExchangeCenterService service; |
||||
|
|
||||
|
public HFExchangeCenterService() |
||||
|
{ |
||||
|
service = new HF.ExchangeCenterService(); |
||||
|
} |
||||
|
|
||||
|
public string GetSessionId() |
||||
|
{ |
||||
|
var jsonResult = service.GetSessionId("SCP", "5C2DE907DB859810", ""); |
||||
|
var serviceResultEntityList = JsonConvert.DeserializeObject<List<ServiceResult>>(jsonResult); |
||||
|
string sessionId = serviceResultEntityList.First().Data; |
||||
|
return sessionId; |
||||
|
} |
||||
|
|
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) |
||||
|
{ |
||||
|
string result = service.UpdateTaskState(sessionId, taskID, taskState, failedCount, failedInfo); |
||||
|
return result; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 成都
|
||||
|
/// http://10.60.101.85:8070/ExchangeCenterService.asmx
|
||||
|
/// </summary>
|
||||
|
public class CDExchangeCenterService : IExchangeCenterService |
||||
|
{ |
||||
|
private CD.ExchangeCenterService service; |
||||
|
|
||||
|
public CDExchangeCenterService() |
||||
|
{ |
||||
|
service = new CD.ExchangeCenterService(); |
||||
|
} |
||||
|
|
||||
|
public string GetSessionId() |
||||
|
{ |
||||
|
var jsonResult = service.GetSessionId("SCP", "5C2DE907DB859810", ""); |
||||
|
var serviceResultEntityList = JsonConvert.DeserializeObject<List<ServiceResult>>(jsonResult); |
||||
|
string sessionId = serviceResultEntityList.First().Data; |
||||
|
return sessionId; |
||||
|
} |
||||
|
|
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) |
||||
|
{ |
||||
|
string result = service.UpdateTaskState(sessionId, taskID, taskState, failedCount, failedInfo); |
||||
|
return result; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 株洲
|
||||
|
/// http://10.60.101.3:8011/ExchangeCenterService.asmx
|
||||
|
/// </summary>
|
||||
|
public class ZZExchangeCenterService : IExchangeCenterService |
||||
|
{ |
||||
|
private ZZ.ExchangeCenterService service; |
||||
|
|
||||
|
public ZZExchangeCenterService() |
||||
|
{ |
||||
|
service = new ZZ.ExchangeCenterService(); |
||||
|
} |
||||
|
|
||||
|
public string GetSessionId() |
||||
|
{ |
||||
|
var jsonResult = service.GetSessionId("SCP", "5C2DE907DB859810", ""); |
||||
|
var serviceResultEntityList = JsonConvert.DeserializeObject<List<ServiceResult>>(jsonResult); |
||||
|
string sessionId = serviceResultEntityList.First().Data; |
||||
|
return sessionId; |
||||
|
} |
||||
|
|
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) |
||||
|
{ |
||||
|
string result = service.UpdateTaskState(sessionId, taskID, taskState, failedCount, failedInfo); |
||||
|
return result; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +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://10.60.101.3:8009/ExchangeCenterService.asmx?wsdl" docRef="http://10.60.101.3:8009/ExchangeCenterService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> |
||||
|
<soap address="http://10.60.101.3:8009/ExchangeCenterService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:ExchangeCenterServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
<soap address="http://10.60.101.3:8009/ExchangeCenterService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:ExchangeCenterServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
</discovery> |
@ -0,0 +1,980 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||||
|
<wsdl:types> |
||||
|
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||||
|
<s:element name="GetVer"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetVerResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetVerResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTime"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTimeResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="GetServerTimeResult" type="s:dateTime" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionId"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="systemName" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="encryptedPassword" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionIdResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetSessionIdResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonData" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonMaster" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonSlave" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddMasterSlaveTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableList"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableList" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableListResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksByTableListResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasks"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetMasterSlaveTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskState"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="taskState" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="failedCount" type="s:int" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="failedInfo" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskStateResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="UpdateTaskStateResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPage"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="filterJson" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableName" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageIndex" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageSize" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPageResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetManageDatasByPageResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="string" nillable="true" type="s:string" /> |
||||
|
<s:element name="dateTime" type="s:dateTime" /> |
||||
|
</s:schema> |
||||
|
</wsdl:types> |
||||
|
<wsdl:message name="GetVerSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVer" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVerResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTimeResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionId" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionIdResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableList" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableListResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasks" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskState" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskStateResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPage" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPageResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpGetIn" /> |
||||
|
<wsdl:message name="GetVerHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpPostIn" /> |
||||
|
<wsdl:message name="GetVerHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:portType name="ExchangeCenterServiceSoap"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerSoapIn" /> |
||||
|
<wsdl:output message="tns:GetVerSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeSoapIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdSoapIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateSoapIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageSoapIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpGet"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpGetIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpPost"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpPostIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap12" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpGet" type="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:binding verb="GET" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpPost" type="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:binding verb="POST" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<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="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<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="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<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="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<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="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<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="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<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="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<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="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<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="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<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="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<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="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<mime:content type="application/x-www-form-urlencoded" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:service name="ExchangeCenterService"> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap" binding="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:address location="http://10.60.101.3:8009/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap12" binding="tns:ExchangeCenterServiceSoap12"> |
||||
|
<soap12:address location="http://10.60.101.3:8009/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpGet" binding="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:address location="http://10.60.101.3:8009/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpPost" binding="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:address location="http://10.60.101.3:8009/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
</wsdl:service> |
||||
|
</wsdl:definitions> |
@ -0,0 +1,796 @@ |
|||||
|
//------------------------------------------------------------------------------
|
||||
|
// <auto-generated>
|
||||
|
// 此代码由工具生成。
|
||||
|
// 运行时版本:4.0.30319.42000
|
||||
|
//
|
||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
|
// 重新生成代码,这些更改将会丢失。
|
||||
|
// </auto-generated>
|
||||
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
|
//
|
||||
|
// 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
|
||||
|
//
|
||||
|
#pragma warning disable 1591
|
||||
|
|
||||
|
namespace CK.SCP.Controller.BJ { |
||||
|
using System; |
||||
|
using System.Web.Services; |
||||
|
using System.Diagnostics; |
||||
|
using System.Web.Services.Protocols; |
||||
|
using System.Xml.Serialization; |
||||
|
using System.ComponentModel; |
||||
|
|
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
[System.Web.Services.WebServiceBindingAttribute(Name="ExchangeCenterServiceSoap", Namespace="http://tempuri.org/")] |
||||
|
public partial class ExchangeCenterService : System.Web.Services.Protocols.SoapHttpClientProtocol { |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetVerOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetServerTimeOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetSessionIdOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddMasterSlaveTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksByTableListOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetMasterSlaveTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback UpdateTaskStateOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetManageDatasByPageOperationCompleted; |
||||
|
|
||||
|
private bool useDefaultCredentialsSetExplicitly; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public ExchangeCenterService() { |
||||
|
this.Url = global::CK.SCP.Controller.Properties.Settings.Default.CK_SCP_Controller_BJ_ExchangeCenterService; |
||||
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) { |
||||
|
this.UseDefaultCredentials = true; |
||||
|
this.useDefaultCredentialsSetExplicitly = false; |
||||
|
} |
||||
|
else { |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new string Url { |
||||
|
get { |
||||
|
return base.Url; |
||||
|
} |
||||
|
set { |
||||
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true) |
||||
|
&& (this.useDefaultCredentialsSetExplicitly == false)) |
||||
|
&& (this.IsLocalFileSystemWebService(value) == false))) { |
||||
|
base.UseDefaultCredentials = false; |
||||
|
} |
||||
|
base.Url = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new bool UseDefaultCredentials { |
||||
|
get { |
||||
|
return base.UseDefaultCredentials; |
||||
|
} |
||||
|
set { |
||||
|
base.UseDefaultCredentials = value; |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetVerCompletedEventHandler GetVerCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetServerTimeCompletedEventHandler GetServerTimeCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetSessionIdCompletedEventHandler GetSessionIdCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddTaskCompletedEventHandler AddTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddMasterSlaveTaskCompletedEventHandler AddMasterSlaveTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksByTableListCompletedEventHandler GetNewTasksByTableListCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksCompletedEventHandler GetNewTasksCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetTaskDataCompletedEventHandler GetTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetMasterSlaveTaskDataCompletedEventHandler GetMasterSlaveTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event UpdateTaskStateCompletedEventHandler UpdateTaskStateCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetManageDatasByPageCompletedEventHandler GetManageDatasByPageCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetVer", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetVer() { |
||||
|
object[] results = this.Invoke("GetVer", new object[0]); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync() { |
||||
|
this.GetVerAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync(object userState) { |
||||
|
if ((this.GetVerOperationCompleted == null)) { |
||||
|
this.GetVerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVerOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetVer", new object[0], this.GetVerOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetVerOperationCompleted(object arg) { |
||||
|
if ((this.GetVerCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetVerCompleted(this, new GetVerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetServerTime", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public System.DateTime GetServerTime() { |
||||
|
object[] results = this.Invoke("GetServerTime", new object[0]); |
||||
|
return ((System.DateTime)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync() { |
||||
|
this.GetServerTimeAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync(object userState) { |
||||
|
if ((this.GetServerTimeOperationCompleted == null)) { |
||||
|
this.GetServerTimeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerTimeOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetServerTime", new object[0], this.GetServerTimeOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetServerTimeOperationCompleted(object arg) { |
||||
|
if ((this.GetServerTimeCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetServerTimeCompleted(this, new GetServerTimeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSessionId", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetSessionId(string systemName, string encryptedPassword, string clientIp) { |
||||
|
object[] results = this.Invoke("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp) { |
||||
|
this.GetSessionIdAsync(systemName, encryptedPassword, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp, object userState) { |
||||
|
if ((this.GetSessionIdOperationCompleted == null)) { |
||||
|
this.GetSessionIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionIdOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}, this.GetSessionIdOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetSessionIdOperationCompleted(object arg) { |
||||
|
if ((this.GetSessionIdCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetSessionIdCompleted(this, new GetSessionIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddTask(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
object[] results = this.Invoke("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
this.AddTaskAsync(sessionId, jsonTask, jsonData, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped, object userState) { |
||||
|
if ((this.AddTaskOperationCompleted == null)) { |
||||
|
this.AddTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}, this.AddTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddTaskCompleted(this, new AddTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMasterSlaveTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddMasterSlaveTask(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
object[] results = this.Invoke("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
this.AddMasterSlaveTaskAsync(sessionId, jsonTask, jsonMaster, jsonSlave, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped, object userState) { |
||||
|
if ((this.AddMasterSlaveTaskOperationCompleted == null)) { |
||||
|
this.AddMasterSlaveTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMasterSlaveTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}, this.AddMasterSlaveTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddMasterSlaveTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddMasterSlaveTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddMasterSlaveTaskCompleted(this, new AddMasterSlaveTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasksByTableList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasksByTableList(string sessionId, string clientIp, string tableList) { |
||||
|
object[] results = this.Invoke("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList) { |
||||
|
this.GetNewTasksByTableListAsync(sessionId, clientIp, tableList, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList, object userState) { |
||||
|
if ((this.GetNewTasksByTableListOperationCompleted == null)) { |
||||
|
this.GetNewTasksByTableListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksByTableListOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}, this.GetNewTasksByTableListOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksByTableListOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksByTableListCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksByTableListCompleted(this, new GetNewTasksByTableListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasks", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasks(string sessionId, string clientIp) { |
||||
|
object[] results = this.Invoke("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp) { |
||||
|
this.GetNewTasksAsync(sessionId, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp, object userState) { |
||||
|
if ((this.GetNewTasksOperationCompleted == null)) { |
||||
|
this.GetNewTasksOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}, this.GetNewTasksOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksCompleted(this, new GetNewTasksCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetTaskDataOperationCompleted == null)) { |
||||
|
this.GetTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetTaskDataCompleted(this, new GetTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMasterSlaveTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetMasterSlaveTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetMasterSlaveTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetMasterSlaveTaskDataOperationCompleted == null)) { |
||||
|
this.GetMasterSlaveTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMasterSlaveTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetMasterSlaveTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetMasterSlaveTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetMasterSlaveTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetMasterSlaveTaskDataCompleted(this, new GetMasterSlaveTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateTaskState", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
object[] results = this.Invoke("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
this.UpdateTaskStateAsync(sessionId, taskID, taskState, failedCount, failedInfo, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo, object userState) { |
||||
|
if ((this.UpdateTaskStateOperationCompleted == null)) { |
||||
|
this.UpdateTaskStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateTaskStateOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}, this.UpdateTaskStateOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnUpdateTaskStateOperationCompleted(object arg) { |
||||
|
if ((this.UpdateTaskStateCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.UpdateTaskStateCompleted(this, new UpdateTaskStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetManageDatasByPage", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetManageDatasByPage(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
object[] results = this.Invoke("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
this.GetManageDatasByPageAsync(sessionId, filterJson, tableName, pageIndex, pageSize, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped, object userState) { |
||||
|
if ((this.GetManageDatasByPageOperationCompleted == null)) { |
||||
|
this.GetManageDatasByPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetManageDatasByPageOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}, this.GetManageDatasByPageOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetManageDatasByPageOperationCompleted(object arg) { |
||||
|
if ((this.GetManageDatasByPageCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetManageDatasByPageCompleted(this, new GetManageDatasByPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public new void CancelAsync(object userState) { |
||||
|
base.CancelAsync(userState); |
||||
|
} |
||||
|
|
||||
|
private bool IsLocalFileSystemWebService(string url) { |
||||
|
if (((url == null) |
||||
|
|| (url == string.Empty))) { |
||||
|
return false; |
||||
|
} |
||||
|
System.Uri wsUri = new System.Uri(url); |
||||
|
if (((wsUri.Port >= 1024) |
||||
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { |
||||
|
return true; |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetVerCompletedEventHandler(object sender, GetVerCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetVerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetVerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetServerTimeCompletedEventHandler(object sender, GetServerTimeCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetServerTimeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetServerTimeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public System.DateTime Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((System.DateTime)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetSessionIdCompletedEventHandler(object sender, GetSessionIdCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetSessionIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetSessionIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddTaskCompletedEventHandler(object sender, AddTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddMasterSlaveTaskCompletedEventHandler(object sender, AddMasterSlaveTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddMasterSlaveTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddMasterSlaveTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksByTableListCompletedEventHandler(object sender, GetNewTasksByTableListCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksByTableListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksByTableListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksCompletedEventHandler(object sender, GetNewTasksCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetTaskDataCompletedEventHandler(object sender, GetTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetMasterSlaveTaskDataCompletedEventHandler(object sender, GetMasterSlaveTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetMasterSlaveTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetMasterSlaveTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void UpdateTaskStateCompletedEventHandler(object sender, UpdateTaskStateCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class UpdateTaskStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal UpdateTaskStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetManageDatasByPageCompletedEventHandler(object sender, GetManageDatasByPageCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetManageDatasByPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetManageDatasByPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#pragma warning restore 1591
|
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
|
<Results> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://10.60.101.3:8009/ExchangeCenterService.asmx?disco" filename="ExchangeCenterService.disco" /> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://10.60.101.3:8009/ExchangeCenterService.asmx?wsdl" filename="ExchangeCenterService.wsdl" /> |
||||
|
</Results> |
||||
|
</DiscoveryClientResultsFile> |
@ -0,0 +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://10.60.101.85:8070/ExchangeCenterService.asmx?wsdl" docRef="http://10.60.101.85:8070/ExchangeCenterService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> |
||||
|
<soap address="http://10.60.101.85:8070/ExchangeCenterService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:ExchangeCenterServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
<soap address="http://10.60.101.85:8070/ExchangeCenterService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:ExchangeCenterServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
</discovery> |
@ -0,0 +1,980 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||||
|
<wsdl:types> |
||||
|
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||||
|
<s:element name="GetVer"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetVerResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetVerResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTime"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTimeResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="GetServerTimeResult" type="s:dateTime" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionId"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="systemName" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="encryptedPassword" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionIdResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetSessionIdResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonData" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonMaster" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonSlave" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddMasterSlaveTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableList"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableList" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableListResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksByTableListResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasks"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetMasterSlaveTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskState"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="taskState" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="failedCount" type="s:int" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="failedInfo" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskStateResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="UpdateTaskStateResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPage"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="filterJson" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableName" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageIndex" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageSize" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPageResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetManageDatasByPageResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="string" nillable="true" type="s:string" /> |
||||
|
<s:element name="dateTime" type="s:dateTime" /> |
||||
|
</s:schema> |
||||
|
</wsdl:types> |
||||
|
<wsdl:message name="GetVerSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVer" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVerResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTimeResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionId" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionIdResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableList" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableListResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasks" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskState" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskStateResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPage" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPageResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpGetIn" /> |
||||
|
<wsdl:message name="GetVerHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpPostIn" /> |
||||
|
<wsdl:message name="GetVerHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:portType name="ExchangeCenterServiceSoap"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerSoapIn" /> |
||||
|
<wsdl:output message="tns:GetVerSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeSoapIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdSoapIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateSoapIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageSoapIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpGet"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpGetIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpPost"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpPostIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap12" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpGet" type="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:binding verb="GET" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpPost" type="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:binding verb="POST" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<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="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<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="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<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="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<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="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<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="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<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="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<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="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<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="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<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="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<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="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<mime:content type="application/x-www-form-urlencoded" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:service name="ExchangeCenterService"> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap" binding="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:address location="http://10.60.101.85:8070/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap12" binding="tns:ExchangeCenterServiceSoap12"> |
||||
|
<soap12:address location="http://10.60.101.85:8070/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpGet" binding="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:address location="http://10.60.101.85:8070/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpPost" binding="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:address location="http://10.60.101.85:8070/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
</wsdl:service> |
||||
|
</wsdl:definitions> |
@ -0,0 +1,796 @@ |
|||||
|
//------------------------------------------------------------------------------
|
||||
|
// <auto-generated>
|
||||
|
// 此代码由工具生成。
|
||||
|
// 运行时版本:4.0.30319.42000
|
||||
|
//
|
||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
|
// 重新生成代码,这些更改将会丢失。
|
||||
|
// </auto-generated>
|
||||
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
|
//
|
||||
|
// 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
|
||||
|
//
|
||||
|
#pragma warning disable 1591
|
||||
|
|
||||
|
namespace CK.SCP.Controller.CD { |
||||
|
using System; |
||||
|
using System.Web.Services; |
||||
|
using System.Diagnostics; |
||||
|
using System.Web.Services.Protocols; |
||||
|
using System.Xml.Serialization; |
||||
|
using System.ComponentModel; |
||||
|
|
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
[System.Web.Services.WebServiceBindingAttribute(Name="ExchangeCenterServiceSoap", Namespace="http://tempuri.org/")] |
||||
|
public partial class ExchangeCenterService : System.Web.Services.Protocols.SoapHttpClientProtocol { |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetVerOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetServerTimeOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetSessionIdOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddMasterSlaveTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksByTableListOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetMasterSlaveTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback UpdateTaskStateOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetManageDatasByPageOperationCompleted; |
||||
|
|
||||
|
private bool useDefaultCredentialsSetExplicitly; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public ExchangeCenterService() { |
||||
|
this.Url = global::CK.SCP.Controller.Properties.Settings.Default.CK_SCP_Controller_CD_ExchangeCenterService; |
||||
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) { |
||||
|
this.UseDefaultCredentials = true; |
||||
|
this.useDefaultCredentialsSetExplicitly = false; |
||||
|
} |
||||
|
else { |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new string Url { |
||||
|
get { |
||||
|
return base.Url; |
||||
|
} |
||||
|
set { |
||||
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true) |
||||
|
&& (this.useDefaultCredentialsSetExplicitly == false)) |
||||
|
&& (this.IsLocalFileSystemWebService(value) == false))) { |
||||
|
base.UseDefaultCredentials = false; |
||||
|
} |
||||
|
base.Url = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new bool UseDefaultCredentials { |
||||
|
get { |
||||
|
return base.UseDefaultCredentials; |
||||
|
} |
||||
|
set { |
||||
|
base.UseDefaultCredentials = value; |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetVerCompletedEventHandler GetVerCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetServerTimeCompletedEventHandler GetServerTimeCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetSessionIdCompletedEventHandler GetSessionIdCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddTaskCompletedEventHandler AddTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddMasterSlaveTaskCompletedEventHandler AddMasterSlaveTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksByTableListCompletedEventHandler GetNewTasksByTableListCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksCompletedEventHandler GetNewTasksCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetTaskDataCompletedEventHandler GetTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetMasterSlaveTaskDataCompletedEventHandler GetMasterSlaveTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event UpdateTaskStateCompletedEventHandler UpdateTaskStateCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetManageDatasByPageCompletedEventHandler GetManageDatasByPageCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetVer", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetVer() { |
||||
|
object[] results = this.Invoke("GetVer", new object[0]); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync() { |
||||
|
this.GetVerAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync(object userState) { |
||||
|
if ((this.GetVerOperationCompleted == null)) { |
||||
|
this.GetVerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVerOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetVer", new object[0], this.GetVerOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetVerOperationCompleted(object arg) { |
||||
|
if ((this.GetVerCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetVerCompleted(this, new GetVerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetServerTime", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public System.DateTime GetServerTime() { |
||||
|
object[] results = this.Invoke("GetServerTime", new object[0]); |
||||
|
return ((System.DateTime)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync() { |
||||
|
this.GetServerTimeAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync(object userState) { |
||||
|
if ((this.GetServerTimeOperationCompleted == null)) { |
||||
|
this.GetServerTimeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerTimeOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetServerTime", new object[0], this.GetServerTimeOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetServerTimeOperationCompleted(object arg) { |
||||
|
if ((this.GetServerTimeCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetServerTimeCompleted(this, new GetServerTimeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSessionId", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetSessionId(string systemName, string encryptedPassword, string clientIp) { |
||||
|
object[] results = this.Invoke("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp) { |
||||
|
this.GetSessionIdAsync(systemName, encryptedPassword, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp, object userState) { |
||||
|
if ((this.GetSessionIdOperationCompleted == null)) { |
||||
|
this.GetSessionIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionIdOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}, this.GetSessionIdOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetSessionIdOperationCompleted(object arg) { |
||||
|
if ((this.GetSessionIdCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetSessionIdCompleted(this, new GetSessionIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddTask(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
object[] results = this.Invoke("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
this.AddTaskAsync(sessionId, jsonTask, jsonData, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped, object userState) { |
||||
|
if ((this.AddTaskOperationCompleted == null)) { |
||||
|
this.AddTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}, this.AddTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddTaskCompleted(this, new AddTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMasterSlaveTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddMasterSlaveTask(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
object[] results = this.Invoke("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
this.AddMasterSlaveTaskAsync(sessionId, jsonTask, jsonMaster, jsonSlave, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped, object userState) { |
||||
|
if ((this.AddMasterSlaveTaskOperationCompleted == null)) { |
||||
|
this.AddMasterSlaveTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMasterSlaveTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}, this.AddMasterSlaveTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddMasterSlaveTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddMasterSlaveTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddMasterSlaveTaskCompleted(this, new AddMasterSlaveTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasksByTableList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasksByTableList(string sessionId, string clientIp, string tableList) { |
||||
|
object[] results = this.Invoke("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList) { |
||||
|
this.GetNewTasksByTableListAsync(sessionId, clientIp, tableList, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList, object userState) { |
||||
|
if ((this.GetNewTasksByTableListOperationCompleted == null)) { |
||||
|
this.GetNewTasksByTableListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksByTableListOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}, this.GetNewTasksByTableListOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksByTableListOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksByTableListCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksByTableListCompleted(this, new GetNewTasksByTableListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasks", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasks(string sessionId, string clientIp) { |
||||
|
object[] results = this.Invoke("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp) { |
||||
|
this.GetNewTasksAsync(sessionId, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp, object userState) { |
||||
|
if ((this.GetNewTasksOperationCompleted == null)) { |
||||
|
this.GetNewTasksOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}, this.GetNewTasksOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksCompleted(this, new GetNewTasksCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetTaskDataOperationCompleted == null)) { |
||||
|
this.GetTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetTaskDataCompleted(this, new GetTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMasterSlaveTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetMasterSlaveTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetMasterSlaveTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetMasterSlaveTaskDataOperationCompleted == null)) { |
||||
|
this.GetMasterSlaveTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMasterSlaveTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetMasterSlaveTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetMasterSlaveTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetMasterSlaveTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetMasterSlaveTaskDataCompleted(this, new GetMasterSlaveTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateTaskState", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
object[] results = this.Invoke("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
this.UpdateTaskStateAsync(sessionId, taskID, taskState, failedCount, failedInfo, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo, object userState) { |
||||
|
if ((this.UpdateTaskStateOperationCompleted == null)) { |
||||
|
this.UpdateTaskStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateTaskStateOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}, this.UpdateTaskStateOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnUpdateTaskStateOperationCompleted(object arg) { |
||||
|
if ((this.UpdateTaskStateCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.UpdateTaskStateCompleted(this, new UpdateTaskStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetManageDatasByPage", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetManageDatasByPage(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
object[] results = this.Invoke("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
this.GetManageDatasByPageAsync(sessionId, filterJson, tableName, pageIndex, pageSize, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped, object userState) { |
||||
|
if ((this.GetManageDatasByPageOperationCompleted == null)) { |
||||
|
this.GetManageDatasByPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetManageDatasByPageOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}, this.GetManageDatasByPageOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetManageDatasByPageOperationCompleted(object arg) { |
||||
|
if ((this.GetManageDatasByPageCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetManageDatasByPageCompleted(this, new GetManageDatasByPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public new void CancelAsync(object userState) { |
||||
|
base.CancelAsync(userState); |
||||
|
} |
||||
|
|
||||
|
private bool IsLocalFileSystemWebService(string url) { |
||||
|
if (((url == null) |
||||
|
|| (url == string.Empty))) { |
||||
|
return false; |
||||
|
} |
||||
|
System.Uri wsUri = new System.Uri(url); |
||||
|
if (((wsUri.Port >= 1024) |
||||
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { |
||||
|
return true; |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetVerCompletedEventHandler(object sender, GetVerCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetVerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetVerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetServerTimeCompletedEventHandler(object sender, GetServerTimeCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetServerTimeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetServerTimeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public System.DateTime Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((System.DateTime)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetSessionIdCompletedEventHandler(object sender, GetSessionIdCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetSessionIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetSessionIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddTaskCompletedEventHandler(object sender, AddTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddMasterSlaveTaskCompletedEventHandler(object sender, AddMasterSlaveTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddMasterSlaveTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddMasterSlaveTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksByTableListCompletedEventHandler(object sender, GetNewTasksByTableListCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksByTableListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksByTableListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksCompletedEventHandler(object sender, GetNewTasksCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetTaskDataCompletedEventHandler(object sender, GetTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetMasterSlaveTaskDataCompletedEventHandler(object sender, GetMasterSlaveTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetMasterSlaveTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetMasterSlaveTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void UpdateTaskStateCompletedEventHandler(object sender, UpdateTaskStateCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class UpdateTaskStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal UpdateTaskStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetManageDatasByPageCompletedEventHandler(object sender, GetManageDatasByPageCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetManageDatasByPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetManageDatasByPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#pragma warning restore 1591
|
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
|
<Results> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://10.60.101.85:8070/ExchangeCenterService.asmx?wsdl" filename="ExchangeCenterService.wsdl" /> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://10.60.101.85:8070/ExchangeCenterService.asmx?disco" filename="ExchangeCenterService.disco" /> |
||||
|
</Results> |
||||
|
</DiscoveryClientResultsFile> |
@ -0,0 +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://10.60.101.85:8010/ExchangeCenterService.asmx?wsdl" docRef="http://10.60.101.85:8010/ExchangeCenterService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> |
||||
|
<soap address="http://10.60.101.85:8010/ExchangeCenterService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:ExchangeCenterServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
<soap address="http://10.60.101.85:8010/ExchangeCenterService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:ExchangeCenterServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
</discovery> |
@ -0,0 +1,980 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||||
|
<wsdl:types> |
||||
|
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||||
|
<s:element name="GetVer"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetVerResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetVerResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTime"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTimeResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="GetServerTimeResult" type="s:dateTime" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionId"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="systemName" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="encryptedPassword" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionIdResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetSessionIdResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonData" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonMaster" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonSlave" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddMasterSlaveTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableList"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableList" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableListResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksByTableListResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasks"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetMasterSlaveTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskState"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="taskState" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="failedCount" type="s:int" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="failedInfo" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskStateResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="UpdateTaskStateResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPage"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="filterJson" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableName" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageIndex" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageSize" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPageResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetManageDatasByPageResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="string" nillable="true" type="s:string" /> |
||||
|
<s:element name="dateTime" type="s:dateTime" /> |
||||
|
</s:schema> |
||||
|
</wsdl:types> |
||||
|
<wsdl:message name="GetVerSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVer" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVerResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTimeResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionId" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionIdResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableList" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableListResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasks" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskState" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskStateResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPage" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPageResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpGetIn" /> |
||||
|
<wsdl:message name="GetVerHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpPostIn" /> |
||||
|
<wsdl:message name="GetVerHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:portType name="ExchangeCenterServiceSoap"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerSoapIn" /> |
||||
|
<wsdl:output message="tns:GetVerSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeSoapIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdSoapIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateSoapIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageSoapIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpGet"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpGetIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpPost"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpPostIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap12" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpGet" type="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:binding verb="GET" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpPost" type="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:binding verb="POST" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<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="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<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="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<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="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<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="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<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="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<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="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<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="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<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="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<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="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<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="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<mime:content type="application/x-www-form-urlencoded" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:service name="ExchangeCenterService"> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap" binding="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:address location="http://10.60.101.85:8010/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap12" binding="tns:ExchangeCenterServiceSoap12"> |
||||
|
<soap12:address location="http://10.60.101.85:8010/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpGet" binding="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:address location="http://10.60.101.85:8010/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpPost" binding="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:address location="http://10.60.101.85:8010/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
</wsdl:service> |
||||
|
</wsdl:definitions> |
@ -0,0 +1,796 @@ |
|||||
|
//------------------------------------------------------------------------------
|
||||
|
// <auto-generated>
|
||||
|
// 此代码由工具生成。
|
||||
|
// 运行时版本:4.0.30319.42000
|
||||
|
//
|
||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
|
// 重新生成代码,这些更改将会丢失。
|
||||
|
// </auto-generated>
|
||||
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
|
//
|
||||
|
// 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
|
||||
|
//
|
||||
|
#pragma warning disable 1591
|
||||
|
|
||||
|
namespace CK.SCP.Controller.CQ { |
||||
|
using System; |
||||
|
using System.Web.Services; |
||||
|
using System.Diagnostics; |
||||
|
using System.Web.Services.Protocols; |
||||
|
using System.Xml.Serialization; |
||||
|
using System.ComponentModel; |
||||
|
|
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
[System.Web.Services.WebServiceBindingAttribute(Name="ExchangeCenterServiceSoap", Namespace="http://tempuri.org/")] |
||||
|
public partial class ExchangeCenterService : System.Web.Services.Protocols.SoapHttpClientProtocol { |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetVerOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetServerTimeOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetSessionIdOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddMasterSlaveTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksByTableListOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetMasterSlaveTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback UpdateTaskStateOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetManageDatasByPageOperationCompleted; |
||||
|
|
||||
|
private bool useDefaultCredentialsSetExplicitly; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public ExchangeCenterService() { |
||||
|
this.Url = global::CK.SCP.Controller.Properties.Settings.Default.CK_SCP_Controller_CQExchangeCenterService_ExchangeCenterService; |
||||
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) { |
||||
|
this.UseDefaultCredentials = true; |
||||
|
this.useDefaultCredentialsSetExplicitly = false; |
||||
|
} |
||||
|
else { |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new string Url { |
||||
|
get { |
||||
|
return base.Url; |
||||
|
} |
||||
|
set { |
||||
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true) |
||||
|
&& (this.useDefaultCredentialsSetExplicitly == false)) |
||||
|
&& (this.IsLocalFileSystemWebService(value) == false))) { |
||||
|
base.UseDefaultCredentials = false; |
||||
|
} |
||||
|
base.Url = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new bool UseDefaultCredentials { |
||||
|
get { |
||||
|
return base.UseDefaultCredentials; |
||||
|
} |
||||
|
set { |
||||
|
base.UseDefaultCredentials = value; |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetVerCompletedEventHandler GetVerCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetServerTimeCompletedEventHandler GetServerTimeCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetSessionIdCompletedEventHandler GetSessionIdCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddTaskCompletedEventHandler AddTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddMasterSlaveTaskCompletedEventHandler AddMasterSlaveTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksByTableListCompletedEventHandler GetNewTasksByTableListCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksCompletedEventHandler GetNewTasksCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetTaskDataCompletedEventHandler GetTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetMasterSlaveTaskDataCompletedEventHandler GetMasterSlaveTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event UpdateTaskStateCompletedEventHandler UpdateTaskStateCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetManageDatasByPageCompletedEventHandler GetManageDatasByPageCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetVer", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetVer() { |
||||
|
object[] results = this.Invoke("GetVer", new object[0]); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync() { |
||||
|
this.GetVerAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync(object userState) { |
||||
|
if ((this.GetVerOperationCompleted == null)) { |
||||
|
this.GetVerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVerOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetVer", new object[0], this.GetVerOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetVerOperationCompleted(object arg) { |
||||
|
if ((this.GetVerCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetVerCompleted(this, new GetVerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetServerTime", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public System.DateTime GetServerTime() { |
||||
|
object[] results = this.Invoke("GetServerTime", new object[0]); |
||||
|
return ((System.DateTime)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync() { |
||||
|
this.GetServerTimeAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync(object userState) { |
||||
|
if ((this.GetServerTimeOperationCompleted == null)) { |
||||
|
this.GetServerTimeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerTimeOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetServerTime", new object[0], this.GetServerTimeOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetServerTimeOperationCompleted(object arg) { |
||||
|
if ((this.GetServerTimeCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetServerTimeCompleted(this, new GetServerTimeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSessionId", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetSessionId(string systemName, string encryptedPassword, string clientIp) { |
||||
|
object[] results = this.Invoke("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp) { |
||||
|
this.GetSessionIdAsync(systemName, encryptedPassword, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp, object userState) { |
||||
|
if ((this.GetSessionIdOperationCompleted == null)) { |
||||
|
this.GetSessionIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionIdOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}, this.GetSessionIdOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetSessionIdOperationCompleted(object arg) { |
||||
|
if ((this.GetSessionIdCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetSessionIdCompleted(this, new GetSessionIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddTask(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
object[] results = this.Invoke("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
this.AddTaskAsync(sessionId, jsonTask, jsonData, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped, object userState) { |
||||
|
if ((this.AddTaskOperationCompleted == null)) { |
||||
|
this.AddTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}, this.AddTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddTaskCompleted(this, new AddTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMasterSlaveTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddMasterSlaveTask(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
object[] results = this.Invoke("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
this.AddMasterSlaveTaskAsync(sessionId, jsonTask, jsonMaster, jsonSlave, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped, object userState) { |
||||
|
if ((this.AddMasterSlaveTaskOperationCompleted == null)) { |
||||
|
this.AddMasterSlaveTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMasterSlaveTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}, this.AddMasterSlaveTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddMasterSlaveTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddMasterSlaveTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddMasterSlaveTaskCompleted(this, new AddMasterSlaveTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasksByTableList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasksByTableList(string sessionId, string clientIp, string tableList) { |
||||
|
object[] results = this.Invoke("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList) { |
||||
|
this.GetNewTasksByTableListAsync(sessionId, clientIp, tableList, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList, object userState) { |
||||
|
if ((this.GetNewTasksByTableListOperationCompleted == null)) { |
||||
|
this.GetNewTasksByTableListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksByTableListOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}, this.GetNewTasksByTableListOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksByTableListOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksByTableListCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksByTableListCompleted(this, new GetNewTasksByTableListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasks", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasks(string sessionId, string clientIp) { |
||||
|
object[] results = this.Invoke("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp) { |
||||
|
this.GetNewTasksAsync(sessionId, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp, object userState) { |
||||
|
if ((this.GetNewTasksOperationCompleted == null)) { |
||||
|
this.GetNewTasksOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}, this.GetNewTasksOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksCompleted(this, new GetNewTasksCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetTaskDataOperationCompleted == null)) { |
||||
|
this.GetTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetTaskDataCompleted(this, new GetTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMasterSlaveTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetMasterSlaveTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetMasterSlaveTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetMasterSlaveTaskDataOperationCompleted == null)) { |
||||
|
this.GetMasterSlaveTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMasterSlaveTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetMasterSlaveTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetMasterSlaveTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetMasterSlaveTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetMasterSlaveTaskDataCompleted(this, new GetMasterSlaveTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateTaskState", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
object[] results = this.Invoke("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
this.UpdateTaskStateAsync(sessionId, taskID, taskState, failedCount, failedInfo, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo, object userState) { |
||||
|
if ((this.UpdateTaskStateOperationCompleted == null)) { |
||||
|
this.UpdateTaskStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateTaskStateOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}, this.UpdateTaskStateOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnUpdateTaskStateOperationCompleted(object arg) { |
||||
|
if ((this.UpdateTaskStateCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.UpdateTaskStateCompleted(this, new UpdateTaskStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetManageDatasByPage", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetManageDatasByPage(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
object[] results = this.Invoke("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
this.GetManageDatasByPageAsync(sessionId, filterJson, tableName, pageIndex, pageSize, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped, object userState) { |
||||
|
if ((this.GetManageDatasByPageOperationCompleted == null)) { |
||||
|
this.GetManageDatasByPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetManageDatasByPageOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}, this.GetManageDatasByPageOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetManageDatasByPageOperationCompleted(object arg) { |
||||
|
if ((this.GetManageDatasByPageCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetManageDatasByPageCompleted(this, new GetManageDatasByPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public new void CancelAsync(object userState) { |
||||
|
base.CancelAsync(userState); |
||||
|
} |
||||
|
|
||||
|
private bool IsLocalFileSystemWebService(string url) { |
||||
|
if (((url == null) |
||||
|
|| (url == string.Empty))) { |
||||
|
return false; |
||||
|
} |
||||
|
System.Uri wsUri = new System.Uri(url); |
||||
|
if (((wsUri.Port >= 1024) |
||||
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { |
||||
|
return true; |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetVerCompletedEventHandler(object sender, GetVerCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetVerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetVerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetServerTimeCompletedEventHandler(object sender, GetServerTimeCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetServerTimeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetServerTimeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public System.DateTime Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((System.DateTime)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetSessionIdCompletedEventHandler(object sender, GetSessionIdCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetSessionIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetSessionIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddTaskCompletedEventHandler(object sender, AddTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddMasterSlaveTaskCompletedEventHandler(object sender, AddMasterSlaveTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddMasterSlaveTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddMasterSlaveTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksByTableListCompletedEventHandler(object sender, GetNewTasksByTableListCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksByTableListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksByTableListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksCompletedEventHandler(object sender, GetNewTasksCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetTaskDataCompletedEventHandler(object sender, GetTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetMasterSlaveTaskDataCompletedEventHandler(object sender, GetMasterSlaveTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetMasterSlaveTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetMasterSlaveTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void UpdateTaskStateCompletedEventHandler(object sender, UpdateTaskStateCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class UpdateTaskStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal UpdateTaskStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetManageDatasByPageCompletedEventHandler(object sender, GetManageDatasByPageCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetManageDatasByPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetManageDatasByPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#pragma warning restore 1591
|
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
|
<Results> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://10.60.101.85:8010/ExchangeCenterService.asmx?disco" filename="ExchangeCenterService.disco" /> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://10.60.101.85:8010/ExchangeCenterService.asmx?wsdl" filename="ExchangeCenterService.wsdl" /> |
||||
|
</Results> |
||||
|
</DiscoveryClientResultsFile> |
@ -0,0 +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://10.60.101.3:8012/ExchangeCenterService.asmx?wsdl" docRef="http://10.60.101.3:8012/ExchangeCenterService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> |
||||
|
<soap address="http://10.60.101.3:8012/ExchangeCenterService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:ExchangeCenterServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
<soap address="http://10.60.101.3:8012/ExchangeCenterService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:ExchangeCenterServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
</discovery> |
@ -0,0 +1,980 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||||
|
<wsdl:types> |
||||
|
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||||
|
<s:element name="GetVer"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetVerResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetVerResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTime"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTimeResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="GetServerTimeResult" type="s:dateTime" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionId"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="systemName" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="encryptedPassword" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionIdResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetSessionIdResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonData" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonMaster" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonSlave" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddMasterSlaveTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableList"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableList" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableListResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksByTableListResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasks"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetMasterSlaveTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskState"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="taskState" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="failedCount" type="s:int" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="failedInfo" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskStateResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="UpdateTaskStateResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPage"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="filterJson" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableName" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageIndex" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageSize" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPageResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetManageDatasByPageResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="string" nillable="true" type="s:string" /> |
||||
|
<s:element name="dateTime" type="s:dateTime" /> |
||||
|
</s:schema> |
||||
|
</wsdl:types> |
||||
|
<wsdl:message name="GetVerSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVer" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVerResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTimeResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionId" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionIdResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableList" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableListResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasks" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskState" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskStateResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPage" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPageResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpGetIn" /> |
||||
|
<wsdl:message name="GetVerHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpPostIn" /> |
||||
|
<wsdl:message name="GetVerHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:portType name="ExchangeCenterServiceSoap"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerSoapIn" /> |
||||
|
<wsdl:output message="tns:GetVerSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeSoapIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdSoapIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateSoapIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageSoapIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpGet"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpGetIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpPost"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpPostIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap12" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpGet" type="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:binding verb="GET" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpPost" type="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:binding verb="POST" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<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="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<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="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<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="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<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="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<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="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<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="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<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="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<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="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<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="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<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="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<mime:content type="application/x-www-form-urlencoded" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:service name="ExchangeCenterService"> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap" binding="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:address location="http://10.60.101.3:8012/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap12" binding="tns:ExchangeCenterServiceSoap12"> |
||||
|
<soap12:address location="http://10.60.101.3:8012/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpGet" binding="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:address location="http://10.60.101.3:8012/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpPost" binding="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:address location="http://10.60.101.3:8012/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
</wsdl:service> |
||||
|
</wsdl:definitions> |
@ -0,0 +1,796 @@ |
|||||
|
//------------------------------------------------------------------------------
|
||||
|
// <auto-generated>
|
||||
|
// 此代码由工具生成。
|
||||
|
// 运行时版本:4.0.30319.42000
|
||||
|
//
|
||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
|
// 重新生成代码,这些更改将会丢失。
|
||||
|
// </auto-generated>
|
||||
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
|
//
|
||||
|
// 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
|
||||
|
//
|
||||
|
#pragma warning disable 1591
|
||||
|
|
||||
|
namespace CK.SCP.Controller.HF { |
||||
|
using System; |
||||
|
using System.Web.Services; |
||||
|
using System.Diagnostics; |
||||
|
using System.Web.Services.Protocols; |
||||
|
using System.Xml.Serialization; |
||||
|
using System.ComponentModel; |
||||
|
|
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
[System.Web.Services.WebServiceBindingAttribute(Name="ExchangeCenterServiceSoap", Namespace="http://tempuri.org/")] |
||||
|
public partial class ExchangeCenterService : System.Web.Services.Protocols.SoapHttpClientProtocol { |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetVerOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetServerTimeOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetSessionIdOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddMasterSlaveTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksByTableListOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetMasterSlaveTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback UpdateTaskStateOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetManageDatasByPageOperationCompleted; |
||||
|
|
||||
|
private bool useDefaultCredentialsSetExplicitly; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public ExchangeCenterService() { |
||||
|
this.Url = global::CK.SCP.Controller.Properties.Settings.Default.CK_SCP_Controller_HF_ExchangeCenterService; |
||||
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) { |
||||
|
this.UseDefaultCredentials = true; |
||||
|
this.useDefaultCredentialsSetExplicitly = false; |
||||
|
} |
||||
|
else { |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new string Url { |
||||
|
get { |
||||
|
return base.Url; |
||||
|
} |
||||
|
set { |
||||
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true) |
||||
|
&& (this.useDefaultCredentialsSetExplicitly == false)) |
||||
|
&& (this.IsLocalFileSystemWebService(value) == false))) { |
||||
|
base.UseDefaultCredentials = false; |
||||
|
} |
||||
|
base.Url = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new bool UseDefaultCredentials { |
||||
|
get { |
||||
|
return base.UseDefaultCredentials; |
||||
|
} |
||||
|
set { |
||||
|
base.UseDefaultCredentials = value; |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetVerCompletedEventHandler GetVerCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetServerTimeCompletedEventHandler GetServerTimeCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetSessionIdCompletedEventHandler GetSessionIdCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddTaskCompletedEventHandler AddTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddMasterSlaveTaskCompletedEventHandler AddMasterSlaveTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksByTableListCompletedEventHandler GetNewTasksByTableListCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksCompletedEventHandler GetNewTasksCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetTaskDataCompletedEventHandler GetTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetMasterSlaveTaskDataCompletedEventHandler GetMasterSlaveTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event UpdateTaskStateCompletedEventHandler UpdateTaskStateCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetManageDatasByPageCompletedEventHandler GetManageDatasByPageCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetVer", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetVer() { |
||||
|
object[] results = this.Invoke("GetVer", new object[0]); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync() { |
||||
|
this.GetVerAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync(object userState) { |
||||
|
if ((this.GetVerOperationCompleted == null)) { |
||||
|
this.GetVerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVerOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetVer", new object[0], this.GetVerOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetVerOperationCompleted(object arg) { |
||||
|
if ((this.GetVerCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetVerCompleted(this, new GetVerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetServerTime", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public System.DateTime GetServerTime() { |
||||
|
object[] results = this.Invoke("GetServerTime", new object[0]); |
||||
|
return ((System.DateTime)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync() { |
||||
|
this.GetServerTimeAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync(object userState) { |
||||
|
if ((this.GetServerTimeOperationCompleted == null)) { |
||||
|
this.GetServerTimeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerTimeOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetServerTime", new object[0], this.GetServerTimeOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetServerTimeOperationCompleted(object arg) { |
||||
|
if ((this.GetServerTimeCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetServerTimeCompleted(this, new GetServerTimeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSessionId", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetSessionId(string systemName, string encryptedPassword, string clientIp) { |
||||
|
object[] results = this.Invoke("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp) { |
||||
|
this.GetSessionIdAsync(systemName, encryptedPassword, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp, object userState) { |
||||
|
if ((this.GetSessionIdOperationCompleted == null)) { |
||||
|
this.GetSessionIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionIdOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}, this.GetSessionIdOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetSessionIdOperationCompleted(object arg) { |
||||
|
if ((this.GetSessionIdCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetSessionIdCompleted(this, new GetSessionIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddTask(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
object[] results = this.Invoke("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
this.AddTaskAsync(sessionId, jsonTask, jsonData, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped, object userState) { |
||||
|
if ((this.AddTaskOperationCompleted == null)) { |
||||
|
this.AddTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}, this.AddTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddTaskCompleted(this, new AddTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMasterSlaveTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddMasterSlaveTask(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
object[] results = this.Invoke("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
this.AddMasterSlaveTaskAsync(sessionId, jsonTask, jsonMaster, jsonSlave, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped, object userState) { |
||||
|
if ((this.AddMasterSlaveTaskOperationCompleted == null)) { |
||||
|
this.AddMasterSlaveTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMasterSlaveTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}, this.AddMasterSlaveTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddMasterSlaveTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddMasterSlaveTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddMasterSlaveTaskCompleted(this, new AddMasterSlaveTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasksByTableList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasksByTableList(string sessionId, string clientIp, string tableList) { |
||||
|
object[] results = this.Invoke("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList) { |
||||
|
this.GetNewTasksByTableListAsync(sessionId, clientIp, tableList, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList, object userState) { |
||||
|
if ((this.GetNewTasksByTableListOperationCompleted == null)) { |
||||
|
this.GetNewTasksByTableListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksByTableListOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}, this.GetNewTasksByTableListOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksByTableListOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksByTableListCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksByTableListCompleted(this, new GetNewTasksByTableListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasks", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasks(string sessionId, string clientIp) { |
||||
|
object[] results = this.Invoke("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp) { |
||||
|
this.GetNewTasksAsync(sessionId, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp, object userState) { |
||||
|
if ((this.GetNewTasksOperationCompleted == null)) { |
||||
|
this.GetNewTasksOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}, this.GetNewTasksOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksCompleted(this, new GetNewTasksCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetTaskDataOperationCompleted == null)) { |
||||
|
this.GetTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetTaskDataCompleted(this, new GetTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMasterSlaveTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetMasterSlaveTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetMasterSlaveTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetMasterSlaveTaskDataOperationCompleted == null)) { |
||||
|
this.GetMasterSlaveTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMasterSlaveTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetMasterSlaveTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetMasterSlaveTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetMasterSlaveTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetMasterSlaveTaskDataCompleted(this, new GetMasterSlaveTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateTaskState", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
object[] results = this.Invoke("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
this.UpdateTaskStateAsync(sessionId, taskID, taskState, failedCount, failedInfo, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo, object userState) { |
||||
|
if ((this.UpdateTaskStateOperationCompleted == null)) { |
||||
|
this.UpdateTaskStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateTaskStateOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}, this.UpdateTaskStateOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnUpdateTaskStateOperationCompleted(object arg) { |
||||
|
if ((this.UpdateTaskStateCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.UpdateTaskStateCompleted(this, new UpdateTaskStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetManageDatasByPage", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetManageDatasByPage(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
object[] results = this.Invoke("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
this.GetManageDatasByPageAsync(sessionId, filterJson, tableName, pageIndex, pageSize, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped, object userState) { |
||||
|
if ((this.GetManageDatasByPageOperationCompleted == null)) { |
||||
|
this.GetManageDatasByPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetManageDatasByPageOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}, this.GetManageDatasByPageOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetManageDatasByPageOperationCompleted(object arg) { |
||||
|
if ((this.GetManageDatasByPageCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetManageDatasByPageCompleted(this, new GetManageDatasByPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public new void CancelAsync(object userState) { |
||||
|
base.CancelAsync(userState); |
||||
|
} |
||||
|
|
||||
|
private bool IsLocalFileSystemWebService(string url) { |
||||
|
if (((url == null) |
||||
|
|| (url == string.Empty))) { |
||||
|
return false; |
||||
|
} |
||||
|
System.Uri wsUri = new System.Uri(url); |
||||
|
if (((wsUri.Port >= 1024) |
||||
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { |
||||
|
return true; |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetVerCompletedEventHandler(object sender, GetVerCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetVerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetVerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetServerTimeCompletedEventHandler(object sender, GetServerTimeCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetServerTimeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetServerTimeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public System.DateTime Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((System.DateTime)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetSessionIdCompletedEventHandler(object sender, GetSessionIdCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetSessionIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetSessionIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddTaskCompletedEventHandler(object sender, AddTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddMasterSlaveTaskCompletedEventHandler(object sender, AddMasterSlaveTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddMasterSlaveTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddMasterSlaveTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksByTableListCompletedEventHandler(object sender, GetNewTasksByTableListCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksByTableListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksByTableListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksCompletedEventHandler(object sender, GetNewTasksCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetTaskDataCompletedEventHandler(object sender, GetTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetMasterSlaveTaskDataCompletedEventHandler(object sender, GetMasterSlaveTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetMasterSlaveTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetMasterSlaveTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void UpdateTaskStateCompletedEventHandler(object sender, UpdateTaskStateCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class UpdateTaskStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal UpdateTaskStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetManageDatasByPageCompletedEventHandler(object sender, GetManageDatasByPageCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetManageDatasByPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetManageDatasByPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#pragma warning restore 1591
|
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
|
<Results> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://10.60.101.3:8012/ExchangeCenterService.asmx?disco" filename="ExchangeCenterService.disco" /> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://10.60.101.3:8012/ExchangeCenterService.asmx?wsdl" filename="ExchangeCenterService.wsdl" /> |
||||
|
</Results> |
||||
|
</DiscoveryClientResultsFile> |
@ -0,0 +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://10.60.101.3:8011/ExchangeCenterService.asmx?wsdl" docRef="http://10.60.101.3:8011/ExchangeCenterService.asmx" xmlns="http://schemas.xmlsoap.org/disco/scl/" /> |
||||
|
<soap address="http://10.60.101.3:8011/ExchangeCenterService.asmx" xmlns:q1="http://tempuri.org/" binding="q1:ExchangeCenterServiceSoap" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
<soap address="http://10.60.101.3:8011/ExchangeCenterService.asmx" xmlns:q2="http://tempuri.org/" binding="q2:ExchangeCenterServiceSoap12" xmlns="http://schemas.xmlsoap.org/disco/soap/" /> |
||||
|
</discovery> |
@ -0,0 +1,980 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> |
||||
|
<wsdl:types> |
||||
|
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/"> |
||||
|
<s:element name="GetVer"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetVerResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetVerResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTime"> |
||||
|
<s:complexType /> |
||||
|
</s:element> |
||||
|
<s:element name="GetServerTimeResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="GetServerTimeResult" type="s:dateTime" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionId"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="systemName" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="encryptedPassword" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetSessionIdResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetSessionIdResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonData" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTask"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonTask" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonMaster" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="jsonSlave" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="AddMasterSlaveTaskResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="AddMasterSlaveTaskResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableList"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableList" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksByTableListResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksByTableListResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasks"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="clientIp" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetNewTasksResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetNewTasksResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskData"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetMasterSlaveTaskDataResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetMasterSlaveTaskDataResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskState"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="taskID" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="taskState" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="failedCount" type="s:int" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="failedInfo" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="UpdateTaskStateResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="UpdateTaskStateResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPage"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="filterJson" type="s:string" /> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="tableName" type="s:string" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageIndex" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="pageSize" type="s:int" /> |
||||
|
<s:element minOccurs="1" maxOccurs="1" name="zipped" type="s:boolean" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="GetManageDatasByPageResponse"> |
||||
|
<s:complexType> |
||||
|
<s:sequence> |
||||
|
<s:element minOccurs="0" maxOccurs="1" name="GetManageDatasByPageResult" type="s:string" /> |
||||
|
</s:sequence> |
||||
|
</s:complexType> |
||||
|
</s:element> |
||||
|
<s:element name="string" nillable="true" type="s:string" /> |
||||
|
<s:element name="dateTime" type="s:dateTime" /> |
||||
|
</s:schema> |
||||
|
</wsdl:types> |
||||
|
<wsdl:message name="GetVerSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVer" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetVerResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetServerTimeResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionId" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetSessionIdResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTask" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:AddMasterSlaveTaskResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableList" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksByTableListResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasks" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetNewTasksResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskData" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetMasterSlaveTaskDataResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskState" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:UpdateTaskStateResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapIn"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPage" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageSoapOut"> |
||||
|
<wsdl:part name="parameters" element="tns:GetManageDatasByPageResponse" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpGetIn" /> |
||||
|
<wsdl:message name="GetVerHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpGetOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetVerHttpPostIn" /> |
||||
|
<wsdl:message name="GetVerHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:message name="GetServerTimeHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:dateTime" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostIn"> |
||||
|
<wsdl:part name="systemName" type="s:string" /> |
||||
|
<wsdl:part name="encryptedPassword" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetSessionIdHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonData" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="jsonTask" type="s:string" /> |
||||
|
<wsdl:part name="jsonMaster" type="s:string" /> |
||||
|
<wsdl:part name="jsonSlave" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="AddMasterSlaveTaskHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
<wsdl:part name="tableList" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksByTableListHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="clientIp" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetNewTasksHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetMasterSlaveTaskDataHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="taskID" type="s:string" /> |
||||
|
<wsdl:part name="taskState" type="s:string" /> |
||||
|
<wsdl:part name="failedCount" type="s:string" /> |
||||
|
<wsdl:part name="failedInfo" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="UpdateTaskStateHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostIn"> |
||||
|
<wsdl:part name="sessionId" type="s:string" /> |
||||
|
<wsdl:part name="filterJson" type="s:string" /> |
||||
|
<wsdl:part name="tableName" type="s:string" /> |
||||
|
<wsdl:part name="pageIndex" type="s:string" /> |
||||
|
<wsdl:part name="pageSize" type="s:string" /> |
||||
|
<wsdl:part name="zipped" type="s:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:message name="GetManageDatasByPageHttpPostOut"> |
||||
|
<wsdl:part name="Body" element="tns:string" /> |
||||
|
</wsdl:message> |
||||
|
<wsdl:portType name="ExchangeCenterServiceSoap"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerSoapIn" /> |
||||
|
<wsdl:output message="tns:GetVerSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeSoapIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdSoapIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskSoapIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksSoapIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataSoapIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateSoapIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageSoapIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageSoapOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpGet"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpGetIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpGetIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpGetIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpGetOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:portType name="ExchangeCenterServiceHttpPost"> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<wsdl:input message="tns:GetVerHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetVerHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<wsdl:input message="tns:GetServerTimeHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetServerTimeHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<wsdl:input message="tns:GetSessionIdHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetSessionIdHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<wsdl:input message="tns:AddTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<wsdl:input message="tns:AddMasterSlaveTaskHttpPostIn" /> |
||||
|
<wsdl:output message="tns:AddMasterSlaveTaskHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<wsdl:input message="tns:GetNewTasksByTableListHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksByTableListHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<wsdl:input message="tns:GetNewTasksHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetNewTasksHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<wsdl:input message="tns:GetTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<wsdl:input message="tns:GetMasterSlaveTaskDataHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetMasterSlaveTaskDataHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<wsdl:input message="tns:UpdateTaskStateHttpPostIn" /> |
||||
|
<wsdl:output message="tns:UpdateTaskStateHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<wsdl:input message="tns:GetManageDatasByPageHttpPostIn" /> |
||||
|
<wsdl:output message="tns:GetManageDatasByPageHttpPostOut" /> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:portType> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceSoap12" type="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetVer" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetServerTime" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetSessionId" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/AddMasterSlaveTask" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasksByTableList" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetNewTasks" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetMasterSlaveTaskData" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/UpdateTaskState" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<soap12:operation soapAction="http://tempuri.org/GetManageDatasByPage" style="document" /> |
||||
|
<wsdl:input> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<soap12:body use="literal" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpGet" type="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:binding verb="GET" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
<wsdl:operation name="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<http:urlEncoded /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:binding name="ExchangeCenterServiceHttpPost" type="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:binding verb="POST" /> |
||||
|
<wsdl:operation name="GetVer"> |
||||
|
<http:operation location="/GetVer" /> |
||||
|
<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="GetServerTime"> |
||||
|
<http:operation location="/GetServerTime" /> |
||||
|
<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="GetSessionId"> |
||||
|
<http:operation location="/GetSessionId" /> |
||||
|
<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="AddTask"> |
||||
|
<http:operation location="/AddTask" /> |
||||
|
<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="AddMasterSlaveTask"> |
||||
|
<http:operation location="/AddMasterSlaveTask" /> |
||||
|
<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="GetNewTasksByTableList"> |
||||
|
<http:operation location="/GetNewTasksByTableList" /> |
||||
|
<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="GetNewTasks"> |
||||
|
<http:operation location="/GetNewTasks" /> |
||||
|
<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="GetTaskData"> |
||||
|
<http:operation location="/GetTaskData" /> |
||||
|
<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="GetMasterSlaveTaskData"> |
||||
|
<http:operation location="/GetMasterSlaveTaskData" /> |
||||
|
<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="UpdateTaskState"> |
||||
|
<http:operation location="/UpdateTaskState" /> |
||||
|
<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="GetManageDatasByPage"> |
||||
|
<http:operation location="/GetManageDatasByPage" /> |
||||
|
<wsdl:input> |
||||
|
<mime:content type="application/x-www-form-urlencoded" /> |
||||
|
</wsdl:input> |
||||
|
<wsdl:output> |
||||
|
<mime:mimeXml part="Body" /> |
||||
|
</wsdl:output> |
||||
|
</wsdl:operation> |
||||
|
</wsdl:binding> |
||||
|
<wsdl:service name="ExchangeCenterService"> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap" binding="tns:ExchangeCenterServiceSoap"> |
||||
|
<soap:address location="http://10.60.101.3:8011/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceSoap12" binding="tns:ExchangeCenterServiceSoap12"> |
||||
|
<soap12:address location="http://10.60.101.3:8011/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpGet" binding="tns:ExchangeCenterServiceHttpGet"> |
||||
|
<http:address location="http://10.60.101.3:8011/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
<wsdl:port name="ExchangeCenterServiceHttpPost" binding="tns:ExchangeCenterServiceHttpPost"> |
||||
|
<http:address location="http://10.60.101.3:8011/ExchangeCenterService.asmx" /> |
||||
|
</wsdl:port> |
||||
|
</wsdl:service> |
||||
|
</wsdl:definitions> |
@ -0,0 +1,796 @@ |
|||||
|
//------------------------------------------------------------------------------
|
||||
|
// <auto-generated>
|
||||
|
// 此代码由工具生成。
|
||||
|
// 运行时版本:4.0.30319.42000
|
||||
|
//
|
||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
|
// 重新生成代码,这些更改将会丢失。
|
||||
|
// </auto-generated>
|
||||
|
//------------------------------------------------------------------------------
|
||||
|
|
||||
|
//
|
||||
|
// 此源代码是由 Microsoft.VSDesigner 4.0.30319.42000 版自动生成。
|
||||
|
//
|
||||
|
#pragma warning disable 1591
|
||||
|
|
||||
|
namespace CK.SCP.Controller.ZZ { |
||||
|
using System; |
||||
|
using System.Web.Services; |
||||
|
using System.Diagnostics; |
||||
|
using System.Web.Services.Protocols; |
||||
|
using System.Xml.Serialization; |
||||
|
using System.ComponentModel; |
||||
|
|
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
[System.Web.Services.WebServiceBindingAttribute(Name="ExchangeCenterServiceSoap", Namespace="http://tempuri.org/")] |
||||
|
public partial class ExchangeCenterService : System.Web.Services.Protocols.SoapHttpClientProtocol { |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetVerOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetServerTimeOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetSessionIdOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback AddMasterSlaveTaskOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksByTableListOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetNewTasksOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetMasterSlaveTaskDataOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback UpdateTaskStateOperationCompleted; |
||||
|
|
||||
|
private System.Threading.SendOrPostCallback GetManageDatasByPageOperationCompleted; |
||||
|
|
||||
|
private bool useDefaultCredentialsSetExplicitly; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public ExchangeCenterService() { |
||||
|
this.Url = global::CK.SCP.Controller.Properties.Settings.Default.CK_SCP_Controller_ZZ_ExchangeCenterService; |
||||
|
if ((this.IsLocalFileSystemWebService(this.Url) == true)) { |
||||
|
this.UseDefaultCredentials = true; |
||||
|
this.useDefaultCredentialsSetExplicitly = false; |
||||
|
} |
||||
|
else { |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new string Url { |
||||
|
get { |
||||
|
return base.Url; |
||||
|
} |
||||
|
set { |
||||
|
if ((((this.IsLocalFileSystemWebService(base.Url) == true) |
||||
|
&& (this.useDefaultCredentialsSetExplicitly == false)) |
||||
|
&& (this.IsLocalFileSystemWebService(value) == false))) { |
||||
|
base.UseDefaultCredentials = false; |
||||
|
} |
||||
|
base.Url = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public new bool UseDefaultCredentials { |
||||
|
get { |
||||
|
return base.UseDefaultCredentials; |
||||
|
} |
||||
|
set { |
||||
|
base.UseDefaultCredentials = value; |
||||
|
this.useDefaultCredentialsSetExplicitly = true; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetVerCompletedEventHandler GetVerCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetServerTimeCompletedEventHandler GetServerTimeCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetSessionIdCompletedEventHandler GetSessionIdCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddTaskCompletedEventHandler AddTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event AddMasterSlaveTaskCompletedEventHandler AddMasterSlaveTaskCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksByTableListCompletedEventHandler GetNewTasksByTableListCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetNewTasksCompletedEventHandler GetNewTasksCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetTaskDataCompletedEventHandler GetTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetMasterSlaveTaskDataCompletedEventHandler GetMasterSlaveTaskDataCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event UpdateTaskStateCompletedEventHandler UpdateTaskStateCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public event GetManageDatasByPageCompletedEventHandler GetManageDatasByPageCompleted; |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetVer", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetVer() { |
||||
|
object[] results = this.Invoke("GetVer", new object[0]); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync() { |
||||
|
this.GetVerAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetVerAsync(object userState) { |
||||
|
if ((this.GetVerOperationCompleted == null)) { |
||||
|
this.GetVerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVerOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetVer", new object[0], this.GetVerOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetVerOperationCompleted(object arg) { |
||||
|
if ((this.GetVerCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetVerCompleted(this, new GetVerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetServerTime", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public System.DateTime GetServerTime() { |
||||
|
object[] results = this.Invoke("GetServerTime", new object[0]); |
||||
|
return ((System.DateTime)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync() { |
||||
|
this.GetServerTimeAsync(null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetServerTimeAsync(object userState) { |
||||
|
if ((this.GetServerTimeOperationCompleted == null)) { |
||||
|
this.GetServerTimeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerTimeOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetServerTime", new object[0], this.GetServerTimeOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetServerTimeOperationCompleted(object arg) { |
||||
|
if ((this.GetServerTimeCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetServerTimeCompleted(this, new GetServerTimeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetSessionId", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetSessionId(string systemName, string encryptedPassword, string clientIp) { |
||||
|
object[] results = this.Invoke("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp) { |
||||
|
this.GetSessionIdAsync(systemName, encryptedPassword, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetSessionIdAsync(string systemName, string encryptedPassword, string clientIp, object userState) { |
||||
|
if ((this.GetSessionIdOperationCompleted == null)) { |
||||
|
this.GetSessionIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSessionIdOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetSessionId", new object[] { |
||||
|
systemName, |
||||
|
encryptedPassword, |
||||
|
clientIp}, this.GetSessionIdOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetSessionIdOperationCompleted(object arg) { |
||||
|
if ((this.GetSessionIdCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetSessionIdCompleted(this, new GetSessionIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddTask(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
object[] results = this.Invoke("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped) { |
||||
|
this.AddTaskAsync(sessionId, jsonTask, jsonData, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddTaskAsync(string sessionId, string jsonTask, string jsonData, bool zipped, object userState) { |
||||
|
if ((this.AddTaskOperationCompleted == null)) { |
||||
|
this.AddTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonData, |
||||
|
zipped}, this.AddTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddTaskCompleted(this, new AddTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/AddMasterSlaveTask", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string AddMasterSlaveTask(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
object[] results = this.Invoke("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped) { |
||||
|
this.AddMasterSlaveTaskAsync(sessionId, jsonTask, jsonMaster, jsonSlave, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void AddMasterSlaveTaskAsync(string sessionId, string jsonTask, string jsonMaster, string jsonSlave, bool zipped, object userState) { |
||||
|
if ((this.AddMasterSlaveTaskOperationCompleted == null)) { |
||||
|
this.AddMasterSlaveTaskOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddMasterSlaveTaskOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("AddMasterSlaveTask", new object[] { |
||||
|
sessionId, |
||||
|
jsonTask, |
||||
|
jsonMaster, |
||||
|
jsonSlave, |
||||
|
zipped}, this.AddMasterSlaveTaskOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnAddMasterSlaveTaskOperationCompleted(object arg) { |
||||
|
if ((this.AddMasterSlaveTaskCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.AddMasterSlaveTaskCompleted(this, new AddMasterSlaveTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasksByTableList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasksByTableList(string sessionId, string clientIp, string tableList) { |
||||
|
object[] results = this.Invoke("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList) { |
||||
|
this.GetNewTasksByTableListAsync(sessionId, clientIp, tableList, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksByTableListAsync(string sessionId, string clientIp, string tableList, object userState) { |
||||
|
if ((this.GetNewTasksByTableListOperationCompleted == null)) { |
||||
|
this.GetNewTasksByTableListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksByTableListOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasksByTableList", new object[] { |
||||
|
sessionId, |
||||
|
clientIp, |
||||
|
tableList}, this.GetNewTasksByTableListOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksByTableListOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksByTableListCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksByTableListCompleted(this, new GetNewTasksByTableListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetNewTasks", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetNewTasks(string sessionId, string clientIp) { |
||||
|
object[] results = this.Invoke("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp) { |
||||
|
this.GetNewTasksAsync(sessionId, clientIp, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetNewTasksAsync(string sessionId, string clientIp, object userState) { |
||||
|
if ((this.GetNewTasksOperationCompleted == null)) { |
||||
|
this.GetNewTasksOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNewTasksOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetNewTasks", new object[] { |
||||
|
sessionId, |
||||
|
clientIp}, this.GetNewTasksOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetNewTasksOperationCompleted(object arg) { |
||||
|
if ((this.GetNewTasksCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetNewTasksCompleted(this, new GetNewTasksCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetTaskDataOperationCompleted == null)) { |
||||
|
this.GetTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetTaskDataCompleted(this, new GetTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetMasterSlaveTaskData", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetMasterSlaveTaskData(string sessionId, string taskID, bool zipped) { |
||||
|
object[] results = this.Invoke("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped) { |
||||
|
this.GetMasterSlaveTaskDataAsync(sessionId, taskID, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetMasterSlaveTaskDataAsync(string sessionId, string taskID, bool zipped, object userState) { |
||||
|
if ((this.GetMasterSlaveTaskDataOperationCompleted == null)) { |
||||
|
this.GetMasterSlaveTaskDataOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMasterSlaveTaskDataOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetMasterSlaveTaskData", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
zipped}, this.GetMasterSlaveTaskDataOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetMasterSlaveTaskDataOperationCompleted(object arg) { |
||||
|
if ((this.GetMasterSlaveTaskDataCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetMasterSlaveTaskDataCompleted(this, new GetMasterSlaveTaskDataCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UpdateTaskState", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string UpdateTaskState(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
object[] results = this.Invoke("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo) { |
||||
|
this.UpdateTaskStateAsync(sessionId, taskID, taskState, failedCount, failedInfo, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void UpdateTaskStateAsync(string sessionId, string taskID, int taskState, int failedCount, string failedInfo, object userState) { |
||||
|
if ((this.UpdateTaskStateOperationCompleted == null)) { |
||||
|
this.UpdateTaskStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateTaskStateOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("UpdateTaskState", new object[] { |
||||
|
sessionId, |
||||
|
taskID, |
||||
|
taskState, |
||||
|
failedCount, |
||||
|
failedInfo}, this.UpdateTaskStateOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnUpdateTaskStateOperationCompleted(object arg) { |
||||
|
if ((this.UpdateTaskStateCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.UpdateTaskStateCompleted(this, new UpdateTaskStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetManageDatasByPage", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] |
||||
|
public string GetManageDatasByPage(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
object[] results = this.Invoke("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}); |
||||
|
return ((string)(results[0])); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped) { |
||||
|
this.GetManageDatasByPageAsync(sessionId, filterJson, tableName, pageIndex, pageSize, zipped, null); |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public void GetManageDatasByPageAsync(string sessionId, string filterJson, string tableName, int pageIndex, int pageSize, bool zipped, object userState) { |
||||
|
if ((this.GetManageDatasByPageOperationCompleted == null)) { |
||||
|
this.GetManageDatasByPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetManageDatasByPageOperationCompleted); |
||||
|
} |
||||
|
this.InvokeAsync("GetManageDatasByPage", new object[] { |
||||
|
sessionId, |
||||
|
filterJson, |
||||
|
tableName, |
||||
|
pageIndex, |
||||
|
pageSize, |
||||
|
zipped}, this.GetManageDatasByPageOperationCompleted, userState); |
||||
|
} |
||||
|
|
||||
|
private void OnGetManageDatasByPageOperationCompleted(object arg) { |
||||
|
if ((this.GetManageDatasByPageCompleted != null)) { |
||||
|
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); |
||||
|
this.GetManageDatasByPageCompleted(this, new GetManageDatasByPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public new void CancelAsync(object userState) { |
||||
|
base.CancelAsync(userState); |
||||
|
} |
||||
|
|
||||
|
private bool IsLocalFileSystemWebService(string url) { |
||||
|
if (((url == null) |
||||
|
|| (url == string.Empty))) { |
||||
|
return false; |
||||
|
} |
||||
|
System.Uri wsUri = new System.Uri(url); |
||||
|
if (((wsUri.Port >= 1024) |
||||
|
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) { |
||||
|
return true; |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetVerCompletedEventHandler(object sender, GetVerCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetVerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetVerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetServerTimeCompletedEventHandler(object sender, GetServerTimeCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetServerTimeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetServerTimeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public System.DateTime Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((System.DateTime)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetSessionIdCompletedEventHandler(object sender, GetSessionIdCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetSessionIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetSessionIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddTaskCompletedEventHandler(object sender, AddTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void AddMasterSlaveTaskCompletedEventHandler(object sender, AddMasterSlaveTaskCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class AddMasterSlaveTaskCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal AddMasterSlaveTaskCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksByTableListCompletedEventHandler(object sender, GetNewTasksByTableListCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksByTableListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksByTableListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetNewTasksCompletedEventHandler(object sender, GetNewTasksCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetNewTasksCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetNewTasksCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetTaskDataCompletedEventHandler(object sender, GetTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetMasterSlaveTaskDataCompletedEventHandler(object sender, GetMasterSlaveTaskDataCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetMasterSlaveTaskDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetMasterSlaveTaskDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void UpdateTaskStateCompletedEventHandler(object sender, UpdateTaskStateCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class UpdateTaskStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal UpdateTaskStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
public delegate void GetManageDatasByPageCompletedEventHandler(object sender, GetManageDatasByPageCompletedEventArgs e); |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.8.9037.0")] |
||||
|
[System.Diagnostics.DebuggerStepThroughAttribute()] |
||||
|
[System.ComponentModel.DesignerCategoryAttribute("code")] |
||||
|
public partial class GetManageDatasByPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { |
||||
|
|
||||
|
private object[] results; |
||||
|
|
||||
|
internal GetManageDatasByPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
||||
|
base(exception, cancelled, userState) { |
||||
|
this.results = results; |
||||
|
} |
||||
|
|
||||
|
/// <remarks/>
|
||||
|
public string Result { |
||||
|
get { |
||||
|
this.RaiseExceptionIfNecessary(); |
||||
|
return ((string)(this.results[0])); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
#pragma warning restore 1591
|
@ -0,0 +1,7 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<DiscoveryClientResultsFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
||||
|
<Results> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.DiscoveryDocumentReference" url="http://10.60.101.3:8011/ExchangeCenterService.asmx?disco" filename="ExchangeCenterService.disco" /> |
||||
|
<DiscoveryClientResult referenceType="System.Web.Services.Discovery.ContractReference" url="http://10.60.101.3:8011/ExchangeCenterService.asmx?wsdl" filename="ExchangeCenterService.wsdl" /> |
||||
|
</Results> |
||||
|
</DiscoveryClientResultsFile> |
Binary file not shown.
Loading…
Reference in new issue