mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10832 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
38 lines
1.7 KiB
XML
Executable File
38 lines
1.7 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<system.serviceModel>
|
|
<bindings>
|
|
<basicHttpBinding>
|
|
<binding name="RepositoryServiceSoapBinding" messageEncoding="Text">
|
|
<security mode="TransportWithMessageCredential">
|
|
<transport />
|
|
<message clientCredentialType="UserName" />
|
|
</security>
|
|
</binding>
|
|
<binding name="NavigationServiceSoapBinding" messageEncoding="Text">
|
|
<security mode="TransportWithMessageCredential">
|
|
<transport />
|
|
<message clientCredentialType="UserName" />
|
|
</security>
|
|
</binding>
|
|
<binding name="ObjectServiceSoapBinding" messageEncoding="Mtom">
|
|
<security mode="TransportWithMessageCredential">
|
|
<transport />
|
|
<message clientCredentialType="UserName" />
|
|
</security>
|
|
</binding>
|
|
</basicHttpBinding>
|
|
</bindings>
|
|
<client>
|
|
<endpoint address="https://localhost:8443/alfresco/cmis/RepositoryService"
|
|
binding="basicHttpBinding" bindingConfiguration="RepositoryServiceSoapBinding"
|
|
contract="RepositoryServicePort" name="RepositoryServicePort" />
|
|
<endpoint address="https://localhost:8443/alfresco/cmis/NavigationService"
|
|
binding="basicHttpBinding" bindingConfiguration="NavigationServiceSoapBinding"
|
|
contract="NavigationServicePort" name="NavigationServicePort" />
|
|
<endpoint address="https://localhost:8443/alfresco/cmis/ObjectService"
|
|
binding="basicHttpBinding" bindingConfiguration="ObjectServiceSoapBinding"
|
|
contract="ObjectServicePort" name="ObjectServicePort" />
|
|
</client>
|
|
</system.serviceModel>
|
|
</configuration> |