Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
12answers
363 views

Account verification: Only 1 account per person

In my community, every user should only have one account. So I need a solution to verify that the specific account is the only one the user owns. For the time being, I use email verification. But I ...
9
votes
5answers
894 views

How do I expose built-in security and user management to a MVC application?

I have built a MVC website on IIS6. I used the built-in ASP.NET Security without Membership, just the way it was implemented in the template solution. It is easy to secure a contoller or action, but ...
7
votes
1answer
2k views

Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity

We're writing a system that allows a user to change their account password through a web application on our intranet. At first, everything appeared to be running smoothly. During development ...
4
votes
1answer
309 views

.NET 3.5 - System.DirectoryServices.AccountManagement - AdvancedSearchFilter on group?

I'm using the System.DirectoryServices.AccountManagement API to pull a list of groups from AD. These groups all start with the same prefix so it's easy to find them using the prefix and a wildcard. ...
4
votes
1answer
927 views

Extending UserPrincipal; FindByIdentity() fails

Extending UserPrincipal to take advantage of its built-in properties... running into an issue when we overload the FindByIdentity() method. From Microsoft's example at ...
4
votes
1answer
353 views

Searching for multiple users with PrincipalSearcher

Is it possible to search for multiple user names with a single PrincipalSearcher call. Maybe by providing an 'OR' of the requested user names as the filter criteris ?
3
votes
1answer
438 views

Android: Enable imported account contacts programmatically

I'm successfully importing external contacts into the newly created account using this tutorial. The account is setup to re-sync programmatically and yet to be able to see the synced contact unless ...
3
votes
1answer
255 views

How do StackExchange sites associate user accounts and OpenID logins?

I love StackExhchange / StackOverflow's approach to integrating OpenID. As I understand it, the process goes something like this: If a user signs up with an OpenID provider (i.e. Google), ...
3
votes
1answer
1k views

DirectoryServicesCOMException when working with System.DirectoryServices.AccountManagement

I'm attempting to determine whether a user is a member of a given group using System.DirectoryServices.AccountManagment. I'm doing this inside a SharePoint WebPart in SharePoint 2007 on a 64-bit ...
2
votes
1answer
2k views

PreferenceScreen - <intent …/> - Exception - FLAG_ACTIVITY_NEW_TASK

I am new at android developing. The project is about implementing an AbstractAccountAuthenticator with an AbstractThreadedSyncAdapter to sync certain data on a server with a content provider. I made ...
2
votes
1answer
596 views

Social Network (Facebook, Twitter, etc) User Account Integration (duplicate scenario)

So there are definitely many tutorials out there regarding how to integrate various individual social network authentication/registration into existing user accounts. But the scenario I can't seem to ...
2
votes
1answer
389 views

Extending GroupPrincipal and Members property

I want to extend the GroupPrincipal class to handle some custom properties: using System.DirectoryServices.AccountManagement; [DirectoryRdnPrefix("CN")] [DirectoryObjectClass("group")] public class ...
2
votes
5answers
230 views

Allow users to remove their account

I am developing a gallery which allows users to post photos, comments, vote and do many other tasks. Now I think that it is correct to allow users to unsubscribe and remove all their data if they ...
1
vote
1answer
21 views

accessing the initials field using the DirectoryServices.AccountManagement

I'm new to accessing Active Directory and I was advised to use System.DirectoryServices.AccountManagement but I can't find the initials variable any help ?
1
vote
3answers
150 views

Remove user account from administrators group on remote machine using C# and AccountManagment namespace

