I have an ASP.NET MVC2 application hosted in a non-secure environment (http), also I have my account services (WCF) on an SSL server. I need to post a form that is on the non-secure http application to a secure SSL and access then the service. By no means I'm allowed to host the application in the SSL server (because it will loose the load balancing).
What could be the best approach to solve this problem? 1. Do the normal post in the mvc application and call the SSL hosted WCF Service. 2. Create an mvc application in the SSL server, then make the non-secure application call an action on the secure one, then the secure mvc call the service. 3. Any other approach?
I'm kinda new and will help me lots. Thanks in advanced.