1234567891011121314151617181920212223 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <dependentAssembly>
- <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
- <bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
- </dependentAssembly>
- </assemblyBinding>
- </runtime>
- <system.serviceModel>
- <bindings>
- <basicHttpBinding>
- <binding name="entreeSoap" />
- </basicHttpBinding>
- </bindings>
- <client>
- <endpoint address="http://localhost:8003/entree.asmx" binding="basicHttpBinding"
- bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap"
- name="entreeSoap" />
- </client>
- </system.serviceModel>
- </configuration>
|