The server is a "Shared Host" in godaddy.com. I suppose it does have a proxy but I can't find it's name.
Main Topics
Browse All TopicsI created a basic WCF Service. When i run it locally it has no issues but when i put it on my hosted server i get a 404 error when i try to access it directly.
To create the service, I created a new Visual Studio 2008 "WCF Service Application" and configured it to use IIS. I complied and ran it hitting the site "http://localhost/WcfServi
The problem occurs when i deploy it to my hosted site
I hit my site "http://webservice.mydomai
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /webservice/Service1.svc
Any ideas?
John
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.
Can you access htm or another files from that production server ?
// Instantiate the WebProxy class
WebProxy myProxy = new WebProxy(http://255.255.25
myProxy.Credentials = new NetworkCredential("uname",
Now, the proxy should be assigned to the Service class and the function can be called.
// Instantiate
Service1 sr= new Service1();
sr.Proxy = myProxy; // Set the proxy to the class
String str = sr.HelloWorld();
Hi,
I have the similar issue. I hosted and run the WCF serice created in my system, its working file with the URL:
http://localhost:3435/Java
But this service has to be referenced by a java client running in another system. They can only have access if the URL is with my IP address. But when i run with my IP address :
http://192.168.1.160/JavaI
it is giving error:
Server Error in '/' Application.
--------------------------
The resource cannot be found.
Anybody please help me out....
mail me to sravanthi.winner@gmail.com
Any help greatly appreciated...
Thanks in advance
Business Accounts
Answer for Membership
by: apeterPosted on 2008-12-11 at 11:31:21ID: 23151431
Is your production server has any proxy or firewall ?