Home > MOSS 2007 > Anonymous Users In SharePoint (Part 2) : Solutions

Anonymous Users In SharePoint (Part 2) : Solutions

February 8th, 2008 Leave a comment Go to comments

In Part 1 of this series, I gave you a quick tour of how to enable anonymous access and explained some of the issues regarding anonymous access in both Authoring and FBA zones. In this post I am going to walk you through some of the solutions and workarounds and also the drawbacks of each approach. In part 3, I am going to put everything together and come up with a more real life solution.

Solution 1:This solution is probably the easiest one to overcome the limitation that anonymous user is not a real configurable identity in FBA zone. It is all about making SharePoint think that anonymous user has logged in under the security context of whatever you construct in ‘Global.asax’ .Yes, the ‘Global.asax’ file in the FBA protected site must be modified, so that the ‘Application_AuthenticateRequest’ event (To authenticate the caller) knows how to construct a valid cookie and assign it to the current unnamed identity (anonymous user). This will be later used by the SharePoint downstream authorization process to define what level of access control an anonymous user has to various resources across your site. You simply add the Guest account to your identity store and replace ‘Global.asax’ of your FBA site with the one below and BINGO! anonymous users will show up as “Guest”. Now , You can target content at “Guest” and you can assign permission. Easy, huh?

This solution can be found here . Here is the gist of it – implemented in ‘Global.asax’ :

  1. <%@ Assembly Name="Microsoft.SharePoint"%>
  2. <%@ Application Language="C#" Inherits="Microsoft.SharePoint.ApplicationRuntime.SPHttpApplication" %>
  3. <script RunAt='server'>
  4.     protected void Application_AuthenticateRequest(Object sender, EventArgs e)
  5.     {
  6.         string cookieName = FormsAuthentication.FormsCookieName;
  7.         HttpCookie authCookie = Context.Request.Cookies[cookieName];
  8.         if (authCookie == null)
  9.         {
  10.             FormsAuthentication.SetAuthCookie("guest", false);
  11.         }      
  12.     }
  13. </script>

Drawbacks : First of all It only works in FBA zones. Secondly, many people may not want to add that Guest account in their identity store (for whatever reason) so that would be ideal if we could somehow virtually create that Guest Account. This will lead us to the second solution.

Solution 2: This solution is actually an extension to the above solution by leveraging a custom authentication provider behind the scenes and by virtually creating the Guest context (It’s called Annon in that post). As I alluded to earlier , the whole point here is not to have a Guest Account in the underlying identity store instead virtually creating it at runtime. This POC is very well documented so there is no point for me to reinvent the wheel. Go ahead and read up for yourself, but make sure that you come back and read the rest of this article 😉

Drawbacks : Like the first solution it doesn’t solve the issue we saw in Part 1 with regards to NTLM or Kerberos protected sites , it is only for FBA protected sites period . On the other hand, it is a proof of concept (actually a brilliant one) , but in reality you have to merge this POC into your already developed custom authentication provider , right? Otherwise what’s the point of having an authentication provider that only returns one user (Annon user)?! Plus , that would be great if we could package the whole damn thing into a feature that can be turned ON and off that gives you more flexibility. In part 3, you will see how I will combine all these solutions to make a much more kind of production ready functionality.

