WCF Service w/ SharePoint Error: Could not find default endpoint element that references contract...

Posted by Brian Clark on Stack Overflow See other posts from Stack Overflow or by Brian Clark
Published on 2010-05-17T19:59:06Z Indexed on 2010/05/17 20:00 UTC
Read the original article Hit count: 489

Filed under:
|

Full error message: Could not find default endpoint element that references contract 'PublicationServices.IPublicationService' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.

I have a SharePoint site that I have already opened a project for in Visual Studio 2010. I also created a project that contains a WCF Service Application and added it to the same solution that contains the project for my SharePoint site. I have created a visual web part in my SharePoint project that I am trying to use to consume the WCF Service. I am doing so like this, from within the user control for my web part:

PublicationServiceClient proxy = new PublicationServiceClient();

Just having this line alone in OnPreRender, Page_Load, etc. will generate the above error.

I've read previous posts about having to have items in the config file of the WCF service also in the config file of the consuming application. I have done this, I copied this section the Web.config file in my WCF service and have placed it in the system.serviceModel tags of my SharePoint project's app.config file:

In other words, this is in both of my config files. When I add this web part to the front page of my SharePoint site though, I get the above error every time. I should also note that I have created a console app that I was able to use with no problems to consume data from this very same WCF service.

Any help would be appreciated!

© Stack Overflow or respective owner

Related posts about sharepoint

Related posts about wcf