We got two applications, one a legacy application that uses Asp.Net webforms and a new application which uses MVC. Right now we are leaving links on the old application to navigate to certain pages on MVC and were using "Cookies" to maintain state while redirecting to the new application. When we deploy it on lower environments, the navigation between old and new application is working fine but when I deploy my web site to Production, it will be in a web farm on that environment with a load balancer, will there be any issues in terms of accessing cookies between the applications? If so can anyone point me in the right direction with a good example or resource to handle the possible issues?
We are using IIS 7.5
Thanks in advance.