Difference between revisions of "Configuration Files/Services.config"
Line 1: | Line 1: | ||
− | {{Attention|If the service has to support the streaming transfer mode - e.g. used for downloading large data branches in the UBIK client | + | {{Attention|If the service has to support the streaming transfer mode - e.g. used for downloading large data branches in the UBIK client - ensure to provide the endpoint definition for "BasicHttpBinding_UBIKContent" (see example)}} |
Revision as of 16:09, 28 November 2016
Example
<?xml version="1.0" encoding="UTF-8"?>
<services>
<service name="UBIK.Service.UBIKContent" behaviorConfiguration="httpBehavior">
<endpoint address="" behaviorConfiguration="httpBehavior" binding="webHttpBinding" contract="UBIK.Service.IUBIKContent" />
<endpoint address="/SOAP" binding="wsHttpBinding" contract="UBIK.Service.IUBIKContent" />
<!-- USED FOR STREAMING TRANSFER MODE -->
<endpoint address="/SOAP11" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_UBIKContent" contract="UBIK.Service.IUBIKContent" />
</service>
</services>
<services>
<service name="UBIK.Service.UBIKContent" behaviorConfiguration="httpBehavior">
<endpoint address="" behaviorConfiguration="httpBehavior" binding="webHttpBinding" contract="UBIK.Service.IUBIKContent" />
<endpoint address="/SOAP" binding="wsHttpBinding" contract="UBIK.Service.IUBIKContent" />
<!-- USED FOR STREAMING TRANSFER MODE -->
<endpoint address="/SOAP11" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_UBIKContent" contract="UBIK.Service.IUBIKContent" />
</service>
</services>