Web Service is not seen after hosted in site
-
Hi friends, I have one web service it works fine in localhost when I uploaded in server I got tested I am unable to see that and I got Internal Server Error 500. What may be the fault? I just published the WebService and hosted in server through FTP and later I checked I am getting above error. Please help me. Ganesh
-
Hi friends, I have one web service it works fine in localhost when I uploaded in server I got tested I am unable to see that and I got Internal Server Error 500. What may be the fault? I just published the WebService and hosted in server through FTP and later I checked I am getting above error. Please help me. Ganesh
Error 500 is the generic failure code because something went wrong with a component, not with the web server itself. In the case of a web service, it usually means your code threw an unhandled exception.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Hi friends, I have one web service it works fine in localhost when I uploaded in server I got tested I am unable to see that and I got Internal Server Error 500. What may be the fault? I just published the WebService and hosted in server through FTP and later I checked I am getting above error. Please help me. Ganesh
When the error is 500, that means it's an internal error, meaning internal to the service - the service threw an exception that was not caught. Look in the Windows event logs on the service to see what went wrong. Also, try: - Go to menu Tools/Internet Options in your IE. - Click on the Advanced tab, uncheck "Show friendly HTTP error messages" option and click Ok. - Try accessing your web page again. Now you will see much more meaningful error message which will help you to troubleshoot the problem. Other few possibilities: There might be an issue in the way you have hosted your service. May be multiple config files? Further, since you have not shared the type of webservice or what framework application it is, it can also be a cross domain policy issue after hosting on other server.
Sandeep Mewara [My last tip/trick]: Browser back button issue after logout