Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

There was no endpoint listening at (url) that could accept the message

Tags:

I'm building an ASP.NET website - it's a solution with a few projects, a data base and a web service. Everything worked fine, but last time I tried to run the project, I got the following error:

There was no endpoint listening at http://localhost:[number]/BooksWS.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException,  if present, for more details. 

The inner exception says:

Unable to connect to the remote server 

This error sort of came out of the blue, so I'm not sure what additional information I should provide. Does anyone have any idea why this could happen?

I suppose even a general answer could help, the only info I found about this error in the web concerned WCF.

like image 416
Cheshie Avatar asked Jun 26 '14 18:06

Cheshie


People also ask

Why was there no endpoint listening at http://www.svc?

"There was no endpoint listening at http://www.example.com/All.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

Why was there no endpoint listening at https://myservice/gptest/service1?

There was no endpoint listening at https://MYSERVICE/GpTest/Service1.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

Why was there no endpoint listening at https://****-user/SDK?

Additional Information: There was no endpoint listening at https://****-user/sdk that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

Why can't I listen to a message sent from Orion?

There was no endpoint listening at net.tcp://localhost:17777/SolarWinds/InformationService/Orion/ssl that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. Prior to making changes, please create a snapshot of the Orion server.


1 Answers

go to webconfig page of your site, look for the tag endpoint, and check the port in the address attribute, maybe there was a change in the port number

like image 57
dandush Avatar answered Oct 17 '22 13:10

dandush