views:

105

answers:

2

how to secure rss feed in asp.net mvc??

+1  A: 

Like @Mehrdad and @Oli have said you are going to need to provide more details on what and why you're needing to secure your RSS feed. Off the top of my head here are some generic topics that you could do a Google search on.

Restrict the feed using IIS:

  • Enable integrated autentication
  • Only allow a specific IP address range
  • Enable SSL (if that's what you are asking)

Using ASP.NET:

  • Using the web.config to disallow anonymous access
Kane
A: 

I mean i need Enable SSL for my rss in asp.net mvc.Like whenever the user is clicking on the feed link ... it has to promt for the username and password (same uname and password with which he logins to the site)

sagar