app.config 809 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <runtime>
  4. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  5. <dependentAssembly>
  6. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  7. <bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
  8. </dependentAssembly>
  9. </assemblyBinding>
  10. </runtime>
  11. <system.serviceModel>
  12. <bindings>
  13. <basicHttpBinding>
  14. <binding name="entreeSoap" />
  15. </basicHttpBinding>
  16. </bindings>
  17. <client>
  18. <endpoint address="http://localhost:8003/entree.asmx" binding="basicHttpBinding"
  19. bindingConfiguration="entreeSoap" contract="PlugworkflowServices.entreeSoap"
  20. name="entreeSoap" />
  21. </client>
  22. </system.serviceModel>
  23. </configuration>