Home > MOSS 2007 > Guest Account Enabler – Code Download and more!

Guest Account Enabler – Code Download and more!

March 30th, 2008 Leave a comment Go to comments

Almost two months ago , I wrote three blog posts (part1,part 2 and part 3) about Anonymous Users In SharePoint, how to set it up ,challenges you might face dealing with these creatures and couple of solutions. Since then , I have received quite a few emails from people asking for two main things :

1) The source code for the solution I provided in part 3.

2) If there is any way to NOT use global.asax in a farm installation where there are multiple WFEs sitting behind a load balancer. In this case , the feature responsible for copying the global.asax file from the feature folder to the root folder of your SharePoint web application (hosted in IIS) only copies the global.asax to the WFE server on which you activate the feature. For the rest of WFEs , you need to manually replace the global.asax files. Not acceptable! Actually I am covering this issue in more details in my upcoming post : The Importance of Network Load Balancing.

Please download the source code from the link below. Take a look at the two projects included in the download.

Source Code
 

This download contains two folders:

I) GuestAccountEnabler_GlobalASAX

This folder contains the source code for “Guest Account Enabler” functionality as a feature scoped at a site collection. The fact that it is a site collection feature might introduce some permission issues (read the comments at FeatureActivated and FeatureDeactivating methods) wen using global.asax approach. Good news is that nothing prevents you to change the scope of the feature to Farm or WebApplication or run the code in FeatureActivated and FeatureDeactivating methods in an elevated context to make sure that activation and deactivation methods are executed with required access level to the file system. Bottom line is , it is not a fully automated approach for Farm installation. Please make sure you also read the ReadMe.txt for configuration steps.

II) GuestAccountEnabler_HttpHandler

To overcome the issues mentioned above , I went a head and implemented the Guest Account Enabler functionality in a Http Module. Remember, global.asax is just a specialized Http Module , but by placing our code into a Http module instead , it is much easier to share it between multiple Web applications plus it introduces much easier deployment in a farm installation. Our Http module sits on the top of the Http Request and check the authentication cookie , if It is not presented and the feature is enabled it injects the virtual “Guest” account into the current request and forces a new http request (reentering the http pipeline) to pick up the new [virtual] Forms identity. Please remember to read the ReadMe.txt file for configuration steps spscific for Http Module approach. Here is the gist of it:

  1. public class GuestModule : IHttpModule
  2.     {
  3.         public virtual void Init(HttpApplication context)
  4.         {
  5.             // Subscribe to events.
  6.             context.AuthenticateRequest += new EventHandler(context_AuthenticateRequest);
  7.         }
  8.         void context_AuthenticateRequest(object sender, EventArgs e)
  9.         {
  10.             OnAuthenticateRequest(((HttpApplication)sender).Context);
  11.         }
  12.         public virtual void Dispose(){}
  13.         /// <summary>
  14.         /// Authenticates the authorization request.
  15.         /// </summary>
  16.         private void OnAuthenticateRequest(HttpContext context)
  17.         {
  18.             if (context == null)
  19.                 throw new ArgumentNullException("context");
  20.             //Extract the forms authentication cookie
  21.             string cookieName = FormsAuthentication.FormsCookieName;
  22.             HttpCookie authCookie = context.Request.Cookies[cookieName];
  23.             if (null == authCookie)
  24.             {
  25.                 // There is no authentication cookie. Check to see if Guest Account feature is activated
  26.                 // If Feature is Activated, ValidateUser would return Guest Account Context
  27.                 if (Membership.ValidateUser("Guest", ""))
  28.                 {
  29.                     string requestedUrl = Uri.UnescapeDataString(context.Request.Url.ToString());
  30.                     FormsAuthentication.SetAuthCookie("Guest", false);
  31.                     //Force a new request (reenter the http pipeline)
  32.                     context.Response.Redirect(requestedUrl);
  33.                 }
  34.             }
  35.         }
  36.     }

