Changeset 5479
- Timestamp:
- 02/16/11 03:31:49 (14 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3
- Files:
-
- 4 added
- 2 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Administration/AdministrationService.cs
r5477 r5479 28 28 using HeuristicLab.Services.OKB.DataAccess; 29 29 30 namespace HeuristicLab.Services.OKB {30 namespace HeuristicLab.Services.OKB.Administration { 31 31 /// <summary> 32 32 /// Implementation of the OKB administration service (interface <see cref="IAdministrationService"/>). -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Administration/IAdministrationService.cs
r5477 r5479 26 26 using HeuristicLab.Services.OKB.DataTransfer; 27 27 28 namespace HeuristicLab.Services.OKB {28 namespace HeuristicLab.Services.OKB.Administration { 29 29 /// <summary> 30 30 /// Interface of the OKB administration service. -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Authentication/AuthenticationService.cs
r5477 r5479 25 25 using System.Web.Security; 26 26 27 namespace HeuristicLab.Services.OKB {27 namespace HeuristicLab.Services.OKB.Authentication { 28 28 /// <summary> 29 29 /// Implementation of the OKB authentication service (interface <see cref="IAuthenticationService"/>). -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Authentication/IAuthenticationService.cs
r5477 r5479 24 24 using System.Net.Security; 25 25 using System.ServiceModel; 26 using HeuristicLab.Services.OKB. DataTransfer;26 using HeuristicLab.Services.OKB.Authentication.DataTransfer; 27 27 28 namespace HeuristicLab.Services.OKB {28 namespace HeuristicLab.Services.OKB.Authentication { 29 29 /// <summary> 30 30 /// Interface of the OKB authentication service. -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/HeuristicLab.Services.OKB-3.3.csproj
r5478 r5479 120 120 </ItemGroup> 121 121 <ItemGroup> 122 <Compile Include="AdministrationService.cs" /> 122 <Compile Include="Administration\AdministrationService.cs" /> 123 <Compile Include="Administration\IAdministrationService.cs" /> 124 <Compile Include="Authentication\AuthenticationService.cs" /> 125 <Compile Include="Authentication\DataTransfer\User.cs" /> 126 <Compile Include="Authentication\IAuthenticationService.cs" /> 123 127 <Compile Include="Convert.cs" /> 124 <Compile Include="AuthenticationService.cs" />125 <Compile Include="Interfaces\IAdministrationService.cs" />126 <Compile Include="QueryService.cs" />127 128 <Compile Include="Filters\AlgorithmParameterBlobValueDataTypeNameFilter.cs" /> 128 129 <Compile Include="Filters\AlgorithmParameterBlobValueValueFilter.cs" /> … … 160 161 <Compile Include="Filters\ResultStringValueValueFilter.cs" /> 161 162 <Compile Include="Filters\ResultFloatValueValueFilter.cs" /> 162 <Compile Include="Interfaces\IQueryService.cs" />163 <Compile Include="Interfaces\IAuthenticationService.cs" />164 <Compile Include="Interfaces\IFilter.cs" />165 163 <Compile Include="Properties\AssemblyInfo.cs" /> 164 <Compile Include="Query\IFilter.cs" /> 165 <Compile Include="Query\IQueryService.cs" /> 166 <Compile Include="Query\QueryService.cs" /> 166 167 <Compile Include="RunCreation\Convert.cs" /> 167 168 <Compile Include="RunCreation\DataTransfer\Algorithm.cs" /> … … 200 201 </ItemGroup> 201 202 <ItemGroup> 202 <Folder Include="Administration\ " />203 <Folder Include=" Authentication\" />204 <Folder Include="Query\ " />203 <Folder Include="Administration\DataTransfer\" /> 204 <Folder Include="Interfaces\" /> 205 <Folder Include="Query\DataTransfer\" /> 205 206 </ItemGroup> 206 207 <ItemGroup> -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Query/IFilter.cs
r5477 r5479 24 24 using HeuristicLab.Services.OKB.DataAccess; 25 25 26 namespace HeuristicLab.Services.OKB {26 namespace HeuristicLab.Services.OKB.Query { 27 27 public interface IFilter { 28 28 Expression<Func<Run, bool>> Expression { get; } -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Query/IQueryService.cs
r5477 r5479 25 25 using HeuristicLab.Services.OKB.DataTransfer; 26 26 27 namespace HeuristicLab.Services.OKB {27 namespace HeuristicLab.Services.OKB.Query { 28 28 /// <summary> 29 29 /// Interface of the OKB query service. -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/Query/QueryService.cs
r5477 r5479 28 28 using HeuristicLab.Services.OKB.DataTransfer; 29 29 30 namespace HeuristicLab.Services.OKB {30 namespace HeuristicLab.Services.OKB.Query { 31 31 /// <summary> 32 32 /// Implementation of the OKB query service (interface <see cref="IQueryService"/>). -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB/3.3/app.config
r5299 r5479 59 59 60 60 <services> 61 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Authentication Service">61 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Authentication.AuthenticationService"> 62 62 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" 63 63 contract="IMetadataExchange" /> 64 64 <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 65 contract="HeuristicLab.Services.OKB. IAuthenticationService" />65 contract="HeuristicLab.Services.OKB.Authentication.IAuthenticationService" /> 66 66 <host> 67 67 <baseAddresses> … … 70 70 </host> 71 71 </service> 72 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Administration Service">72 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Administration.AdministrationService"> 73 73 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" 74 74 contract="IMetadataExchange" /> 75 75 <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 76 contract="HeuristicLab.Services.OKB. IAdministrationService" />76 contract="HeuristicLab.Services.OKB.Administration.IAdministrationService" /> 77 77 <host> 78 78 <baseAddresses> … … 81 81 </host> 82 82 </service> 83 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB. QueryService">83 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.RunCreation.RunCreationService"> 84 84 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" 85 85 contract="IMetadataExchange" /> 86 86 <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 87 contract="HeuristicLab.Services.OKB.IQueryService" /> 87 contract="HeuristicLab.Services.OKB.RunCreation.IRunCreationService" /> 88 <host> 89 <baseAddresses> 90 <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/RunCreationService" /> 91 </baseAddresses> 92 </host> 93 </service> 94 <service behaviorConfiguration="DefaultServiceBehavior" name="HeuristicLab.Services.OKB.Query.QueryService"> 95 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" 96 contract="IMetadataExchange" /> 97 <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 98 contract="HeuristicLab.Services.OKB.Query.IQueryService" /> 88 99 <host> 89 100 <baseAddresses>
Note: See TracChangeset
for help on using the changeset viewer.