HI There,
when I type the address into IE I get endpoint not found. I do have an endpoint defined or at least I thought so.
Main Topics
Browse All Topics
Hi There,
I'm trying to connect to a service that resides on a remote machine. I have added the service reference and then edited the configuration file using the WCF config editor. I keep getting the following error: {"There was no endpoint listening at http://myip/myservice.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 is :The remote server returned an error: (404) Not Found.
I have verfied that the service works, shows metadata etc as i'm calling it from some AJAX methods on the same machine as the service resides.
Sean
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<endpoint address="http://myip/myser
binding="webHttpBinding" name="myendpoint" contract="Service.IService
In this I could see, the end point binding you have given as "webHttpBinding", instead we have "wsHttpBinding" or "basicHttpBinding".
Use "basicHttpBinding". We don not have any binding "webHttpBinding" at all.
Hi,
There is such a thing as webHttpBinding
http://msdn.microsoft.com/
I'm not a 100% sure but you seem to be using two different bindings...
binding="basicHttpBinding"
and
binding="webHttpBinding"
This could be the problem,
Darren
Business Accounts
Answer for Membership
by: ged325Posted on 2008-09-21 at 23:07:42ID: 22537667
404 is definitely page can't be found.
Can you type the http://myip/myservice.svc into IE and get a response? Can you pull a simple function and retrieve data once you have this page up?
I'm assuming the .svc is a regular .asmx page?