0
votes
1answer
94 views

Consuming On-Prem SQL Data from SharePoint 2013 Online (Office 365)

At a high level, What's the recommended Development model if we want to consume local (On-Prem) SQL data from Office 365 SharePoint 2013 Cloud application? Say we have a custom SharePoint List Form ...
0
votes
2answers
152 views

How to programmatically determine if anonymous access is enabled for a SharePoint 2010 Web Application using C#?

In Central Administration\Manage Web Applications, there is the ability to enable anonymous access on a web application through the authentication providers. Is there a way to programmatically ...
0
votes
1answer
251 views

Claim auth from ADFS

I asked this question @StackOverflow[1] but maybe this is a better location for it: I try to connect to a SharePoint Online instance via a WPF-Application (C#). I have found this article[2] that ...
0
votes
2answers
2k views

Unable to login from custom login page - FormsAuthentication.RedirectFromLoginPage fail

I created custom login page for FBA access (SP 2010). In related custom code i inherit Microsoft.SharePoint.IdentityModel.Pages.FormsSignInPage class. Problem: I would like to login in sharepoint ...
1
vote
1answer
340 views

SPClaimsAuthMembershipProvider returns only aspnetdb users - WHY?

If I use : MembershipProvider membership = Membership.Providers["AspNetSqlMembershipProvider"]; MembershipUserCollection msc = membership.GetAllUsers(0, 200000, out totalnumber); I got all userS ...
1
vote
1answer
194 views

Combination of anonymous and windows authentication on sharepoint 2007 web

is it possible to enable anonymous access only for a specific library? The script library should have an anonymous access whereus the page library should use the windows authentication.
0
votes
1answer
1k views

ClientContext security won't work with claims-based SP2010 security enabled

I want to connect to SP2010 server with claims based authorization via client context. But I have security issue. First I didn't managed to connect with default credentials. Then I wrote: ...