ASP.NET MVC How to call a secured page from a windows app?
- by Malcolm
Hi,
I have a MVC app that has forms authentication enabled.
The app allows printing of invoices.
I have an external app that converts html to pdf.
How can I call the secured page from this pdf converter app
so that some security remains?
The PDF converter app just requires a URL.
One thought was to create a HttpHandler for an extenion
of say .print and pass a public key in the URL qureystring
that can be validated by the MVC app.
Any ideas on this?
Malcolm