|
Having an issue with random individuals trying to access an intranet site with a security certificate. Most users are able to simply select their Smartcard/CAC certificate, enter the pin number and then are granted access to the site's pages.
However,...
Started by aimlessWonderer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I understand your development environment works as you want and that your production... .
Also check that the certificates are valid (not expired) and otherwise similar - same issuer, PIN not locked etc .
Check the functioning of the card with other applications.
|
|
"User A" is logged on My application recognizes Environment.Username as "User A"
Now in Windows, I click on Switch user ... "User B" logs on
"User A's" processes are still running Application run by "User A" still says Environment.Username is "User A"...
Started by SaM on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An application that supports the Fast User Switching feature by using Visual Basic .NET or Visual Basic 2005 in Windows XP ?
See also Architecture of Fast User Switching
There is no such thing as the currently active user since ....
|
|
Hello,
I'm using Rails and I have a User Controller for creating new users. To view current users I have to type something like:
mysite.com/users/USER_ID
I want to change to:
mysite.com/USER_ID
What is the best way to acheive that?
Thanks,
Tam
Started by Tam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
users', :action => 'show'
And then implement the show method - your user id will be in params[:id]
To improve a bit your generated URLs, you could also add a to_param method to the User model to get.
|
Ask your Facebook Friends
|
I have
$user = $this->Auth->user();
which retrieves the current user from the session.
I want to make an admin user be able to 'act as' a customer. And I was hoping to be able to just replace the customer_id in the user session when they enter the...
Started by Jack B Nimble on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are simply checking the customer_id on the session to determine if that user is of the type customer, instead of:
$user['User']['customer_id'] = 4;
I would try:
$this->Session->write.
|
|
Problem: to copy a directory tree from the "me" master user to the encrypted harddrive of the "cs"-user:
su cs bash-3.2$ cp -R /Users/me/cs_project /Users/cs/ cp: /Users/cs/cs_project: Permission denied cp: /Users/me/cs_project/h_mark: unable to copy ...
Started by Masi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
/Users/me/cs_project /Users/cs/
Is the "me" user an administrator? If so, you can log in as me.
Whatever user you're running this command under needs permission to read (and search dirs, i.e.
|
|
I want to represent some data visually, using a visualization component. Now I want to represent this situation in a visual way: Suppose I have an web application. I want to get an overview in a visual way about how users are reacting to it.
Say:
in Day...
Started by Sabya on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It sits on top of (total users at day start - new users....
Top of the stack is new users in a day.
Stacked bar.
Personally I would use a line for the users in a day and a bar for the number of new users/total users.
|
|
How can i check if a user is logged in in user control with asp.net mvc
usually on a view page i use this
<% if (User.Identity.IsAuthenticated) {%> //Do something <% } %>
but i can't get this done on a user control
Started by Yassir on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This requires that the User calling the Method being authenticated..
Attribute.
|
|
In my application I run subprocesses under several different user accounts. I need to be able to read some of the information written to the registry by these subprocesses. Each one is writing to HKEY_CURRENT_USER, and I know the user account name that...
Started by gdm on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try finding the id by matching the HKEY_USERS{id}\Volatile Environment\USERNAME key to the username of the user (by enumerating/iterating over the {id} as if it was HKEY_CURRENT....
HKEY_CURRENT_USER maps to a HKEY_USERS\{id} key.
|
|
I am new to the Administration part of the Oracle server,Just want to know will deleting a user means data related to that user will also get deleted? Thanks you.
Started by vipin k. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the user has put data into other ....
If you drop a user, their schema and all the data in it goes too.
Every user in the database has a corresponding schema, with tables, indexes and so on.
Depends upon what you mean by "related".
|
|
I'm using ASP.NET MVC.
I'm also using the MySQL connector and providers to connect to a MySQL database, which is using the ASP.NET Membership schema.
I also have a second table called 'user' which contains all the additional user data, company_id etc....
Started by h_a_z_ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Or you can store Membership ID as the key for your Users.
But Membership user can persist ID of your User so you can bind these two together.
Membership user and your User are two different things.
|