vote up 0 vote down star

I am developing a site that has a Flex app that uses php to communicate with a MYSQL database and I intend to get an SSL certificate to secure the communication. Subscribers to the service that I intend to provide will have an admin panel built with adobe air that will also need to communicate with the database. My question is how do I secure that communication? Do I need a different SSL cert for each subscriber? I hope not!

flag

2 Answers

vote up 0 vote down

SSL will only protect the connection between the clients machine and the server from trivial snooping by 3rd parties.

It won't, for example, protect your database if it is open to the internet publically. You'll need to secure the connection for that by having a server interface to it, instead of having it open directly. This interface is typically called a 'webservice' or similar. I can't comment much more because I'm not at all familiar with flex.

link|flag
Thanks for that but it doesn't really answer my question ie how do I secure data that is being transmitted between my server and the adobe air applications that are on subscribers desktops. – David Aug 13 at 4:46
What data? Secure how? – silky Aug 13 at 4:54
vote up 0 vote down

In AIR, it should work the same for your Flex app in the browser. If you communicate over an HTTPS URL, the data is encrypted. There's nothing special you need to do.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.