Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4939


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

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

Location:
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost
Files:
14 added
3 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
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/HLWebPluginHost.csproj

    r4736 r4939  
    6969  <ItemGroup>
    7070    <Compile Include="Controllers\AccountController.cs" />
     71    <Compile Include="Controllers\AlgorithmClassController.cs" />
    7172    <Compile Include="Controllers\HomeController.cs" />
    7273    <Compile Include="Controllers\ServicePrototypeController.cs" />
     
    7576    </Compile>
    7677    <Compile Include="Models\AccountModels.cs" />
     78    <Compile Include="Models\AlgorithmClassModel.cs" />
    7779    <Compile Include="PluginLib\AssemblyResourceProvider.cs" />
    7880    <Compile Include="PluginLib\AssemblyResourceVirtualFile.cs" />
     
    134136      <LastGenOutput>Reference.cs</LastGenOutput>
    135137    </None>
     138    <None Include="Resources\Plus.bmp" />
     139    <None Include="Resources\Delete.bmp" />
     140    <Content Include="Views\AlgorithmClass\Index.aspx" />
    136141    <Content Include="Views\ServicePrototype\Index.aspx" />
    137142    <Content Include="Web.config">
     
    192197    </None>
    193198  </ItemGroup>
     199  <ItemGroup>
     200    <Content Include="App_LocalResources\Images.resx" />
     201  </ItemGroup>
    194202  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
    195203  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/ServicePrototype/Index.aspx

    r4785 r4939  
    77<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    88
    9     <h2>Index</h2>
     9    <form id="form1" runat="server">
    1010
     11    <h2>Algorithms</h2>
     12
     13    <asp:Panel ID="Panel3" runat="server" Height="16px" Width="298px">
     14    </asp:Panel>
     15    <asp:Panel ID="Panel1" runat="server" Height="16px" Width="315px">
     16        <asp:Panel ID="Panel2" runat="server">
     17        </asp:Panel>
     18    </asp:Panel>
     19
     20    </form>
    1121</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.