We have a large WebForms application here that we would like to port over to mvc piece by piece.
I'd rather not have a co-mvc/webforms solution but would rather create a brand new mvc application which can be called from our webform application and which can call our webform application.
the problem lies in sharing information between the two. we use the session object quite heavily in the webforms application and this, until everything is converted, needs to stay the same.
so is there a way for us to write to the session object in our mvc application and have the webforms application pick it up and vice-versa?
or can anyone suggest another, non database, way to do this?
edit
Actually I'll extend this to be "share across web applications".