credentials

Subclipse + SVNKit keeps asking for credentials when connecting through svn+ssh

半世苍凉 提交于 2019-12-05 08:15:38
I'm using Subclipse to connect to an SVN repository via svn+ssh and a private key (the server has the paired public key). The interface is SVNKit (Pure Java). After I enter the svn+ssh://repository... address I am prompted for credentials. I specify the username and private key file (I did not set a passphrase so it is left blank) and confirm. The window pops up again and this goes on indefinitely. No console message is provided. Note 1: Marking "Save information" seems to have no effect. If there is a cache I'm supposed to be deleting this could help. I already deleted the keyring file in

ASP.Net application executing powershell scripts as IIS_USR

假装没事ソ 提交于 2019-12-05 07:49:40
I am building an asp.net mvc application which will operate as a wrapper for a number of powershell scripts we've written to manage day to day tasks (with the end goal of making it easy for a non technical person to use the scripts). I've managed to get the scripts executing nicely: var ctx = System.Web.HttpContext.Current; var file = ctx.Server.MapPath("~/Content/Powershell/psStoreLive.ps1"); #activate a store var shell = PowerShell.Create(); shell.AddCommand(file); shell.AddArgument(o.DBName); # which store should we activate var results = shell.Invoke(); # and then process the results...

'JKS not found' when trying GoogleNetHTTPTransport

╄→гoц情女王★ 提交于 2019-12-05 06:30:23
I've been having some troubles with Google Authorization and I've never worked with any "Google credentials-involved" process before. My problem takes place after I've created the credential reader (which I assume means that I could access my Google credential's JSON file correctly), just in the line where I instantiate a new Trusted Transport from the GoogleNetHTTPTransport . There, the Exception error throws: W/System.err: java.security.KeyStoreException: JKS not found at java.security.KeyStore.getInstance(KeyStore.java:649) at com.google.api.client.util.SecurityUtils.getJavaKeyStore

TFS/Visual studio 2010: Clear cached password for TFS in Visual Studio 2010, Need it to ask me to login again

六眼飞鱼酱① 提交于 2019-12-05 02:56:30
I am using Windows 7 and i installed TFS Server and connected to it from my VS 2010 install. It prompted me for a password so I entered the admin password. All went well, now i added myself as a user but i can't get it to ask me to login again. It is remembering (caching) the password. Hence it always logs me in as Administrator. I search the Internet and some people recommend ClearCred.exe which ships with VS SDK but it doesn't anymore ... And then checking the managed credentials in windows 7, i have also checked this and i see nothing with regards to my cached TFS password. I also tried

runas /savecred… don't accept cmdkey /add (credentials)

馋奶兔 提交于 2019-12-05 02:27:12
问题 I have a problem with runas /savecred ... and cmdkey /add.... I have a batch file contains this line: runas /profile /savecred /user:MyDomain\MyUserName "MyProgram.exe" I'm logging to my computer as Administrator and I want to execute MyProgram.exe with another user: MyUserName. When I launch my batch file the firt time, it prompts for password for MyUserName, I type the password and it works nice !!! For second time, it don't ask for password because /savecred has saved MyUserName and

Working with jenkins credentials

╄→гoц情女王★ 提交于 2019-12-05 01:07:24
I want to know how to Create the credentials that can be used by Jenkins and by jobs running in Jenkins to connect to 3rd party services. You should specify which 3rd party service you will work on. Below is an example of credentials with bitbucket I am now working with Jenkins ver. 1.568. By default, there's Credentials feature. So, if you want to add a credential, just click on Add Credentials . For example, I'd like to add SSH Username with password , so I can use it in checking out code from bitbucket devesh Credentials plugin - provides a centralized way to define credentials that can be

Authentication with Node/Express/Socket.IO

醉酒当歌 提交于 2019-12-05 01:05:49
问题 I have a node/socket.io/express server that's connected to a HTML file (like so). So visiting the web address connects you to the server. I am trying to set up a system where by, said server is being run on multiple computers at a time and by way of some sort of username and password authentication, visiting the webpage with specific credentials connects you to one of the computers with those same credentials running the server. Ive seen mention of "Redis" from previous similar questions but

Setting a single server credentials in Maven for multiple repositories

荒凉一梦 提交于 2019-12-05 00:05:22
Can I have multiple repositories in Maven settings.xml with a single server credentials? We're using Maven 3.0.4 to deploy artifacts to Nexus pro version 2.2.1 We have multiple repositories on the same server, and a user uses the same credentials to access all these repositories. The settings.xml multiple repositories with the same credentials: <repositories> <repository> <id>Staging-group</id> <url>http://server/nexus/content/groups/Staging-group</url> <repository> <id>RELEASES</id> <url>http://server/nexus/content/repositories/RELEASES</url> </repository> <repository> <id>INTERNALS</id> <url

Is it possible to store credentials for automatic Team Foundation Server login?

眉间皱痕 提交于 2019-12-04 23:50:40
Is it possible to store the credentials that I use to connect to my Team Foundation Server directly in Visual Studio 2010 ? I would like to avoid inserting them at every VS launch. The problem is that the machine that host TFS is not in the domain and I am connecting using the credentials of a user created on that machine. Suppose that the machine name is TOOLS and the user is Marco, I need to insert every time User name: TOOLS\Marco Password: * Can you suggest a possible fix for this, if it exists? Jim T On Windows 7 (and vista?) you can stop TFS prompting for passwords all the time by adding

Checking Http Status Swift4

萝らか妹 提交于 2019-12-04 20:49:51
I'm a bit confused about credentials and HttpStatus. I'm making a login page in Swift 4/XCode9, that connects to an api. Here is what I do when the login button is tapped: @IBAction func loginTapped(_ sender: Any) { let loginString = String(format: "%@:%@", usernametext.text!, passwordtext.text!) let loginData = loginString.data(using: String.Encoding.utf8)! let base64LoginString = loginData.base64EncodedString() var Base = base64LoginString let url = URL(string: "SOME URL")! var request = URLRequest(url: url) request.addValue("Basic \(Base)", forHTTPHeaderField: "Authorization") request