Last modified on 28 November 2016, at 16:04

Configuration Files/Services.config

Revision as of 16:04, 28 November 2016 by BMA (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)


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