credentials

Retrieve credentials from Windows Credentials Store using C#

时间秒杀一切 提交于 2019-12-17 03:34:45
问题 I simply want to query the Credentials Store (or Vault as it is called in Windows 8) and get the login data. MSDN is really unhelpful in this case, and I also do not want any C++ P/Invoke approaches. I know that similar questions have been asked here a few times, but none of those solutions work in my case. I do not use Metro App programming, so things like PasswordVault are (as it looks) not available. I just create a simple C# WPF desktop application. Ideally, it should work in several

CredentialCache with IIS vs personal development server

戏子无情 提交于 2019-12-14 04:08:03
问题 I have a webservice that I am testing. When I use the personal asp.net webserver, the one with the random port everything works fine. It uses my credentials when I pass DefaultCredentials to an ssrs server to run a report. When I tried to move it to my local IIS server, the DefualtCredentials UserName is blank and the ID that gets pass to the SSRS server is ASPNET. I turned off Annon access and only Integrated Windows Authentication is on. My local IIS is 5.1, so it doesn't have application

Getting Stop-NlbClusterNode : A parameter cannot be found that matches parameter name 'Credential'. error while stopping node

微笑、不失礼 提交于 2019-12-14 04:07:22
问题 I am using the following script to stop the node on a machine. But getting Getting Stop-NlbClusterNode : A parameter cannot be found that matches parameter name 'Credential'. error while stopping node using power-shell script and windows 2012. Also how can I pass a password in this script. Please guide. #This script monitors stopped application pools along with websites on the current host $RemoteHostName = "testserver" #set hostname #import NLB module. In PS v3 these lines should be

Can I change the sign in-hints modal title (from 'Choose an Account' to 'Pre-fill Sign up form')

冷暖自知 提交于 2019-12-13 19:08:29
问题 A possible flow within Smart Lock integration leads to a 'Choose an Account' modal for a new user. Selecting an account on this pop-up pre-fills the sign up page but the user does have to subsequently enter a new password to create an account. I find 'Choose an Account' header to be misleading since it leads a user to believe that they have an account on the app already. Is it possible to change the header of this modal to say something else - maybe something more intuitive like 'Prefill sign

Can't save IdentityProviders.GOOGLE credentials with SmartLock

烂漫一生 提交于 2019-12-13 16:16:34
问题 I'm logging my users into our app using Google+. The actual G+ signing in happens on the server though. I get back some user data such as email and name. I'm using this to store the users credentials as a google account. The issue arises when I try to save it. In the callback to save the creds in "Auth.CredentialsApi.save" it returns no resolution and nothing ends up happening. If I remove the Google IdentityProvider from the creds then it saves without a password. Does anyone know why a

Is there an Android sharedpreferences equivalent in iOS to save credentials (Username and Password)?

早过忘川 提交于 2019-12-13 06:03:32
问题 Coming from Android development I use SharedPreferences to store username and password to login to a server using OutputStreamWriter and HttpURLConnection . Now in iOS I am using NSMutableURLRequest to send the username and password. Is there anything in iOS to store the username and password like SharedPreferences in iOS ? Take in mind that this is sensitive data so it needs to be secure. 回答1: Yes, there is. Usernames and Passwords should be saved using Apples Keychain.Keychain is encrypted

Add Web Reference prompts for credentials with “Discovery Credential” dialog but won't accept valid credentials

人走茶凉 提交于 2019-12-13 04:11:50
问题 I'm attempting to add a web reference to my ASP.Net 3.0 project. This is a reference to the SQL Server Reporting Services web service. I have verified the service is up and running, but when I try to add the web reference in my project, I am prompted for my credentials, which I enter, and then prompted again and again and again. I have to hit cancel to stop the vicious cycle. When I do that the service definition comes up in the window, but the "Add Reference" button is disabled so I can't

OneLogin API credentials

六眼飞鱼酱① 提交于 2019-12-13 03:14:41
问题 Im trying to make a basic call to the ONELOGIN API. After generating the cliend ID and secret with MANAGE ALL permissions, im still unable to connect Generated correctly the ID and secret with the right permissions as per official documentation curl 'https://api.us.onelogin.com/auth/oauth2/v2/token' \ -X POST \ -H "Authorization: client_id:, client_secret:" \ -H "Content-Type: application/json" \ -d '{ "grant_type":"client_credentials" }' i expected to connect, instaead the output is {"status

Nexus credentials in Jenkins with sbt

眉间皱痕 提交于 2019-12-12 17:26:48
问题 I'm trying to make a nexus job to publish a jar to nexus. I'm using sbt with scala, and I have a configuration file with the required credentials in it. I'm having trouble when I run sbt publish , it's giving me unauthorized errors. I need to be able to link my credentials to my sbt build. I'm trying set the target of my configurations to ~/.ivy2/.credentials but it doesn't seem to be working. Does anyone have any advice on how to fix this? Thanks. 回答1: You can put all your credential files

What exactly setenv.sh is used for in Tomcat?

浪尽此生 提交于 2019-12-12 16:27:11
问题 I searched a lot but couldn't find any useful information about this: What exactly setenv.sh is used for in Tomcat ? Let's say we have a REST API (built with Java EE or Spring) which uses some parameters/variables like AWS Credentials, Database Credentials etc. Does it make sense to parametrize the application with environment variables for these things I mentioned above and put their values to env vars on setenv.sh for each Tomcat instance in case we use more than one instance and with