DW.
DW.

Reputation: 11

asp.net mvc cookies not persisting on local server (aspnetserve)

Trying to run an MVC app on the 'portable' web server. Software is aspnetserve. (http://www.ohloh.net/p/aspNETserve)

Cookies do not persist. They do fine when I run from visual studio debug. Code is fine, seemingly.

Only are dead (fail to persist from page to page) when I use this server.

My solution requires deploying a portable local solution like this for the app. (this isn't just being done for purposes of testing)

Rather stumped right now. Any bright ideas?

Thank you.

Upvotes: 1

Views: 1094

Answers (1)

Raj Kaimal
Raj Kaimal

Reputation: 8304

Could you look at the requests in fiddler. See if you are receiving cookies? In addition, do you have any special attributes set like requiressl, cookie path etc?

http://www.fiddler2.com/fiddler2/

Upvotes: 1

Related Questions