Reputation: 1341
I have to create a demo app (desktop application) which send messages from modules (within one application) using SSL
. I thought about using MSMQ
is it possible to do so? I cannot find any documentation or tutorial about it.
If such solution is impossible to implement can anyone redirect me to link which describe how can I create SSL tunneling
for messages within one application?
Upvotes: 3
Views: 1013
Reputation: 150158
MSMQ directly provides HTTPS support
http://msdn.microsoft.com/en-us/library/windows/desktop/ms707036(v=vs.85).aspx
You can configure an HTTPS endpoint for MSMQ and call that endpoint from your desktop application.
Upvotes: 3