Łukasz Sowa
Łukasz Sowa

Reputation: 1287

Silverlight Security- Sensitive Data

Silverlight works on client side so putting any sensitive data like connection strings, passwords etc. in the code seems not to be a good thing. I want to build whole web app in Silverlight doing lots of authorization and database quering things. How to make it safe? Any tips&tricks and what things should I avoid?

Upvotes: 1

Views: 305

Answers (1)

mmattax
mmattax

Reputation: 27670

I have never developed / used a silverlight app, but I would assume you would use a webservice to broker communication between your app and the database.

This is at least how Flex works.

Edit: This is how Silverlight works as well

Upvotes: 2

Related Questions