<service name="LogicSoftware.EasyProjects.Wcf.Services.UserService" behaviorConfiguration="EasyProjectBehavior">
<endpoint address="https://[ApplicationPath]/Services/UserService.svc" contract="LogicSoftware.EasyProjects.Wcf.Interfaces.IUser" binding="basicHttpBinding" bindingConfiguration="EasyProjectHttpBinding" />
<endpoint address="https://[ApplicationPath]/Services/UserService.svc/mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
</service>
<service name="LogicSoftware.EasyProjects.Wcf.Services.ActivityService" behaviorConfiguration="EasyProjectBehavior">
<endpoint address="https://[ApplicationPath]/Services/ActivityService.svc" contract="LogicSoftware.EasyProjects.Wcf.Interfaces.IActivity" binding="basicHttpBinding" bindingConfiguration="EasyProjectHttpBinding" />
<endpoint address="https://[ApplicationPath]/Services/ActivityService.svc/mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
</service>
<service name="LogicSoftware.EasyProjects.Wcf.Services.ProjectService" behaviorConfiguration="EasyProjectBehavior">
<endpoint address="https://[ApplicationPath]/Services/ProjectService.svc" contract="LogicSoftware.EasyProjects.Wcf.Interfaces.IProject" binding="basicHttpBinding" bindingConfiguration="EasyProjectHttpBinding" />
<endpoint address="https://[ApplicationPath]/Services/ProjectService.svc/mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
</service>
<service name="LogicSoftware.EasyProjects.Wcf.Services.PrintService" behaviorConfiguration="EasyProjectWebBehavior">
<endpoint address="https://[ApplicationPath]/Services/PrintService.svc" contract="LogicSoftware.EasyProjects.Wcf.Interfaces.IPrint" binding="webHttpBinding" bindingConfiguration="EasyProjectHttpWebBinding" />
</service>
1.4.
<bindings>
<!-- GANTT Services-->
<webHttpBinding>
<binding name="EasyProjectHttpWebBinding">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
</binding>
</webHttpBinding>
<basicHttpBinding>
<!-- GANTT Services-->
<binding name="EasyProjectHttpBinding">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
</binding>
1.5.
<behaviors>
<serviceBehaviors>
<!-- GANTT Services-->
<behavior name="EasyProjectBehavior">
<dataContractSerializer maxItemsInObjectGraph="2147483646" />
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceAuthorization principalPermissionMode="Custom" serviceAuthorizationManagerType="LogicSoftware.EasyProjects.Wcf.Security.WcfAuthorizationManager,LogicSoftware.EasyProjects.Wcf.Security">
<authorizationPolicies>
<add policyType="LogicSoftware.EasyProjects.Wcf.Security.HttpContextIdentityPolicy, LogicSoftware.EasyProjects.Wcf.Security" />
</authorizationPolicies>
</serviceAuthorization>
</behavior>