Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 55271 invoked from network); 8 Feb 2010 21:47:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Feb 2010 21:47:52 -0000 Received: (qmail 63262 invoked by uid 500); 8 Feb 2010 21:47:51 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 63124 invoked by uid 500); 8 Feb 2010 21:47:51 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 63061 invoked by uid 99); 8 Feb 2010 21:47:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 21:47:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Feb 2010 21:47:49 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 17770234C045 for ; Mon, 8 Feb 2010 13:47:28 -0800 (PST) Message-ID: <983608600.132191265665648080.JavaMail.jira@brutus.apache.org> Date: Mon, 8 Feb 2010 21:47:28 +0000 (UTC) From: "Sven Walter (JIRA)" To: notifications@ant.apache.org Subject: [jira] Created: (IVY-1168) Authentication won't work in some situations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org Authentication won't work in some situations -------------------------------------------- Key: IVY-1168 URL: https://issues.apache.org/jira/browse/IVY-1168 Project: Ivy Issue Type: Bug Components: Ant Affects Versions: 2.1.0 Reporter: Sven Walter Hi, Regarding a requirement to publish an artifact (Hudson -> ivy (v.2.1.0)) only after a successful authentication against Archiva and LDAP I tried to realize it with the tag "credential" which is part of the ivysettings.xml. Unfortunately, it was quite hard to get this finally done. Different forum discussions did not provide enough help to solve my problems. After investigation and debugging of the ivy code I found the following issues/problems: 1. IvyAuthenticator was sometimes not the default: We have a very complex build process which includes some sub-ant call. This leads to the problem that the default Authenticator will be changed to the java default or at least not the IvyAuthenticator. To ensure that the right one will be used I changed the BasicURLHandler and set the default before establishing the connection and publishing or retrieving an artifact. ... public void upload(...) { ... Authenticator.setDefault(IvyAuthenticator.INSTANCE); ... } ... 2. Unexpected realm information By using the HttpClient the realm won't be considered. We have different repositories in our Archiva (and only one host). The implementation adds the credential twice (key=realm@host and key=host). The last one will win because the HttpClient does not get the realm information. I think a better approach in this situation is to authenticate without the realm (HttpClientHandler.java). The current implementation works only if you have one repository or the last defined credential is always the right one. ... httpClient.getState().setProxyCredentials(new AuthScope(proxyHost, proxyPort, proxyRealm), ... ... 3. The mystery of the realm The documentation is not very clear about the realm. It is hard to find out what the right realm is. To get a better overview I extend the class CredentialsStore with additional logging information to get more light into the dark. ... public Credentials getCredentials(...) { Message.debug("try to get credentials for: " + realm + "@" + host); ... } ... I build a new ivy.jar including all of my changes and now, it works. To avoid further costs in the future (by upgrading ivy) and supporting ivy I want to incorporate my changes into one of the next ivy releases. Is this possible or in general what do you think about the changes? Best regards, Sven Walter -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.