hola, queriendo crear un servicio duplex,
cuando inserte un servicio me dio un web.Config por defautl
y funciona perfectamente cuanto acceso a un servicio para bases de datos
pero al insertar otro servicio duplex, ya no me funciona, me dice que la configuración
tiene un binding simple
me manda un error con la siguiente descripcion
El contrato requiere Duplex, pero el enlace 'BasicHttpBinding' no lo admite o no está configurado correctamente para admitirlo
pero yo no veo en nungun lado donde colocarle esa configuración
alguien podria ayudarme pls
tks
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="ConexionDB" connectionString="metadata=res://*/Model.csdl|res://*/Model.ssdl|res://*/Model.msl;provider=System.Data.SqlClient;provider connection string="Data Source=OLGUIN\SQLEXPRESS;Initial Catalog=PRUEBAS;Persist Security Info=True;User ID=SA;Password=adsql2000;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>