Changeset 3976 for branches/HeuristicLab.Services.Authentication Prototype
- Timestamp:
- 06/29/10 18:21:22 (14 years ago)
- Location:
- branches/HeuristicLab.Services.Authentication Prototype
- Files:
-
- 14 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Services.Authentication Prototype/Service/App.config
r3970 r3976 1 <?xml version="1.0" encoding="utf-8" ?>1 <?xml version="1.0" encoding="utf-8" ?> 2 2 <configuration> 3 3 <system.web> … … 5 5 </system.web> 6 6 <system.serviceModel> 7 <behaviors> 8 <serviceBehaviors> 9 <behavior name="HttpServiceBehavior"> 10 <serviceMetadata httpGetEnabled="true" httpGetUrl="http://127.0.0.1:8888/metadata" /> 11 <serviceDebug httpHelpPageUrl="http://127.0.0.1:8888/debug" /> 12 </behavior> 13 </serviceBehaviors> 14 </behaviors> 15 <services> 16 <service behaviorConfiguration="HttpServiceBehavior" name="Service.Services.Administration.AuthorizationManagementService"> 17 <endpoint address="http://127.0.0.1:8888/AuthorizationManagementEndpoint" 18 binding="basicHttpBinding" bindingConfiguration="" contract="Service.Services.Administration.IAuthorizationManagementService" /> 19 <host> 20 <baseAddresses> 21 <add baseAddress="http://localhost:8080/AuthorizationManagement"/> 22 </baseAddresses> 23 </host> 24 </service> 25 </services> 7 26 </system.serviceModel> 8 27 </configuration> -
branches/HeuristicLab.Services.Authentication Prototype/Service/Services/Administration/AuthorizationManagementService.cs
r3971 r3976 10 10 public void CreateRole(string roleName, bool isPermission) { 11 11 new Service.Provider.HeuristicLabRoleProvider().CreateRole(roleName, isPermission); 12 13 12 14 } 13 15 -
branches/HeuristicLab.Services.Authentication Prototype/UnitTests/UnitTests.csproj
r3943 r3976 63 63 <Compile Include="HeuristicLabUserTest.cs" /> 64 64 <Compile Include="Properties\AssemblyInfo.cs" /> 65 <Compile Include="Service References\ServiceManagementRemote\Reference.cs"> 66 <AutoGen>True</AutoGen> 67 <DesignTime>True</DesignTime> 68 <DependentUpon>Reference.svcmap</DependentUpon> 69 </Compile> 70 <Compile Include="service\AbstractHeuristicLabServiceTest.cs" /> 71 <Compile Include="service\HeuristicLabAuthorizationManagementServiceTest_old.cs" /> 72 <Compile Include="service\HeuristicLabManagementServiceTest.cs" /> 65 73 </ItemGroup> 66 74 <ItemGroup> 67 75 <Content Include="AuthoringTests.txt" /> 76 <None Include="Service References\ServiceManagementRemote\Reference.svcmap"> 77 <Generator>WCF Proxy Generator</Generator> 78 <LastGenOutput>Reference.cs</LastGenOutput> 79 </None> 80 <None Include="Service References\ServiceManagementRemote\configuration.svcinfo" /> 81 <None Include="Service References\ServiceManagementRemote\configuration91.svcinfo" /> 68 82 </ItemGroup> 69 83 <ItemGroup> … … 80 94 <Shadow Include="Test References\Persistence.accessor" /> 81 95 </ItemGroup> 96 <ItemGroup> 97 <WCFMetadata Include="Service References\" /> 98 </ItemGroup> 99 <ItemGroup> 100 <None Include="app.config" /> 101 <None Include="Service References\ServiceManagementRemote\AuthorizationManagementService.wsdl" /> 102 <None Include="Service References\ServiceManagementRemote\metadata.xsd" /> 103 <None Include="Service References\ServiceManagementRemote\metadata1.xsd" /> 104 </ItemGroup> 105 <ItemGroup> 106 <WCFMetadataStorage Include="Service References\ServiceManagementRemote\" /> 107 </ItemGroup> 82 108 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 83 109 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.