connection failure: Invalid Credentials

Hi!
Using Team Concert Beta 1, I configured Tomcat security following the
Jazz Server Setup Guide. Afterwards, I'm unable to connect to the
repository from the Eclipse client. I get:
ADMIN@localhost (Connection error: Invalid credentials)
From a web browser, I am able to view "https://localhost:9453/jazz" okay.
I'm not real knowledgeable with website credentials. Any suggestions?
Thanks,
Bill Pieterouiski
IBM Information Services
Here's the meat of the server.xml:
<Connector port="9453"
connectionTimeout="20000"
maxHttpHeaderSize="8192"
maxThreads="150"
minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false"
disableUploadTimeout="true"
acceptCount="100"
scheme="https"
secure="true"
clientAuth="false"
keystoreFile="ibm-team-ssl.keystore"
keystorePass="ibm-team"
sslProtocol="SSL"
algorithm="IbmX509"/>
and web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>secure</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>jazzusers</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Using Team Concert Beta 1, I configured Tomcat security following the
Jazz Server Setup Guide. Afterwards, I'm unable to connect to the
repository from the Eclipse client. I get:
ADMIN@localhost (Connection error: Invalid credentials)
From a web browser, I am able to view "https://localhost:9453/jazz" okay.
I'm not real knowledgeable with website credentials. Any suggestions?
Thanks,
Bill Pieterouiski
IBM Information Services
Here's the meat of the server.xml:
<Connector port="9453"
connectionTimeout="20000"
maxHttpHeaderSize="8192"
maxThreads="150"
minSpareThreads="25"
maxSpareThreads="75"
enableLookups="false"
disableUploadTimeout="true"
acceptCount="100"
scheme="https"
secure="true"
clientAuth="false"
keystoreFile="ibm-team-ssl.keystore"
keystorePass="ibm-team"
sslProtocol="SSL"
algorithm="IbmX509"/>
and web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>secure</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>jazzusers</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
One answer

First, the correct URL to access the Web Admin UI is https://localhost:9443/jazz/admin, in your earlier post, you used the port number 9453.
Second, when accessing the repository through the admin user, make sure that both the usernameand password are ADMIN (case sensitive). I am assuming that because you are receiving an invalid credentials error that you may have typed the password wrong.
Second, when accessing the repository through the admin user, make sure that both the username