Click here to Skip to main content
15,892,965 members
Please Sign up or sign in to vote.
3.29/5 (3 votes)
See more:
Hi,


I changed confi files ,now i am getting this error please help me

The requested service, 'http://narasimhulu.sourceedge.com/IntegrationService/IntegrationService.svc' could not be activated. See the server's diagnostic trace logs for more information.


Regards,
Narasima

Edit TR : If you're going to use <pre> tags, please remember to turn off 'Ignore HTML in text'.
Posted
Updated 15-Apr-10 11:18am
v3

1 solution

I believe your web.config is not quite correct.
I think you are missing : bindingConfiguration="basicHttpBinding"

in the endpoint node for the service - this makes it ignore your configuration settings...

CSS
<endpoint binding="basicHttpBinding"
         name="basicHttpBinding" bindingName="IService" bindingNamespace="http://Emisoft.Emis.ServiceContracts/2007/05"
         contract="Emisoft.EmisServices.BusinessLogic.IIntegrationWebService" />


should be:

CSS
<endpoint binding="basicHttpBinding"
bindingConfiguration="basicHttpBinding"
         name="basicHttpBinding" bindingName="IService" bindingNamespace="http://Emisoft.Emis.ServiceContracts/2007/05"
         contract="Emisoft.EmisServices.BusinessLogic.IIntegrationWebService" />


It is usually advisable to edit these config files using the WCF Configuration editor
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900