Authorisation failure Connecting to TFS from Eclipse in Ubuntu - eclipse

I am using Eclipse Juno (Linux) and added TFS plug-in for Eclipse. Server URL https://******ftware.visualstudio.com and added username and password. This is my Microsoft Live ID which got access to Visual Studio online, but it gives an error message Authorization failure connecting to https://******ftware.visualstudio.com using this username and password.
Username and password works well when connecting from browser. Not sure what is going on.
This plug-in works well on a Windows machine.

You may need to use the "alternate credentials" that does not rely on an MSA (Live ID). In the web access you can click on your name in the top right. There should be a settings drop down that lets you enable and set the alternate credentials for Linux.
https://binary-stuff.com/post/how-to-enable-alternate-credentials-in-visual-studio-online-vso

Related

Unable to connect to TFS server from eclipse IDE

I am trying to connect to my personal Azure DevOps organization from eclipse IDE.
I clicked on OK and copied the device code and added it to Microsoft.com/devicelogin. still, it didn't work.
I have also tried entering credentials in the enter credentials section. still, it did not work. It just shows an authorization error and then exits.

TFS mac eclipse plugin - Can't connect to server, error 403

I installed the Team Explorer Everywhere Eclipse (Kepler) Plugin but when I try to connect to the server i get this message:
The SOAP endpoint https://vsas.myurl.com/Services/v1.0/Registration.asmx could not be contacted. HTTP status: 403
1st time I tried to connect, it asked me for my user and password, after that it never asked me again, but I want to try with different user/pass and I cant find where I can change that.
I'm using OS Mavericks, and I didnĀ“t find any credential related in the keychain utility.
Thank you!
Edit: My user is out of license, but I have another user that is with a valid license. I would like to try with other user/pass but I don't know where to change that.
Finally I uninstall the plugin, logout from TFS Website, re-install the plugin, enter a new username and password when prompted and that was the solution, everything is working fine now.

Eclipse with TFS plugin - endless login loop

I have a problem in eclipse with the tfs plugin. I try to login and it stuck in some kind of login loop.
I looked here and in google. Nothing help.
I found this posts:
Eclipse with TFS plugin - looping login
http://social.msdn.microsoft.com/Forums/vstudio/en-US/5e3f8b3a-d623-4401-b9f1-50f1f52ab299/eclipse-tfs-plugin-keeps-signing-in-in-loop-followed-by-there-were-some-problems-message
I tried to clean cookies and password and everything possible in IE
I reinstalled the plugin. I updated everything possible, checked for eclipse indigo last version (3.2.7)
Nothing worked. Anyone can help me?
The forum posts you referenced are about the Team Foundation Service, not the on-premise server. Since the service uses Microsoft Accounts (previously known as Live Id's) it depends on cookies in your browser.
The on-premise version of Team Foundation Server uses your domain account which isn't stored as a cookie, but which is stored in the Windows Credentials Vault by default for Windows processes. Try going through the stored credentials to make sure your username/password or TFS server isn't mentioned there. If it is, either update it or remove it.
Can you verify whether the same account settings are correctly picked up by Visual Studio/Team Explorer (if you have it installed on the same machine)? Eclipse and Team Explorer should use the same credential vault.

Connecting to TFS 2010 from Eclipse using Team Explorer Everywhere 2010 SP1: Access Denied

I am trying to connect to my company's TFS 2010 server from eclipse using Team Explorer Everywhere 2010 SP1.
I have successfully installed the plugin and am attempting to create the connection to our server through the "Add New Server" dialogue. Entering the server https://tfs.<ourServer>.com/tfs along with my Active Directory credentials creates the error:
Access denied connecting to TFS server... <server> (authenticating as <DOMAIN>\<user.name>
I can connect to this same server from Visual Studio 2010 without a problem using the same credentials, and I can also connect to the web client by browsing the the server using IE.
I have also used the command line tool to define a profile which appears in the Eclipse plugin but creates the same error.
Have I missed something obvious? Is there a setting on the TFS server I need to change?
I had the same issue but changing the Eclipse proxy to native solved the issue in my case.
Can you connect successfully if you use the URL of your Team Project Collection, for example:
http://tfs.mydomain.com:8080/tfs/DefaultCollection

Eclipse and GlassFish: remote deployment and debugging

I am currently using Eclipse to develop a fairly straight-forward Java EE dynamic web application. I have just been using Eclipse to deploy the web app to a GlassFish 3.1 server locally running on my dev machine for development and debugging purposes.
So far, so good. But now, I am looking into deploying the app to a remote GF server for further testing.
In Eclipse, I open the "Servers" tab and select the "New->Server" context menu. I enter the IP address of the remote server running GlassFish, but the "New Server" dialog won't let me proceed. Instead, it gives me the error message:
Remote Server is not secured: It
cannot be used remotely...
Some initial research suggests that remote deployment/debugging is currently not supported by Eclipse. Is that what Eclipse is trying to tell me with this weird error message? Surely "Remote deployment/debugging not supported" would be more apt. Am I overlooking something fundamental here?
Read http://blogs.oracle.com/quinn/entry/securing_adminstration_in_glassfish_server1
Access to remote servers can only be done if the server has been secured...
You want to make sure you have enabled secure administration. Generally you should do the following:
using ./asadmin change-admin-password command to set a password on the 'admin' user. By default there is none (so when it asks for your current admin password just hit Enter assuming you've never set one)
using ./asadmin start-domain to startup the default 'domain1'
using ./asadmin --host localhost --port 4848 enable-secure-admin will enable remote administration access (which you want) and tell Glassfish to start on the localhost at the default admin port 4848
finally use ./asadmin restart-domain to restart and apply those changes.
You should be able to now access the remote server and manage it via your Eclipse install. This works for Eclipse Luna and Glassfish4 open-source edition. Also note that you need to have a glassfish install on your Local development machine and point to that when it asks for the path to the Glassfish installation when setting up the server in Eclipse Wizard...despite the fact that you are connecting to a remote Glassfish instance. (See my SO post for more details/screenshots).
I am adding this because the current accepted answer only points to a link which is typically frowned upon here on SO since links have a tendency to go dead unexpectedly.