I have the code: public bool RemoveUserFromAdministratorsGroup(UserPrincipal oUserPrincipal, string computer) { try { PrincipalContext oPrincipalContext = new ...
1
vote
1answer
109 views

Updating Name Field on UserPrincipal

When I try to update the Name field (corresponds to the CN) on UserPrincipal (Principal, really), I get an error "The server is unwilling to process the request" on the call to UserPrincipal.Save(). ...
1
vote
0answers
44 views

How do I determine who has access to modify an active directory group

I'm working on creating an administrative interface that allows managing users in groups in Active Directory. I would like to only show groups to the active user if the user actually has the rights ...
1
vote
1answer
505 views

Handling the C2DM error ACCOUNT_MISSING in Android

The registration for C2DM may result in an error ACCOUNT_MISSING. This error must be handled, according to the documentation, in this way "The application should ask the user to open the account ...
1
vote
0answers
171 views

Creating google account using AccountManager is it possible?

I'm trying to create google account in android I have two questions thanks. Is it possible to add account using "com.google" type account? Because I tried not to create my own Account Authenticator. ...
1
vote
1answer
329 views

Where does Android Account Manager store account specific preferences?

I've been successful in creating various account authenticators / services each with their own preference.xml. These preferences are persistent but I do not know where on the phone they are stored. ...
1
vote
1answer
801 views

Users management on remote Windows server using C# System.DirectoryServices

I've written a program which opens a connection to a remote Windows server in order to manage local accounts (not Active directory). The program executes the following steps: User Creation Add the ...
1
vote
1answer
817 views

Improving performance of System.DirectoryServices.AccountManagement

I have a program that will let me manage users on our terminal server that we use to demo our software. I have been trying to improve the performace of adding users to the system (It adds the main ...
1
vote
1answer
671 views

GroupPrincipal.Members.Remove() doesn't work with a large AD group

I'm using the System.DirectoryServices.AccountManagement namespace classes to manage the membership of several groups. These groups control the population of our print accounting system and some of ...
1
vote
2answers
701 views

How would you configure a catch-all email system using Google Apps?

Using Google Apps for your Domain, is it possible to set up a catch-all address to act as a proxy for various other addresses on a hypothetical virtual mailbox system and, if so, how would you go ...
1
vote
4answers
1k views

DirectoryServices.AccountManagement “old” password still validates after password change

After resetting a users password in Active Directory, if the user tries to log in using their old password, the following code validates as True: Dim up As UserPrincipal = GetAdUser(objContext, ...
1
vote
4answers
1k views

Linux server account management

I am trying to help maintain a few dozen ubuntu servers and am looking for a way to maintain accounts on all the machines. I tried using likewise-open but but found it to be unstable. I would ...
0
votes
1answer
15 views

Find group membership using System.DirectoryServices.AccountManagement

I'm trying to authenticate a user against Active Directory using the types in the AccountManagement namespace/assembly in my .NET 4 application (VisualStudio 2010). Here is the code I have: private ...
0
votes
0answers
14 views

search for account & password management software solution

i running small business and i searching for software solution to manage my client accounts and details, such as: hosting server details, database details & passwords, seo id's, cms access ...
0
votes
1answer
51 views

Searching Active Directory for a user with a certain property using DirectoryServices.AccountManagement

I'm new to accessing Active Directory and I was advised to use the System.DirectoryServices.AccountManagement namespace but I don't know how to search in it for a user with a certain initials. Any ...
0
votes
0answers
45 views

Android Account Manager

Hi i have some questions regarding usage of Android account manager Is it able to get contact and calendar data which are synced from web by 3rd pary application without access control ? Is it able ...
0
votes
0answers
20 views

Assistance with facebook credits, account settings

I recently (last night) made a purchase of facebook credits using CC for a total of $100.00. I received the credits. However, I am unable to "view" my recent puchase activity on my facebook account ...
0
votes
1answer
27 views

The authentication mechanism is unknown

I am accessing user information from active directory. My code is working well on my local PC (having windows xp, not on domain). The code is PrincipalContext ctx = new ...
0
votes
1answer
27 views

asp.net membership account valid until

I'm developing an application that requires user accounts to automatically be disabled if they haven't renewed their membership Is there an easy way to do this with ASP.NET membership framework, ...
0
votes
2answers
272 views

UserPrincipal.FindByIdentity Insists “There is no such object on the server.”

I am currently aiming to implement a read-only role provider for an ASP.NET application based on domain security groups using the utilities in the System.DirectoryServices.AccountManagement assembly. ...
0
votes
2answers
91 views

Change who can join a created ComputerPrincipal account to the domain

I am using C# to create new computer accounts. My goal is to allow IT helpdesk personnel to add computers to the domain safely in the right OU. The way I intended to do this was to have them use a ...
0
votes
0answers
104 views

C# get members of remote machine group with AccountManagement namespace

Is it possible to get different values when my employer and I do this code on different machines and different domains: var usersList = new Dictionary<Principal, ComputerPrincipal>(); ...
0
votes
1answer
121 views

PrincipalSearcher.FindAll returns different results when using a custom UserPrincipal

Given the code below using (var context = new PrincipalContext(ContextType.Domain, SOME_DOMAIN)) using (UserPrincipal userPrincipal = new UserPrincipal(context) { Enabled = true }) using ...
0
votes
0answers
112 views

Virtuemart: Optional Account Creation creates “Silent” Acct; Doesn't allow duplicate

1. When using "Optional Account Creation", a customer is given two (2) option while checking out: 1) Returning Customers: Please Log In 2) New? Please Provide Your Billing Information 2. If they do ...
0
votes
2answers
62 views

How secure should an account activation be?

I'm writing an account activation process from the ground up in Django, and here was my basic thought process: Create a model like: class UserAccountActivation(models.Model): lock = ...
0
votes
0answers
93 views

Check AD Group for user

I have a sub called AddGroupMembership. I call this sub when creating a user and updating a user. I am having an issue when verifying if a person is already a group member. Private Sub ...
0
votes
2answers
189 views

Retrieve AD Custom Attribute in One Batch

Is it possible to use the System.DirectoryServices.AccountManagement library and the PrincipalSearcher class to retrieve a custom attribute for all Principals returned from the call to FindAll()? I'm ...
0
votes
1answer
78 views

PayPal Accounts creation: No redirection to PayPal

I am developing a Django-based website in which each new user creates a wallet to hold his money. I'd like to integrate it with PayPal, so that when the user signs up, a PayPal account is ...
0
votes
1answer
108 views

Looking for a Full S.DS.AM Sample with many AD extensions already written

System.DirectoryServices.AccountManagement can be extended to support additional properties for reading and writing AD properties. Is anyone aware of a full/complete sample implementation that works ...
0
votes
2answers
100 views

How to Optimize Decomposing AD Groups Using C# .Net 3.5

I need to retrieve group members for several hundred AD groups. While the code below gives the right answer, it is very slow. Is there a more efficient approach to decompose these groups to its ...
0
votes
1answer
38 views

Newly created user can't be validated

using(PrincipalContext cntx = new PrincipalContext( ContextType.Domain, "blah.corp.net:389", "OU=customers,OU=web,CN=blah,CN=corp,CN=net", ContextOptions.Negotiate, ...
0
votes
0answers
356 views

Setting userAccountControl and pwdLastSet with the AccountManagement API

I'm trying to find a way to set the "userAccountControl" and "pwdLastSet" attributes on a UserPrincipal object in AD (using c#). I can't see anything obvious. Do I need to add those as a ...
0
votes
2answers
89 views

Misc account management pages in a RESTful design in Rails 3

How do miscellaneous account management pages fit into a RESTful design in Rails 3? For example, a user registers (create action) and is then forwarded to a registration success page (? action) where ...
0
votes
0answers
26 views

Is there a way get a notification to mobile phone, when we sign in to our GMail account?

Is there a way get a notification to mobile phone, when we sign in to our GMail account as the Facebook has? It'll help us to monitor our account. Not to the new mails, Only in the sign in, we need to ...
0
votes
1answer
462 views

Maintain http-session via AuthenticationToken and Authenticator

I'm writing my own Authenticator and AuthenticationService and want to manage/maintain a http-session, consisting of two cookies and one sessionid, per account in the Authenticator-System of android. ...
0
votes
1answer
52 views

Accounting Management Solution

I have a problem on accouting, I need to control the cash flow. Actually my schemma is somehing like this: **invoice_payable** control all my payable invoices **invoices_receivale** control all my ...

1 2