Changeset 4939 for branches/WebApplication/MVC2
- Timestamp:
- 11/25/10 21:49:23 (14 years ago)
- 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 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 -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/HLWebPluginHost.csproj
r4736 r4939 69 69 <ItemGroup> 70 70 <Compile Include="Controllers\AccountController.cs" /> 71 <Compile Include="Controllers\AlgorithmClassController.cs" /> 71 72 <Compile Include="Controllers\HomeController.cs" /> 72 73 <Compile Include="Controllers\ServicePrototypeController.cs" /> … … 75 76 </Compile> 76 77 <Compile Include="Models\AccountModels.cs" /> 78 <Compile Include="Models\AlgorithmClassModel.cs" /> 77 79 <Compile Include="PluginLib\AssemblyResourceProvider.cs" /> 78 80 <Compile Include="PluginLib\AssemblyResourceVirtualFile.cs" /> … … 134 136 <LastGenOutput>Reference.cs</LastGenOutput> 135 137 </None> 138 <None Include="Resources\Plus.bmp" /> 139 <None Include="Resources\Delete.bmp" /> 140 <Content Include="Views\AlgorithmClass\Index.aspx" /> 136 141 <Content Include="Views\ServicePrototype\Index.aspx" /> 137 142 <Content Include="Web.config"> … … 192 197 </None> 193 198 </ItemGroup> 199 <ItemGroup> 200 <Content Include="App_LocalResources\Images.resx" /> 201 </ItemGroup> 194 202 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 195 203 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" /> -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/ServicePrototype/Index.aspx
r4785 r4939 7 7 <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> 8 8 9 < h2>Index</h2>9 <form id="form1" runat="server"> 10 10 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> 11 21 </asp:Content>
Note: See TracChangeset
for help on using the changeset viewer.