account

Login to different accounts viz. yahoo/gmail/facebook

I have a problem: take username and password from user from text filed. Automatically sign in to yahoo/google/facebook account and display the webpage in webview. Basically I dont want user to directly put username and password to yahoo account but go through my application. Here is my code: String login = "abcd"; String pwd = "123...

creating service accounts in windows server 2008 R2

hello. how can I create a service account such as sql service in active directory on win server 2008 R2? I dont know in which part of administrative tools i can find it. ...

asp.net user login question

In an asp.net webform app, I need to restrict the logged in user to show data only for their company. This is a primary key of my topmost table. How to I set that based off the user. I imagine I would have another table with some user ID mapped to company ID? ...

Is a random string a good verification code

I'm generating a verification code to be used for account activation. You've probably seen this sort of thing before. My question: if I were to generate this code with a complex formula like this: md5(md5(time().'helloguys'.rand(0,9999))); Is it really any better than generating just a random string of 32 characters and numbers lik...

Create personal page for every user, PHP

What i want to do is to create an web page for every user when they signup on my page. Example: www.someweb.com/username and this will be their webpage. I know that this can be done easy with mkdir() and other related functions, but the problem is that my root folder is not chmod 777 and i don want to chmod 777 this root folder becaus...

How can I create read-only FTP access for user on Apache server?

I have a web site with lots of pages of photography. In order to allow visitors to download groups of photos without having to save each one individually, I want to create a read-only FTP user that will be publicly available. Via the control panel for the host, I can create "regular" FTP user accounts, but they have write access, which ...

Account provisioning after installing sql server 2008

Hi, im using windows server 2008, while installing sql server 2008, in account provisioning, i added current user. but now after installation, i added new user in windows. now the problem is in not able to login into sql server 2008. so how do i add the new user in account provisioning in sql server 2008. check the screenshot for more ...

Send a meetingrequest using another account failed

I've tried to send a meeting request using another account in Outlook using an Outlook Addin. The organizer should be that account, and the meeting must be in the calendar of the account. I've created the following code: Account myAccount=null; foreach(Account objAccount in Application.GetNamespace("mapi").Accounts) if(objAccount.Smt...

Certificates: Cannot find the certificate and private key for decryption Error when sign

I work in company with many servers and Pcs for developers. Servers are win2003, PC developers Windows XP. In a server Win2003 named preiis01, in preproduction environment, other people in company install a client certificate using any other user (domainCompany\adminsystems) for logging in server preiis01. Anyone admin uses the user "d...

Android google calendar permission issue

Hello, I am using google-api-client to access Google calendar. Following are the permissions in my manifest file. <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <uses-permission android:name="android.permission.USE_CREDENTIALS" /> <uses-permis...

how to get the label associated with an android account ?

I want to get the displayed name, id the label, that is associated with a android account. For instance, when you create a new contact, you have to precise the type of the account and to do so, you can pick up one of the account that enable contact synchronisation, or the 'telephone' type. I have search thru the AccountManager, Contact...

Java service can't list files in directories

Hello everyone. I'm doing a Windows Service in Java, this service list the files in a directory and write the results in a file. My problem is that when i call Java.File.isDirectory() when the service is running it always results false (It works well when i run the service manually as any other program). Besides, if i try the following: ...