Changeset 4939 for branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers
- Timestamp:
- 11/25/10 21:49:23 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers/ServicePrototypeController.cs
r4786 r4939 12 12 public class ServicePrototypeController : Controller 13 13 { 14 14 15 // 15 16 // GET: /ServicePrototype/ … … 19 20 20 21 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"; 23 26 sc.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None; 27 24 28 //read algorithm class entries 25 29 Debug.WriteLine("algorithm class entries"); … … 28 32 Debug.WriteLine(i.Name); 29 33 } 34 30 35 31 36 //read problem class entries
Note: See TracChangeset
for help on using the changeset viewer.