Issue: The following error is thrown when creating a new release in the Releases module of RateManager.
Exception: System.ServiceModel.ServiceActivationException: The service '/IBFA/VirtualFileServer.svc' cannot be activated due to an exception during compilation. The exception message is: This collection already contains an address with scheme http. There can be at most one address per scheme in this collection. If your service is being hosted in IIS you can fix the problem by setting 'system.serviceModel/serviceHostingEnvironment/multipleSiteBindingsEnabled' to true or specifying 'system.serviceModel/serviceHostingEnvironment/baseAddressPrefixFilters'.
Resolution: There are 2 possible solutions for resolving this error:
- Check Site Bindings for the Default Web Site in IIS on the machine that RateManager is installed. In most cases, there should only be 1 http binding.
- If you need more than 1 http binding, the web.config file for IBFA must be updated to include the following:
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" >
</serviceHostingEnvironment>