vote up 0 vote down star

I have just deployed my first application in .NET MVC and i'm having issues.

I have resolved the iis 5.1 problems with the routing (If anyone is looking for this go here: http://itscommonsensestupid.blogspot.com/2008/11/deploy-aspnet-mvc-app-on-windows-xp-iis.html )

**Now my issue is that wherever I call db.SubmitChanges() on my data context it seems to stop the code from continuing and doesn't do the update. Is there a step I'm missing when publishing my website? **

flag

4 Answers

vote up 0 vote down check

This was a problem with the database being read only when i exported the webapp. It didn't give me a nice error message or exception though it jut seemed to break. I checked under IIS and the user account it was trying to use only had read permissions.

Once i changed this i restrarted IIS (not stop/start which i did the first time by accident) and the problem was resolved

link|flag
vote up 1 vote down

you probably have run into the same issue I did try this

http://stackoverflow.com/questions/632277/linq-to-sql-insert-not-working-on-deployed-serveriis

oh and a good way to find out any errors cause i wasnt getting any exceptions either is to throw all your db code into a try catch and return "pass" or if failed return ex.ToString()

you can also throw the error code into a viewdata object and output on your view by using <%= ViewData["errorMessage"] %>

link|flag
thats exactly what i ended up doing, but thanks anyway – SocialAddict Mar 12 at 15:08
vote up 0 vote down

I am running it on an XP machine 32bit under iis 5.1

sorry missed that out :)

Does it have it's own event log or will this be in the system event log for windows?

link|flag
I'd expect to see something in the Application event log. BTW, which Service Pack, .NET version and SP, etc? – John Saunders Mar 11 at 11:54
although looking in my iis config the extensions are mapped to: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll so v2 engine?? – SocialAddict Mar 11 at 12:00
.NET 3.5 still uses .NET 2.0 CLR. BTW, 3.5 not 3.5 SP1? – John Saunders Mar 11 at 12:14
just checked, its 3.5 sp1 (assuming my xp machine uses the version that is listed in vs2008 under help) – SocialAddict Mar 11 at 12:52
there is nothing in my application log related to MSQL or VS other than an info message from SQLEXPRESS but isn't a relevant error. Any ideas? – SocialAddict Mar 11 at 13:26
vote up 0 vote down

I suggest looking in the Event Log to see if any information was logged as to why the application exits. Also, I suggest you post what platform you're running on. In particular, 64-bit?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.