Solution 3 : Wrap the content in SPSecurityTrimmedControl and then you should be able to target it to different SPBasePermissions or AuthenticationRestrictions. In the example below, the entire web part zone is surrounded with SPSecurityTrimmedControl tag with PermissionsString set to CreateSSCSite (Self-Service Site Creation) . The “CreateSSCSite ” permission is common to the “Members”, “Owners” and “Visitors” group permission levels, but is not set for the “Limited Access” permission level which is assigned to anonymous users permission level. As you can see, thumbs-up picture doesn’t show up for anonymous users.

  1. <sharepoint:spsecuritytrimmedcontrol runat="server" permissionsstring="CreateSSCSite">
  2. <webpartpages:webpartzone runat="server" frametype="TitleBarOnly" id="Left" title="loc:Left">
  3. <zonetemplate>
  4. <webpartpages:imagewebpart runat="server" verticalalignment="Middle" allowedit="True" allowconnect="True" connectionid="00000000-0000-0000-0000-000000000000" title="Site Image" isincluded="True" dir="Default" backgroundcolor="transparent" isvisible="True" alternativetext="Microsoft Windows SharePoint Services Logo" allowminimize="True" exportcontrolledproperties="True" zoneid="Left" id="g_60b6aa26_dd7b_4973_aaa0_ece2f2110920" horizontalalignment="Center" imagelink="/_layouts/images/thumbsup.jpg" exportmode="All" allowhide="True" suppresswebpartchrome="False" chrometype="None" framestate="Normal" missingassembly="Cannot import this Web Part." allowremove="True" helpmode="Modeless" frametype="None" allowzonechange="True" partorder="1" description="Use to display pictures and photos." __markuptype="vsattributemarkup" __webpartid="{60B6AA26-DD7B-4973-AAA0-ECE2F2110920}" webpart="true"></webpartpages:imagewebpart>
  5. </zonetemplate>
  6. </webpartpages:webpartzone>
  7. </sharepoint:spsecuritytrimmedcontrol>

Default zone (Authenticated User)

Default Zone (Annonymous User)

   
   

FBA zone (Authenticated User)

FBA Zone (Annonymous User)

   

Drawbacks : The main drawback of this approach is that it is mainly useful for content targeting and anonymous users still cannot fully interact with document libraries as we discussed in Part 1. CreateSSCSite is also not granted at “Quick Deploy Users” which means people in that group will also treated like anonymous users. If you can live with that limitation then this solution can be an option for you.

Categories: MOSS 2007 Tags:
  1. March 27th, 2009 at 20:59 | #1

    Great post, thanks
    I’m trying to figure out how to allow an anonymous user to trigger a workflow. I’ve sorted it so they can interact with a blog, and add data to a custom list. But I’m unable to work out how to give them access to run a workflow when they do add data to the custom list.

  2. Avikumar
    May 26th, 2009 at 15:27 | #2

    Hello

    I am using FBA. I have created a resetpassword.aspx page which I am calling from login.aspx. Then I have added solution 1, it works perfect the only problem I noticed that Once I redirect to login.aspx, it logged in automatically.

    I already posted same issue on http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/5cc79671-cc9a-4164-a3db-0d682df0ae9a

    Let me know if I am missing anything?

    Please help me

  3. June 2nd, 2009 at 22:18 | #3

    Hi Reza, Wondering if you could confirm what is default behavior for a windows authenticated zone.

    If anonymous access is enabled and a user with valid credentials accesses the site (internal site), does the anonymous credentials take precedence over the windows identity? The behavior seems to be anonymous access with a sign in link that will prompt, auto logon, etc depending on the browser configuration.

    I assume this is actually at the IIS level. I thought IIS was meant to challenge for authentication then fall back to anonymous as a last resort but perhaps I have this wrong?

    Cheers
    Nick

  4. October 13th, 2009 at 17:22 | #4

    I almost have this working.

    If the user goes directly to the list data entry page (New form) the user is asked to log in, however, if they hit any page on the site first, then go to the data entry page, they do not have to log in.

    Any thoughts?

  5. Jeff Barton
    May 18th, 2010 at 17:48 | #5

    Thank you! I’ve been struggling with permissions for anonymous users for a month or so now, and adding the Guest account gave me just what I needed. Again, thanks!

  6. November 22nd, 2010 at 03:21 | #6

    Hi Reza and Thanks for the great post.
    I Used the first solution and it worked like a charm.
    But there was a little issue.
    “When someone type the address of site and hit Enter, the first entrance is an anonymous user! and after any refresh or clicking on links the Guest user automatically log in!!”
    You can check it here : http://iccs.ir
    How can it the guest user log in with the first entrance??

  7. October 11th, 2011 at 04:46 | #7

    I have observed that car insurance companies know the vehicles which are prone to accidents along with risks. They also know what form of cars are inclined to higher risk plus the higher risk they may have the higher the premium charge. Understanding the easy basics of car insurance will help you choose the right kind of insurance policy that can take care of your wants in case you get involved in an accident. Thank you sharing the ideas on your blog.

You must be logged in to post a comment.