Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/10 21:49:23 (13 years ago)
Author:
wtollsch
Message:

#1198 Added AlgorithmClassController, AlgorithmClassModel, AlgorithmClass/Index.aspx with ListBox

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers/ServicePrototypeController.cs

    r4786 r4939  
    1212    public class ServicePrototypeController : Controller
    1313    {
     14       
    1415        //
    1516        // GET: /ServicePrototype/
     
    1920
    2021            OKBService.OKBServiceClient sc = new OKBService.OKBServiceClient();
    21             sc.ClientCredentials.UserName.UserName = Membership.GetUser().UserName;
    22             sc.ClientCredentials.UserName.Password = Membership.GetUser().GetPassword();
     22            //sc.ClientCredentials.UserName.UserName = Membership.GetUser().UserName;
     23            //sc.ClientCredentials.UserName.Password = Membership.GetUser().GetPassword();
     24            sc.ClientCredentials.UserName.UserName = "Gerhard";
     25            sc.ClientCredentials.UserName.Password = "Gerhard";
    2326            sc.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;
     27           
    2428            //read algorithm class entries
    2529            Debug.WriteLine("algorithm class entries");
     
    2832                Debug.WriteLine(i.Name);
    2933            }
     34           
    3035
    3136            //read problem class entries
Note: See TracChangeset for help on using the changeset viewer.