As described in the ReadMe.txt , you need to register this Http Module in your extended site (the one that is protected by FBA). The good thing about this approach is that AuthenticateRequest event receiver only gets executed for your FBA site and only when the authentication cookie is not presented. That’s pretty much all about it !

Wait! I have included two more things in the download files.

1) It is no biggie , but you can see how to localize a feature’s title and description.
2) Have you ever heard about Minimal master page or minimal site definition (I wish there was one 😉 ) ? Both projects have a dummy Membership provider which I have called it “Minimal Membership Provider”. Well, eventually you will have to merge the Guest Account Enabler functionality into your existing membership provider , but to start with, you needed an authentication provider , right? I created that provider to give you the ability to quickly test the sample code. It is also using a dummy connection string so don’t even need to bother changing it to match your environment. Just put them in your Web.config and that’s it!

Categories: MOSS 2007 Tags:
  1. Jessica
    May 7th, 2008 at 12:19 | #1

    Will this work on a My Site that has been set up with FBA?

  2. Reza Alirezaei
    May 7th, 2008 at 12:45 | #2

    Jessica,

    I am not sure what you mean by MySite here. If you mean having a MySite for guest account , then I would say no! because guest account doesn’t reside in the identity store , therefore is not imported to the the profile database, therefor there is no MySite associated with it. But, in order to get this working (althogh it doesn’t make sense:)) , all you need to do is to add the guest account to your identity store , from here this account is no different than any other account who owns its MySite. HTH

  3. Bryan
    May 8th, 2008 at 13:21 | #3

    I’m trying to implement this code on an extranet setup with FBA. Do the snippets of code get pasted into the web.config’s in addition to the providers and connection strings setup for my FBA? If I do this I get an “An Unexpected Error Has Occurred.” Furthermore, do we need to register the assembly in our web config?

  4. Reza Alirezaei
    May 8th, 2008 at 13:54 | #4

    Bryan ,

    it depends which solution you are following. If you are following the Global.asax one , all you need to change is the global.asax file , no need to register anything. Be aware of the deployment issues I explained above. If you are taking the httpmodule approach , same as any other module and handler you write for SharePoint , it must be registered in web.config file. BTW, if you enable trace and turn off custom errors in your Web.config file , you will see the real error. “An Unexpected Error Has Occurred” which SharePoint renders for ya is not helpful , right? 😉

  5. Jessica
    May 8th, 2008 at 14:02 | #5

    What I mean is, I have “my sites” set up with FBA however I need to open it up to anon users. There seems to be a restriction with my sites and anon users (no matter what, anon users can not view the public profile page of a My Site…..so I’m wondering if this solution will work for me. Essentially when someone hits it anonymously – it will log them in with an actual account that has been created in the data store (SQL in my case) and I can lock that user down to read only. I’m actually in the process of testing it now but I thought maybe you had encountered this scenario before. Seems like this will work in theory because if I login with my read only account using FBA I can see the public profile page fine. It just seems to be truly “anonymous” users it doesn’t like.

  6. Bryan
    May 8th, 2008 at 14:33 | #6

    I ended up deploying both. Is there an easy way to undeploy the ASAX solution?

  7. Bryan
    May 8th, 2008 at 14:51 | #7

    Alright looks like I got the errors to go away, but turns out now that it goes to the page but doesn’t log in as the Guest account. I did have to edit my group policy to enable the account in AD. Anything else need to do for the guest account?

  8. Reza Alirezaei
    May 8th, 2008 at 14:58 | #8

    To undeploy the asax solution , you just need to deactivate the feature and it should rollback your global.asax file to its original state. Bryan , this is a solution for FBA sites , I am confused why you have to deal with AD!!!

  9. Bryan
    May 8th, 2008 at 14:59 | #9

    What guest account then does this solution impersonate? Do I need to create a guest account in my FBA users called “Guest”?

  10. Reza Alirezaei
    May 8th, 2008 at 15:02 | #10

    You could create the Guest account in your FBA identity store OR you can simulate one. look at the sample membership provider included in the project and see how I treated the guest account sent to the membership provider (either from global.asax or httpmodule) and make it silently authenticate. Please please read the all the posts – Par1, Part 2 and Part3.

  11. Reza Alirezaei
    May 8th, 2008 at 15:09 | #11

    Jessica ,

    What you need to do is to implement the same solution for your Shared Services provider and the web application that hosts your mysites. This will introduce the dummy Guest account (representing your anonymous users) to these applications. Then what you need to do is to give it the right permissions to view MySites and you shoulod be good to go…. looks like If you can implement this , I should add it to the list of advantages of using this solution 🙂

    Last but not least, this Guest account has nothing to do with the Guest account at OS level. Have fun guys!

  12. Bryan
    May 8th, 2008 at 15:32 | #12

    Thanks for your help Reza. I just modified the global.asax and all is good, except the users actually have to click the “Sign In” button to get logged in as “Guest”. Do you know of anyway to auto-sign in a user without having to click on Sign in?

  13. Reza Alirezaei
    May 8th, 2008 at 15:47 | #13

    np, glad that I could help. I guess I saw this issue in one of my friend’s machine a while back ago. It doesn’t work that way in my WSS environment. Are you using moss? what about the Windows zone? when you log in to your windows zone , does it automatically log you in? If not look into your browser settings… httpmodule approach shouldn’t have this issue because I force reentering into the http pipline.

  14. Bryan
    May 8th, 2008 at 15:52 | #14

    Hmm interesting. I’m running WSS 3.0 with SP1 and can’t seem to get it to work. Had a friend try also and it did not auto-login. I’m only using the Global.ASAX solution and deactivated the HTTP one since it wasn’t working for me at the time. I’ll keep messing with it.

  15. Jessica
    May 12th, 2008 at 13:20 | #15

    So I am trying to impelement the ASAX solution but not having any luck. I deployed the solution file to the Sharepoint Server. I already had FBA set up so I just added an account called guest and copied the provided code into the global.asax page (since I’m doing mysites I did the mysite app and the ssp) but I’m confused on the connection string. Your comments to Bryan above indicate that he didn’t need to make any changes to his existing FBA connection string. Is that correct? Nothing happens and if I press the “login” button I just get an error that says “server could not log you in….check name password…try again”

    Any ideas? Did I miss something. Maybe its just the Mysite implementation. So far I’ve learned everything with Mysites works different than a normal site collection.

    Thanks

  16. Reza Alirezaei
    May 12th, 2008 at 13:57 | #16

    Jessica , please describe what you expect this feature to do for ya. For example:

    1) I have a Web App extended with FBA
    2) I have MySites web application also extended with FBA
    3) I have introduced FBA setting to both extended zones
    4) I have activated Guest Account Enabler on the root site collection of both Web Applications
    5) I want when anon users log in to my Web app , there should be a mysite link there
    6) when they click on that link there should be redirected to the mysite for anon users

    If this is your business requirement and current implementation, then here is my answer:

    Reza: This flow doesn’t make sense to me

    If instead of number 6 , you want this:
    6) When anonymous users log in and they click on anyones link (should that person has a mysite) , I want them to be able to see that person’s my site.

    Please describe it , step by step, to me so I can help you.

  17. Reza Alirezaei
    May 12th, 2008 at 14:02 | #17

    Jessica ,

    You first need to make sure , your users coming from your backed identity store can successfully log in before you can proceed with this solution. If you are getting a generic error like what you described , you should debug and hunt down the issue. What you are getting has nothing to do with this solution. Debug Debug Debug 🙂

  18. Thomas Goddard
    August 8th, 2008 at 15:21 | #18

    I setup this solution and the anonymous users are now logging in as guest. I have to problems now. The first problem is that when I submit a custom form from internet explorer, I receive the error message “The data source control failed to execute the insert command.”. I looked in the diagnostics logs and found this:

    08/08/2008 12:58:33.40 w3wp.exe (0x0C98) 0x0D08 Windows SharePoint Services General 8kh7 High The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.
    08/08/2008 12:58:33.40 w3wp.exe (0x0C98) 0x0D08 Windows SharePoint Services General 8nca Verbose Application error when access /Pages/e_2009_abstractSubmit.aspx, Error=The data source control failed to execute the insert command. at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex) at System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit() at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformCommit() at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e) at Microsoft.SharePoint.WebControls.SaveButton.OnBubbleEvent(Object source, EventArgs e) at System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) at System.Web.UI.WebControls.Button.OnCo…
    08/08/2008 12:58:33.40* w3wp.exe (0x0C98) 0x0D08 Windows SharePoint Services General 8nca Verbose …mmand(CommandEventArgs e) at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    So, I test the form with the Administrator user and I am able to submit it. The odd thing is that I am also able to submit the form using the guest account in Firefox with no such errors like the ones above. If I disable the workflow on the list, both IE and Firefox submit the form fine.

    The other issue I am having is that I am unable to remove the “Browse User Information” from the permission level that I created for the guest user because all pages then display an Access Denied message.

    Any help would be greatly appreciated.

  19. burt
    August 19th, 2008 at 18:34 | #19

    I have the HTTPModule working and logging in but I am not able to resolved the Guest Account in any zone or in People Picker as you show in Part 3. I had a similar problem with LiveID that I resolved by running the “stsadm.exe -o addwindowsliveauth” command twice. I would appriciate any suggestions to resolve this problem.

  20. Reza Alirezaei
    August 19th, 2008 at 19:59 | #20

    burt,

    Can you resolve all the other accounts coming from your identity store, or just the Guest? are you injecting *Virtual* Guest or Guest exist in your underlying identity store?

  21. burt
    August 20th, 2008 at 10:10 | #21

    There are 2 other Quest accounts. The domain\guest and BUILTIN\guest. Why would it matter if I had dozens of guest accounts? Shouldn’t I be able to enter the MinimalMembershipProvider in the “Select People and Groups” dialog and have it resolve the quest account?
    I would like to mention that I think your Guest Account Enabler is one of the better learning presentation I have seen especially since you added the packaging and deployment. Vary nice!!

  22. Burt
    August 22nd, 2008 at 13:09 | #22

    I finally got the Guest user to resolve in the “Select People and Groups” dialog. I rebuilt everything on a cleanly built server. I think the problem was that I was working on a VHD virtual server that was shared with several other developers so it had its computer name changed in order to not have a name conflict on the domain. Thanks again for the great presentation.

  23. Reza Alirezaei
    August 22nd, 2008 at 16:01 | #23

    oh , great! I am glad you got this working…

  24. October 3rd, 2008 at 12:22 | #24

    Thanks to your great article I was able to finish my HttpHandler that directly adds authenticated users and user profile data to SharePoint using a similar Minimal Membership Provider. This eliminates the need to manually add the users using the SharePoint Central Administration page. If you don’t mind I would like to share my code with anyone that was looking for this functionality. You can find it at my blog How to directly add users and user profile data to the SharePoint Store using a Minimal Membership Provider.

  25. Reza Alirezaei
    October 3rd, 2008 at 12:33 | #25

    Burt,

    What you have done is great and thanks for sharing this with the rest of us.

    Would you mind helping me understand that what you are doing differently than Windows Live Autehntication (WLA) SDK on codeplex?

    http://blogs.msdn.com/sharepoint/archive/2007/10/15/announcing-community-kit-for-sharepoint-windows-live-authentication.aspx

    Thanks Burt and great work 🙂

  26. October 3rd, 2008 at 14:00 | #26

    Reza,

    The Windows Live Authentication (WLA) SDK is designed to add authenticated users and profile data to a Membership Provider User Profile List. The problem is that SharePoint Lists will have performance issue when its filled with too many user entries.

    I found that once a user is added to SharePoint, some of the user’s meta data(such extracting user’s email when sending an alter) can be looked up from the hidden user information list and not the Membership Provider User Profile List. When you manually go to add users in the SharePoint Central Administration page and enter the prefix Membership Provider name followed by the login name like LiveID:login_name, SharePoint normally searches the Membership Provider User Profile List for the user names. I found from my testing that once the user logs into SharePoint, some of the user’s metadata are saved and later is retrieved and if the user is not found, it then requests is served by the Membership Provider.

    The only reason I was building a Membership Provider was to add an authenticated user to SharePoint. I didn’t need an addition Membership Provider User Profile because I already managed users from a different site. By stubbing out your Minimal Membership Provider I was able to work around SharePoint’s Forms Authentication Membership Provider requirement. I am still testing it but so far I have not found any problems. I will post back if I find any.

    Burt
    Burt’s ASP.NET Developers Blog

  27. Reza Alirezaei
    October 3rd, 2008 at 15:31 | #27

    Burt,

    SharePoint keep some part of user’s metadata in hidden list called User Information List and obviously if you are in MOSS the rest in profile database. This list is designed in a way that each SITE COLLECTION has its own , so in WLA , all it does it stages the user information in a list and from there it pushes the same information to all site collection’s hidden User Information Lists in an asynchronous manner. As far as I have tested and this is after setting up Windows live for min 7 different sites (i.e. http://www.energizeit.ca/Pages/Default.aspx ), there is absolutely no performance issue with that staging list. Quering are all CAML based and last time I set up , on a single machine it worked like a champ for 1700 users!

    God forbid, I am not trying to question your solution , but just trying to see what value added your solution is offering over Windows Live Authentication (WLA). Please feel free to tell me if I don;t get it 😉

  28. October 12th, 2008 at 14:59 | #28

    Our worldwide site has about 100,000 members which is more than a SharePoint List can handle. There is a good article by Joel Oleson Scaling to Extremely Large Lists and Performant Access Methods that reviews the findings by the paper “Working with Large Lists in Office SharePoint Server 2007” which evaluates performance characteristics of large SharePoint lists under different loads and modes of operation.

    The added value is being able to add users automatically to SharePoint when the user logs in. Rather than build a complex SQL Membership Provider, I found it easier to add the user directly to SharePoint. I had no desire to add 100,000 users manually to SharePoint and did not want to build a complex SQL Membership Provider as a staging layer if it wasn’t necessary. So, I found an easy way to add the user directly to SharePoint and thereby simplify my code. Stubbing out the Membership Provider was merely a demonstration to show it could be done. adding users directly to SharePoint using your Minimal Membership Provider can also be done in much the same manner by using the AddUserToGroup() method from the web service UserGroup().

    Please try out the code from my site, you may find it as interesting as I found your code example.

    Burt

    “Burt’s ASP.NET Developers Blog”

  29. Reza Alirezaei
    October 13th, 2008 at 04:50 | #29

    Burt , it’s much better now, good job! two questions though:

    1)What makes you not use the name “hidden user information list” kept at each site collection? the reason I am saying this because that’s the exact term which is common.

    2) How have you distributed 100,000 users across your web application? in how many site collections?

  30. November 2nd, 2008 at 18:01 | #30

    Reza

    Sorry to take so long to get back to you. Your question about why I am not using the hidden “User Information List” set me on a discovery quest that I just now completed. The short answer is I am now using the WSS “User Information List” site collection.

    When I started this project I did not know about this list so I put the user profile information in the MOSS User Profile database and eventually synchronize this information scheduler would update the WSS “User Information List” site collection which would show up in the People and Groups list. Know that I know how to programmatically update the WSS “User Information List” site collection I commented out the other code that saves to the MOSS profile database.

    As far as the number of distributed users they are split up using site Variations based regions. I am not sure how this will impact performance yet. That is my next project. I’ll keep you posted of my findings.

    I also renamed my blog article “Add Users to Groups in a Forms Authentication (FBA) SharePoint Site” [http://icodehead.blogspot.com].

    Burt

  31. November 18th, 2008 at 22:49 | #31

    Reza,

    I completed my work on “How To Add Users to Groups in a Forms Authentication (FBA) SharePoint Site”. I wrote a routine to add 500,000 users to the Viewers group and also added user data to the AllUsers profile. It took about 6.5 hours to complete. I spent a day testing and have found no performance issues other than those normally associated with SharePoint.
    Now I am starting work on a team build environment using MOSS 2007 and Team Foundation server and writing deployment scripts for installing GAC dll’s and Features. Thanks for all your help.

    Burt
    “Burt’s ASP.NET Developers Blog”

  32. Johannes
    February 26th, 2009 at 10:52 | #32

    hello Reza,

    i think i really don’t get it – and i thought i understood my FBA mode before…

    my obvious question is one burt had before, which didn’t get answered:
    “I’m trying to implement this code on an extranet setup with FBA. Do the snippets of code get pasted into the web.config’s in addition to the providers and connection strings setup for my FBA?”

    Because if i add the code snippets (so got 2 connectionsstrings and 2 membership providers), what happens is as follows:

    1) if i run my site (like http://www.abc.com), the login.aspx is loaded
    2) no matter what i enter i get logged in
    3) but i don’t have any access

    there are 2 possible errors, but until now i didn’t got the solution:
    1) if i set the MinimalMembershipProvider as DefaultProvider i can’t use my real Provider
    2) i have to modify the connectionstring of the MinimalMembershipProvider – but i don’t know where it has to point to. Do i need to setup a real SQL DB or something equal for this?

    really puzzled,
    Johannes

  33. Reza Alirezaei
    March 2nd, 2009 at 00:07 | #33

    @Johannes
    minimal membership provider is just an example.You have two options:

    1) Use the global.asax solution and add Guest account to your membership repository. In this case you have some copy and paste in global.asax. No managed code required

    OR

    2) if you don’t like this appraoch (and quite frankly you shouldn’t) then again you have two options:

    2-a) you can change your membership provider logic: Incorprate the httphanlder logic into your membership provider
    2-b) you can NOT change your membership provider logic: user the httphandler above

    Either cases, look at what Burt offers as well.

  34. March 2nd, 2009 at 12:12 | #34

    Johannes

    The reason you add the MinimalMembershipProvider and connectionStrings to both web.config files is so the People Picker will be able to find the Guest user when you assign it to a Sharepoint group that has Read permissions. The connectionStrings is just a dummy reference and not used.
    I think the reason any login is working is because of the anonymous account. You can remove the anonymous access once you have:
    1. Activated the “Guest Account Enabler” feature found under Site Actions > Site Settings > Site Collection Features.
    2. Gone into the People Picker and assigned the Guest user to one of the Sharepoint groups that has Read permissions.

    Burt
    Burt’s ASP.NET Developers Blog

  35. May 5th, 2009 at 17:07 | #35

    Something has gone fundamentally wrong, and I’m very much hoping for a nudge in the right direction. At present, I’m ready to tear the whole site down.

    I followed all instructions to the letter, though may have missed some. I loaded the solutions using the bat file, and altered by web config files, but when I returned to the FBA extension site (which had worked for months), errors indicated it couldn’t find default.aspx, or I didn’t have rights to view. I never saw a web part loaded, but briefly saw a feature, which has since disappeared. App logs say SQL doesn’t have rights needed for OGKW, error 7888, the Virtual Directory for the Anonymous site doesnt have a Global ASAX file (the default directory does) and I’m apparently missing the articles indicating where to enter a guest account, and probably shouldn’t have loaded User1 on to the Machine account and anon access site, which I did as the LAOADP. I retracted the solution, then deleted, and wondering if I should reload the whole site and skip this, or what. Again, even a general direction to take would be appreaciated. The part is exactly what I need.

    Only G__ Knows
    Last Act of a Desparate Man…

  36. Dmitriy
    May 18th, 2009 at 09:45 | #36

    Thank you for your example. before using your solution, I would like to know whether the work created in WOrkflow shrepoint Designer 2007? If it is then which of the two solutions for the FBA? Thanks

  37. Reza Alirezaei
    May 18th, 2009 at 12:08 | #37

    @Dmitriy

    Workflow?!! Sorry I don’t follow.Both solutions can be used in FBA zones. One requires changes to global.asax (less recommanded) the other one is using a http module (more recommanded :))

  38. Dmitriy
    May 20th, 2009 at 08:40 | #38

    Thank you Reza Alirezaei

  39. Prasanna
    October 28th, 2009 at 23:15 | #39

    I need help/suggestion for the site.

    https://abcd.com sharepoint site had
    Home > Site Settings > Permissions > Anonymous Access
    Anonymous users can access:

    Entire Web site

    Due to which our site Landing page was https://abcd.com/Pages/Default.aspx which is correct.

    There was serious issue that Home > All Site Content ,Layouts , and other document library were accessible to anonymous users without authorization from google search and posed a strong security threat.

    So I modified Home > Site Settings > Permissions > Anonymous Access

    Anonymous users can access: to

    ‘Lists and libraries’ replacing ‘Entire Web site’

    So anonymous access to Home > All Site Content and other document library was restricted.

    But our default landing page when we open the site became Login.aspx

    Client has requested us to restore back to default.aspx page as landing page to site.

    I have tried two options to solve the above problem

    1) Replace in Web.Config to

    which solved our landing page issue but after we login it still showed login page and not moved to defaulpage having requisite menus.

    2) Added ‘webconfig.xyz.xml’ file in C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG

    when i run stsadm -o copyappbincontent to apply changes to site farm I got the following error

    The web configration file, C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\config\webconfig.dlc.xml, does not have element “configuration/configSections/sectionGroup[@name=’SharePoint’]” or it is invalid.

    I have followed Point 2 steps from below link.

    http://technet.microsoft.com/en-us/library/ee191479.aspx

    As site is Live I request you to give suggestion how to get default.aspx as landing page for my FBA sharepoint site.

  40. Brian Fung
    January 17th, 2010 at 18:42 | #40

    Forgive me for this newbie question…but I’m confused over the instructions left by the Readme.txt while deploying this solution.

    I’ve successfully deployed the solution for GAEHttpModule and activated the feature…but the readme asks me to add the following to the web.config:
    -a connection string to an unknown database
    -MinimalMembershipProvider which using the above connection string
    -GuestModule HttpModule

    I get a 500 error when I just cut & paste the code snippets from the ReadMe.txt into my web.config. Am I suppose to create a database that the connection string should point to? What am I missing to make this solution work?

  41. Rick Roth
    January 26th, 2010 at 14:11 | #41

    @Prasanna
    We are also getting the same error on one of our two web servers.

    The other web server is fine. We are simply copying the web.config files from the good server to the bad server as this is a one time change, but I would be interested in knowing if there is a better solution of if someone has determined a reason for the problem.

  42. Elena
    November 4th, 2010 at 11:25 | #42

    Hi, I’m succesfully using your HttpHandler & SimpleMembershipProvider on a Sharepoint 2007 server.

    Now I have the same need on a site built on Sharepoint 2010… I’m wondering if I could use the same solution or not?

  43. Jambou
    November 16th, 2011 at 11:40 | #43

    @Elena
    Does this solution work with SharePoint Server 2010?

  44. LB
    February 3rd, 2013 at 06:33 | #45

    hello Reza,
    I want to attach a file to SharePoint list in anonymous mod but ask me a username and password.
    can i use your solution to attach files without entering username and password.

You must be logged in to post a comment.