Jump to: navigation, search

Configuration Files/Services.config


Revision as of 09:54, 29 August 2017 by LGE (Talk | contribs)

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