Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/25/10 04:31:15 (14 years ago)
Author:
swagner
Message:

Worked on OKB user authentication (#1167)

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  
    41094109       
    41104110        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunnerService/Login", ReplyAction="http://tempuri.org/IRunnerService/LoginResponse")]
    4111         bool Login(string username, string clientname);
     4111        bool Login(string clientname);
    41124112       
    41134113        [System.ServiceModel.OperationContractAttribute(IsInitiating=false, Action="http://tempuri.org/IRunnerService/GetStarterKit", ReplyAction="http://tempuri.org/IRunnerService/GetStarterKitResponse")]
     
    41544154        }
    41554155       
    4156         public bool Login(string username, string clientname) {
    4157             return base.Channel.Login(username, clientname);
     4156        public bool Login(string clientname) {
     4157            return base.Channel.Login(clientname);
    41584158        }
    41594159       
  • branches/OKB/HeuristicLab.OKB.AlgorithmHost/Service References/OKBRunner/service.xsd

    r4311 r4312  
    66    <xs:complexType>
    77      <xs:sequence>
    8         <xs:element minOccurs="0" name="username" nillable="true" type="xs:string" />
    98        <xs:element minOccurs="0" name="clientname" nillable="true" type="xs:string" />
    109      </xs:sequence>
Note: See TracChangeset for help on using the changeset viewer.