ASP.NET MVC How to call a secured page from a windows app?
Posted
by Malcolm
on Stack Overflow
See other posts from Stack Overflow
or by Malcolm
Published on 2010-04-07T03:07:42Z
Indexed on
2010/04/07
3:13 UTC
Read the original article
Hit count: 261
asp.net-mvc
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
© Stack Overflow or respective owner