12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
- </startup>
- <system.serviceModel>
- <services>
- <service name="BBIWARG.API.Server">
- <endpoint address="http://localhost:8733/Design_Time_Addresses/BBIWARG.API/Server/"
- binding="webHttpBinding"
- contract="BBIWARG.API.IServer"/>
- </service>
- </services>
- <behaviors>
- <endpointBehaviors>
- <behavior>
- <webHttp />
- </behavior>
- </endpointBehaviors>
- </behaviors>
- </system.serviceModel>
- </configuration>
|