Tengo 2 servicios WCF alojados en el servidor IIS.error "Ningún enlace de protocolo coincide con la dirección especificada ..."
Aquí es web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="HttpBinding" />
</basicHttpBinding>
</bindings>
<services>
<service name="BShop.Services.BubensService">
<endpoint address="http://localhost:9001/BubensService" binding="basicHttpBinding"
bindingConfiguration="HttpBinding" name="" contract="BShop.Services.IBubensService" />
</service>
<service name="BShop.Services.OrdersService">
<endpoint address="http://localhost:9001/OrdersService" binding="basicHttpBinding"
bindingConfiguration="HttpBinding" contract="BShop.Services.IOrdersService" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="false" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
Cuando trato de ejecutarlo llegué
Sin enlace de protocolo coincide con la dada dirección 'http: // localhost: 9001/BubensService' . Los enlaces de protocolo se configuran en el nivel del sitio en la configuración de IIS o WAS .
¿Qué me perdí en la configuración?
¿Cuál es la diferencia entre definir la dirección en el punto final y si definimos un baseurl? ¿Resuelve el problema la URL base 2, 1 servidor dirigido a otra orientación localhost? – batmaci