Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/17/11 15:54:20 (13 years ago)
Author:
msammer
Message:

#1446 rebuild the shown table. Now it is possible to make a right 'details'-call via an action within the MVC

Location:
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Helpers/Query.cs

    r5919 r6226  
    1717            try {
    1818                QueryServiceClient client = new QueryServiceClient();
    19                 client.ClientCredentials.UserName.UserName = username;
    20                 client.ClientCredentials.UserName.Password = password;
     19                client.ClientCredentials.UserName.UserName = "okbtester";
     20                client.ClientCredentials.UserName.Password = "okbtester";
    2121                client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;
    2222                client.GetFilters();
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Helpers/RunCollectionData.cs

    r6076 r6226  
    1010
    1111        #region properties
     12        // Run
     13        public long Id { get; set; }
     14
    1215        // Result
    1316        public string ExecutionTime { get; set; }
     
    6467        #region constructor/initialisation
    6568        public RunCollectionData(Run run) {
     69            Id = run.Id;
    6670
    6771            // results
Note: See TracChangeset for help on using the changeset viewer.