Getting "URI: Malformed - see cqconnector.properties fi
![]()
Hi Team,
Getting "URI: Malformed - see cqconnector.properties file" Exception while connecting to Jazz Team Server. Steps to create the issue: 1) We have modified cqconnector.properties as per the requirement. com.ibm.team.uris=https://ibmuser@xx.ibm.com:password@IP_ADDRESS:9443/jazz The URL "http://localhost:8081/InteropGateway" trying to connect the Jazz Team server to fetch the information. I believe @ symbol in our user (Ex: ibmuser@xx.ibm.com) is causing problem and we have only our intranet email address in directory service. Please kindly confirm on this too.. Our Jazz Server is taking all user id (email ids) which are available in IBM directory service. Quick response is highly appreciated. Thanks & regards, Tushar Y Parate. |
2 answers
![]()
Also here is the Tomcat log:
01 Jan 2009 14:55:22,921 ERROR com.ibm.rational.interop.level1 - The Jazz server URI is missing or has a malformed user id/password specification: https://ibmuser@xx.ibm.com:password@IP_ADDRESS:9443/jazz |
![]()
Special characters in a URL must be escaped according to the URL specification, so instead of using '@' in the username field, you must use '%40' instead.
See http://www.ietf.org/rfc/rfc3986.txt for the URL syntax requirements. John Jazz ClearQuest Connector Team Hi Team, |