- Timestamp:
- 08/25/10 04:31:15 (14 years ago)
- Location:
- branches/OKB/HeuristicLab.OKB.AlgorithmHost/Service References/OKBRunner
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB/HeuristicLab.OKB.AlgorithmHost/Service References/OKBRunner/Reference.cs
r4311 r4312 4109 4109 4110 4110 [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunnerService/Login", ReplyAction="http://tempuri.org/IRunnerService/LoginResponse")] 4111 bool Login(string username, stringclientname);4111 bool Login(string clientname); 4112 4112 4113 4113 [System.ServiceModel.OperationContractAttribute(IsInitiating=false, Action="http://tempuri.org/IRunnerService/GetStarterKit", ReplyAction="http://tempuri.org/IRunnerService/GetStarterKitResponse")] … … 4154 4154 } 4155 4155 4156 public bool Login(string username, stringclientname) {4157 return base.Channel.Login( username,clientname);4156 public bool Login(string clientname) { 4157 return base.Channel.Login(clientname); 4158 4158 } 4159 4159 -
branches/OKB/HeuristicLab.OKB.AlgorithmHost/Service References/OKBRunner/service.xsd
r4311 r4312 6 6 <xs:complexType> 7 7 <xs:sequence> 8 <xs:element minOccurs="0" name="username" nillable="true" type="xs:string" />9 8 <xs:element minOccurs="0" name="clientname" nillable="true" type="xs:string" /> 10 9 </xs:sequence>
Note: See TracChangeset
for help on using the changeset viewer.