Questions tagged [endpointnotfoundexception]

An exception thrown when a remote endpoint could not be found or reached. It is predominantly thrown while using communication technologies, such as Windows Communication Foundation (WCF).

The EndpointNotFoundException Class is a Microsoft .NET communication class that represents an

exception that is thrown when a remote endpoint could not be found or reached.

It is predominantly thrown while using communication technologies, such as Windows Communication Foundation (WCF). The linked page provides the following remarks:

The endpoint may not be found or reachable because the remote endpoint is down, the remote endpoint is unreachable, or because the remote network is unreachable.

This exception derives from CommunicationException that represents a class of recoverable errors that may be thrown during communication between endpoints and that robust client and service Windows Communication Foundation (WCF) applications are expected to handle. To prevent a handler for the CommunicationException handler from catching the more specific EndpointNotFoundException, catch this exception prior to handling CommunicationException.

8 questions
2
votes
0 answers

IIS stops connecting to WCF service until app pool is recycled

I have an ASP.NET MVC application hosted on IIS 8.5. The site will function for anything between hours to days without issue but eventually starts getting EndpointNotFoundException when attempting to connect to a WCF service hosted over net.tcp on…
Matt
  • 473
  • 5
  • 10
2
votes
1 answer

EndpointNotFoundException on call to operation of running RESTful WCF service

I have a really strange problem with one of my WCF services. I'm pretty sure that most people who have experimented with WCF services have had an EndpointNotFoundException thrown when an endpoint had not been set up correctly in one of their…
Sheridan
  • 68,826
  • 24
  • 143
  • 183
1
vote
2 answers

WCF End point not found error from self-hosted service

i´m getting an "End point not found" when calling a WCF service. It is a Self-hosted service in a console app. Here is my code: IService.cs namespace ClassLibrary { [ServiceContract] public interface IService { [OperationContract] [WebGet] …
MorgoZ
  • 2,012
  • 5
  • 27
  • 54
1
vote
1 answer

WCF EndpointNotFoundException takes longer than TimeoutException

I'm setup with a group of services that each talk to each other; with the below binding I would have assumed that if I "A" sends a message to "B"(alive) and "C"(not alive) that B would return if processing did not take longer than the sendTimeout…
user815809
  • 351
  • 5
  • 24
0
votes
0 answers

A proper way to handle WCF network related exceptions

In the application I"m working with, there is some communication with the remote service using WCF (basic http binding, no fancy stuff). Since the client is lightweigh, the details of the server are irrelevant, you may assume that there is just a…
Pritorian
  • 414
  • 8
  • 19
0
votes
1 answer

WCF client works as console application but running as Windows service, fails with EndpointNotFoundException

I wrote a C# console application to consume a local WCF service using NetNamedPipeBinding. The WCF service I consume is running as a local Windows application. My WCF client works fine as a console application. However, when I implement essentially…
0
votes
1 answer

Spring Boot projetct with WSDL EndpointNotFound

everybody!!! I have this project based on http://javainuse.com/spring/springbootsoapwebservice, but I get EndpointNotFound. pom.xml
0
votes
1 answer

WCF - EndPoint Not Found Exception

I have been beating my head against this for two days and tried a number of things to try to get this to work to no avail. I'm trying to get this system to work on my local machine for debugging purposes. I'm hoping somebody here can see something…