Secure xml messages being read from database into app.
Posted
by scope-creep
on Stack Overflow
See other posts from Stack Overflow
or by scope-creep
Published on 2010-05-10T15:40:56Z
Indexed on
2010/05/10
15:44 UTC
Read the original article
Hit count: 190
I have an app that reads xml from a database using NHibernate Dal. The dal calls stored procedures to read and encapsulate the data from the schema into an xml message, wrap it up to a message and enqueue it on an internal queue for processing.
I would to secure the channel from the database reads to the dequeue action. What would be the best way to do it. I was thinking of signing the xml using System.Security.Cryptography.Xml namespace, but is their any other techniques or approaches I need to know about?
Any help would be appreciated. Bob.
© Stack Overflow or respective owner