Running the code on my local box is running just fine. As soon as I load the code on my server it is having issues. I can’t see the issues because my UI code is calling a webservice via jquery and the webservice is calling into the .cs file that is having an issues. The webservice just returns a failure to the jquery.
Any ideas or help is greatly appreciated.
In short, you will need to add lots of logging in the area of code which is behaving oddly to give you clues as to what is happening on the server.
If the webservice is running on ASP.NET, you can use the built-in logging by enabling trace in your Web.config, and then logging likethis :
HttpContext.Current.Trace.Write("hello");. All of the HTTP queries and your custom logging can then be viewed by going to http://host/Trace.axdIf not on ASP.NET you can either use a library like log4net or roll your own.