Hi,
I am building a FLEX web application that also has a payment module where the user needs to enter his credit card details.
The whole Flex application runs on HTTP. However, whenever the user lands on a page where we ask for credit card details, we want these details to be sent over HTTPS. In this page we need information from the model of the application, because it holds certain selection the user did, the state the application is in, etc.
How can I best solve this? Do I need to make this page a Module that runs on HTTPS? Or can I just configure the specific 'credit card' services (we have a JAVA back end) so that these run on HTTPS?
Any help is appreciated. Thanks!