- Timestamp:
- 01/08/09 18:26:46 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService
- Files:
-
- 1 added
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/HeuristicLab.Hive.Contracts.BusinessObjects1.xsd
r1007 r1103 2 2 <xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 3 3 <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 4 <xs:import namespace="http://schemas.datacontract.org/2004/07/System" />5 4 <xs:complexType name="ClientInfo"> 6 5 <xs:complexContent mixed="false"> … … 59 58 <xs:element minOccurs="0" name="Id" type="xs:long" /> 60 59 <xs:element minOccurs="0" name="ParentJob" nillable="true" type="tns:Job" /> 60 <xs:element minOccurs="0" name="Percentage" type="xs:double" /> 61 61 <xs:element minOccurs="0" name="State" type="tns:State" /> 62 62 </xs:sequence> 63 63 </xs:complexType> 64 64 <xs:element name="Job" nillable="true" type="tns:Job" /> 65 <xs:complexType name="JobResult">66 <xs:sequence>67 <xs:element minOccurs="0" name="Client" nillable="true" type="tns:ClientInfo" />68 <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Exception" nillable="true" type="q1:Exception" />69 <xs:element minOccurs="0" name="Id" type="xs:long" />70 <xs:element minOccurs="0" name="Job" nillable="true" type="tns:Job" />71 <xs:element minOccurs="0" name="Result" nillable="true" type="xs:base64Binary" />72 </xs:sequence>73 </xs:complexType>74 <xs:element name="JobResult" nillable="true" type="tns:JobResult" />75 65 </xs:schema> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/HeuristicLab.Hive.Contracts1.xsd
r1007 r1103 41 41 <xs:enumeration value="NoMessage" /> 42 42 <xs:enumeration value="SnapshotReady" /> 43 <xs:enumeration value="Shutdown" /> 43 44 </xs:restriction> 44 45 </xs:simpleType> … … 59 60 <xs:extension base="tns:Response"> 60 61 <xs:sequence> 61 <xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" minOccurs="0" name="Job" nillable="true" type="q2:Job" />62 <xs:element minOccurs="0" name="JobId" type="xs:long" /> 62 63 </xs:sequence> 63 64 </xs:extension> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/Reference.cs
r1007 r1103 44 44 45 45 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IClientCommunicator/SendJobResult", ReplyAction="http://tempuri.org/IClientCommunicator/SendJobResultResponse")] 46 HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished);46 HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished); 47 47 48 48 [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/IClientCommunicator/SendJobResult", ReplyAction="http://tempuri.org/IClientCommunicator/SendJobResultResponse")] 49 System.IAsyncResult BeginSendJobResult( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, System.AsyncCallback callback, object asyncState);49 System.IAsyncResult BeginSendJobResult(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished, System.AsyncCallback callback, object asyncState); 50 50 51 51 HeuristicLab.Hive.Contracts.ResponseResultReceived EndSendJobResult(System.IAsyncResult result); … … 375 375 } 376 376 377 public HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished) {378 return base.Channel.SendJobResult( result, finished);379 } 380 381 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] 382 public System.IAsyncResult BeginSendJobResult( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, System.AsyncCallback callback, object asyncState) {383 return base.Channel.BeginSendJobResult( result, finished, callback, asyncState);377 public HeuristicLab.Hive.Contracts.ResponseResultReceived SendJobResult(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished) { 378 return base.Channel.SendJobResult(clientId, jobId, result, exception, finished); 379 } 380 381 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] 382 public System.IAsyncResult BeginSendJobResult(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished, System.AsyncCallback callback, object asyncState) { 383 return base.Channel.BeginSendJobResult(clientId, jobId, result, exception, finished, callback, asyncState); 384 384 } 385 385 … … 390 390 391 391 private System.IAsyncResult OnBeginSendJobResult(object[] inValues, System.AsyncCallback callback, object asyncState) { 392 HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result = ((HeuristicLab.Hive.Contracts.BusinessObjects.JobResult)(inValues[0])); 393 bool finished = ((bool)(inValues[1])); 394 return this.BeginSendJobResult(result, finished, callback, asyncState); 392 System.Guid clientId = ((System.Guid)(inValues[0])); 393 long jobId = ((long)(inValues[1])); 394 byte[] result = ((byte[])(inValues[2])); 395 System.Exception exception = ((System.Exception)(inValues[3])); 396 bool finished = ((bool)(inValues[4])); 397 return this.BeginSendJobResult(clientId, jobId, result, exception, finished, callback, asyncState); 395 398 } 396 399 … … 408 411 } 409 412 410 public void SendJobResultAsync( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished) {411 this.SendJobResultAsync( result, finished, null);412 } 413 414 public void SendJobResultAsync( HeuristicLab.Hive.Contracts.BusinessObjects.JobResult result, bool finished, object userState) {413 public void SendJobResultAsync(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished) { 414 this.SendJobResultAsync(clientId, jobId, result, exception, finished, null); 415 } 416 417 public void SendJobResultAsync(System.Guid clientId, long jobId, byte[] result, System.Exception exception, bool finished, object userState) { 415 418 if ((this.onBeginSendJobResultDelegate == null)) { 416 419 this.onBeginSendJobResultDelegate = new BeginOperationDelegate(this.OnBeginSendJobResult); … … 423 426 } 424 427 base.InvokeAsync(this.onBeginSendJobResultDelegate, new object[] { 428 clientId, 429 jobId, 425 430 result, 431 exception, 426 432 finished}, this.onEndSendJobResultDelegate, this.onSendJobResultCompletedDelegate, userState); 427 433 } -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/Reference.svcmap
r1007 r1103 18 18 </ClientOptions> 19 19 <MetadataSources> 20 <MetadataSource Address="net.tcp://10. 20.53.3:9000/HiveServer/mex" Protocol="mex" SourceId="1" />20 <MetadataSource Address="net.tcp://10.0.2.15:9000/HiveServer/mex" Protocol="mex" SourceId="1" /> 21 21 </MetadataSources> 22 22 <Metadata> 23 <MetadataFile FileName="service1.wsdl" MetadataType="Wsdl" ID=" 2f623593-449a-4c2c-a9e9-bc1a508a950f" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />24 <MetadataFile FileName="service2.xsd" MetadataType="Schema" ID=" 236fb6be-0c11-471f-b4ac-31042c5195c2" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />25 <MetadataFile FileName="service 21.xsd" MetadataType="Schema" ID="54ef7d2b-ee63-4b13-826e-e499a23ed1b1" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />26 <MetadataFile FileName="HeuristicLab.Hive.Contracts.BusinessObjects1.xsd" MetadataType="Schema" ID=" e9a3c56a-6a38-4d39-96e5-3ea87d8bd93b" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />27 <MetadataFile FileName="HeuristicLab.Hive.Contracts1.xsd" MetadataType="Schema" ID=" eb33d397-8f91-4200-b95e-e11020189dc7" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />28 <MetadataFile FileName="System1.xsd" MetadataType="Schema" ID=" 8949584a-9a16-4da0-97c5-a41265ff0124" SourceId="1" SourceUrl="net.tcp://10.20.53.3:9000/HiveServer/mex" />23 <MetadataFile FileName="service1.wsdl" MetadataType="Wsdl" ID="f56a21ec-7556-4b53-99e2-b57b466f64ad" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 24 <MetadataFile FileName="service2.xsd" MetadataType="Schema" ID="c9a3854c-4c5f-46e4-acdd-a9380cdfb904" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 25 <MetadataFile FileName="service3.xsd" MetadataType="Schema" ID="d9a1099b-776f-4c24-9125-15644863eedf" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 26 <MetadataFile FileName="HeuristicLab.Hive.Contracts.BusinessObjects1.xsd" MetadataType="Schema" ID="5fda1f4a-d579-4445-b291-a6168caf9e83" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 27 <MetadataFile FileName="HeuristicLab.Hive.Contracts1.xsd" MetadataType="Schema" ID="b7112dc7-0c1d-40c9-b95f-3a2834972fce" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 28 <MetadataFile FileName="System1.xsd" MetadataType="Schema" ID="68a8f9e6-4f06-449e-8cdb-6e89a6323964" SourceId="1" SourceUrl="net.tcp://10.0.2.15:9000/HiveServer/mex" /> 29 29 </Metadata> 30 30 <Extensions> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/configuration.svcinfo
r1007 r1103 6 6 </bindings> 7 7 <endpoints> 8 <endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="net.tcp://10. 20.53.3:9000/HiveServer/ClientCommunicator" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator"><identity><userPrincipalName value="mse08003@fhs-hagenberg.ac.at" /></identity></Data>" digest="<?xml version="1.0" encoding="utf-16"?><Data address="net.tcp://10.20.53.3:9000/HiveServer/ClientCommunicator" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator"><identity><userPrincipalName value="mse08003@fhs-hagenberg.ac.at" /></identity></Data>" contractName="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator" />8 <endpoint normalizedDigest="<?xml version="1.0" encoding="utf-16"?><Data address="net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator"><identity><userPrincipalName value="STEFAN-4710DBDB\Stefan" /></identity></Data>" digest="<?xml version="1.0" encoding="utf-16"?><Data address="net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator"><identity><userPrincipalName value="STEFAN-4710DBDB\Stefan" /></identity></Data>" contractName="ServerService.IClientCommunicator" name="NetTcpBinding_IClientCommunicator" /> 9 9 </endpoints> 10 10 </configurationSnapshot> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/configuration91.svcinfo
r1007 r1103 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum=" kpA4Ej4a4mSz8NqKwKcNB68tDr0=">2 <SavedWcfConfigurationInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="9.1" CheckSum="SA5Nbw12eg0h/lght5fpEmtG/7E="> 3 3 <bindingConfigurations> 4 4 <bindingConfiguration bindingType="netTcpBinding" name="NetTcpBinding_IClientCommunicator"> … … 107 107 </bindingConfigurations> 108 108 <endpoints> 109 <endpoint name="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" bindingType="netTcpBinding" address="net.tcp://10. 20.53.3:9000/HiveServer/ClientCommunicator" bindingConfiguration="NetTcpBinding_IClientCommunicator">109 <endpoint name="NetTcpBinding_IClientCommunicator" contract="ServerService.IClientCommunicator" bindingType="netTcpBinding" address="net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator" bindingConfiguration="NetTcpBinding_IClientCommunicator"> 110 110 <properties> 111 111 <property path="/address" isComplexType="false" isExplicitlyDefined="true" clrType="System.Uri, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 112 <serializedValue>net.tcp://10. 20.53.3:9000/HiveServer/ClientCommunicator</serializedValue>112 <serializedValue>net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator</serializedValue> 113 113 </property> 114 114 <property path="/behaviorConfiguration" isComplexType="false" isExplicitlyDefined="false" clrType="System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> … … 137 137 </property> 138 138 <property path="/identity/userPrincipalName/value" isComplexType="false" isExplicitlyDefined="true" clrType="System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 139 <serializedValue> mse08003@fhs-hagenberg.ac.at</serializedValue>139 <serializedValue>STEFAN-4710DBDB\Stefan</serializedValue> 140 140 </property> 141 141 <property path="/identity/servicePrincipalName" isComplexType="true" isExplicitlyDefined="false" clrType="System.ServiceModel.Configuration.ServicePrincipalNameElement, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/service1.wsdl
r1007 r1103 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:tns="http://tempuri.org/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" name="Client Communicator" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">2 <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:tns="http://tempuri.org/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" name="ClientFacade" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> 3 3 <wsp:Policy wsu:Id="NetTcpBinding_IClientCommunicator_policy"> 4 4 <wsp:ExactlyOne> … … 145 145 </wsdl:operation> 146 146 </wsdl:binding> 147 <wsdl:service name="Client Communicator">147 <wsdl:service name="ClientFacade"> 148 148 <wsdl:port name="NetTcpBinding_IClientCommunicator" binding="tns:NetTcpBinding_IClientCommunicator"> 149 <soap12:address location="net.tcp://10. 20.53.3:9000/HiveServer/ClientCommunicator" />149 <soap12:address location="net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator" /> 150 150 <wsa10:EndpointReference> 151 <wsa10:Address>net.tcp://10. 20.53.3:9000/HiveServer/ClientCommunicator</wsa10:Address>151 <wsa10:Address>net.tcp://10.0.2.15:9000/HiveServer/ClientCommunicator</wsa10:Address> 152 152 <Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity"> 153 <Upn> mse08003@fhs-hagenberg.ac.at</Upn>153 <Upn>STEFAN-4710DBDB\Stefan</Upn> 154 154 </Identity> 155 155 </wsa10:EndpointReference> -
trunk/sources/HeuristicLab.Hive.Client.Communication/Service References/ServerService/service2.xsd
r1007 r1103 4 4 <xs:import namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts" /> 5 5 <xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" /> 6 <xs:import namespace="http://schemas.datacontract.org/2004/07/System" /> 6 7 <xs:element name="Login"> 7 8 <xs:complexType> … … 49 50 <xs:complexType> 50 51 <xs:sequence> 51 <xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts.BusinessObjects" minOccurs="0" name="result" nillable="true" type="q7:JobResult" /> 52 <xs:element xmlns:q7="http://schemas.microsoft.com/2003/10/Serialization/" minOccurs="0" name="clientId" type="q7:guid" /> 53 <xs:element minOccurs="0" name="jobId" type="xs:long" /> 54 <xs:element minOccurs="0" name="result" nillable="true" type="xs:base64Binary" /> 55 <xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="exception" nillable="true" type="q8:Exception" /> 52 56 <xs:element minOccurs="0" name="finished" type="xs:boolean" /> 53 57 </xs:sequence> … … 57 61 <xs:complexType> 58 62 <xs:sequence> 59 <xs:element xmlns:q 8="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts" minOccurs="0" name="SendJobResultResult" nillable="true" type="q8:ResponseResultReceived" />63 <xs:element xmlns:q9="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts" minOccurs="0" name="SendJobResultResult" nillable="true" type="q9:ResponseResultReceived" /> 60 64 </xs:sequence> 61 65 </xs:complexType> … … 64 68 <xs:complexType> 65 69 <xs:sequence> 66 <xs:element xmlns:q 9="http://schemas.microsoft.com/2003/10/Serialization/" minOccurs="0" name="clientId" type="q9:guid" />70 <xs:element xmlns:q10="http://schemas.microsoft.com/2003/10/Serialization/" minOccurs="0" name="clientId" type="q10:guid" /> 67 71 </xs:sequence> 68 72 </xs:complexType> … … 71 75 <xs:complexType> 72 76 <xs:sequence> 73 <xs:element xmlns:q1 0="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts" minOccurs="0" name="LogoutResult" nillable="true" type="q10:Response" />77 <xs:element xmlns:q11="http://schemas.datacontract.org/2004/07/HeuristicLab.Hive.Contracts" minOccurs="0" name="LogoutResult" nillable="true" type="q11:Response" /> 74 78 </xs:sequence> 75 79 </xs:complexType>
Note: See TracChangeset
for help on using the changeset viewer.