Wednesday 23 July 2014


Share/Bookmark
Introduction

Service has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element. This can happen if there is no proper endpoint configured for the service.

How to fix this 


  • Create at least one endpoint for the service.
  • If you are configuring endpoint using configuration file, then make sure you have your application configuration file in the output directory.
  • Give proper name for the service.

Possible problem for Service has zero application (non-infrastructure) endpoints exception.

Here if you are getting this exception after you have given proper endpoint, then the main culprit can be the name of the service.

The service name has to be the class name of the service. Give the fully qualified name of the class with namespace. If your class name is “Service” and is in namespace “WcfService” as shown below


namespace WcfService
{
    [System.ServiceModel.ServiceBehavior()]
    public class Service : IService
    {}

}

Then your service name has to be something as shown below.

<service name="WcfService.Service">


Categories:

0 comments:

Post a Comment

Dear reader, Your comment is always appreciated. I will reply to your queries as soon as possible.

1. Make sure to click on the Subscribe By Email link to be notified of follow up comments and replies. Or you can use Subscribe to: Post Comments (Atom) link.
2. Only English comments shall be approved.
3. Please make your comments self-explanatory. Comment in such a way that it explains the comment so that a counter question can be avoided and can be replied with proper answer on the first go.