Skip to content

Instantly share code, notes, and snippets.

@camarin24
Created June 30, 2017 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camarin24/17159b504ee38c7a93a6ef548043f902 to your computer and use it in GitHub Desktop.
Save camarin24/17159b504ee38c7a93a6ef548043f902 to your computer and use it in GitHub Desktop.
Soap configuration section
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxReceivedMessageSize="1024000" name="ZWS_PRECIO_VENTA" closeTimeout="00:10:00"
openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Basic" proxyCredentialType="None" realm=""/>
<message clientCredentialType="UserName" algorithmSuite="Default"/>
</security>
</binding>
<binding maxReceivedMessageSize="1024000" name="ZWS_ZFPP1029_1" closeTimeout="00:10:00"
openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Basic" proxyCredentialType="None" realm=""/>
<message clientCredentialType="UserName" algorithmSuite="Default"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://premexerpdev.premex.local:8020/sap/bc/srt/rfc/sap/zws_precio_venta/300/zws_precio_venta/zws_precio_venta"
binding="basicHttpBinding" bindingConfiguration="ZWS_PRECIO_VENTA"
contract="PrecioVentaWebService.ZWS_PRECIO_VENTA" name="ZWS_PRECIO_VENTA" />
<endpoint address="http://premexerpdev.premex.local:8020/sap/bc/srt/rfc/sap/zws_zfpp1029_1/300/zws_zfpp1029_1/zws_zfpp1029_1"
binding="basicHttpBinding" bindingConfiguration="ZWS_ZFPP1029_1"
contract="ManagerClient.ZWS_ZFPP1029_1" name="ZWS_ZFPP1029_1" />
</client>
</system.serviceModel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment