I have a service hosted in an Azure environment. I use this service using a console application. in doing so I get the “Requested Service”, http://xxxx-d.yyyy.be/Services/zzzzInService.svc 'cannot be activated. See server trace trace logs for more information. "
Can someone help me find what I am missing?
A service is defined as follows:
<service name="xxxx.AppServer.Host.Services.yyyyy.zzzzPlugInService" behaviorConfiguration="MetadataBehavior" xdt:Locator="XPath(//service[@name='xxxx.AppServer.Host.Services.yyyy.zzzzPlugInService'])" xdt:Transform="Replace"> <endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding" contract="xxxx.Shared.IntegrationServices.yyyy.IzzzzPlugInService"> <identity> <dns value="localhost"/> </identity> </endpoint> <endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpsBinding" contract="xxxx.Shared.IntegrationServices.yyyy.IzzzzPlugInService"> <identity> <dns value="localhost"/> </identity> </endpoint> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
when I use the link http://xxxx-d.yyyy.be/Services/zzzzInService.svc in the browser, I get these messages -
The binding in system.serviceModel / bindings / basicHttpBinding does not have a binding configured with the name "basicHttpBinding". This value is not valid for bindingConfiguration.
a source:
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding" contract="xxxx.Shared.IntegrationServices.zzzzz.IzzzzPlugInService">
source share