Jump to: navigation, search

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 - ensure to provide the endpoint definition for "BasicHttpBinding_UBIKContent" (see example)}}
+
{{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). The client setting "[[Settings#WinX|ContentServiceConfig]]" should be set accordingly.}}
  
  

Revision as of 09:54, 29 August 2017

IC Attention.pngIf 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). The client setting "ContentServiceConfig" should be set accordingly.


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>

See also