.NET - Difference between local debug and IIS Service

1 replies
So I have an application that is working like a charm when I am running it in both debug and release mode locally.

However, when I try to deploy it as an IIS service on my production server it behaves completely different. I have tried to debug in VS by attaching to process with no results.

What is the most common differences between running an application locally and deployed on as an IIS service?
#debug #difference #iis #local #net #service
  • Profile picture of the author InsightIM
    How is it acting different on the production server?

    Usually the problem is a simple one; some files weren't uploaded to the production server so javascript or css didn't load from an external file. Sometimes it's a little more complicated. Perhaps something is not configured properly in your web.config file. Its also possible if you're using someone else's hosting that the server isn't configured to allow what you're trying to do without registering something in the web.config file.

    More details would help me help you.
    {{ DiscussionBoard.errors[8105466].message }}

Trending Topics