Return-Path: X-Original-To: apmail-axis-java-dev-archive@www.apache.org Delivered-To: apmail-axis-java-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 775FE9293 for ; Thu, 5 Jul 2012 12:27:14 +0000 (UTC) Received: (qmail 54078 invoked by uid 500); 5 Jul 2012 12:27:14 -0000 Delivered-To: apmail-axis-java-dev-archive@axis.apache.org Received: (qmail 53423 invoked by uid 500); 5 Jul 2012 12:27:09 -0000 Mailing-List: contact java-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@axis.apache.org Delivered-To: mailing list java-dev@axis.apache.org Received: (qmail 53380 invoked by uid 99); 5 Jul 2012 12:27:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jul 2012 12:27:07 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of fsilva@synchro.com.br designates 189.39.55.212 as permitted sender) Received: from [189.39.55.212] (HELO spnetge01.synchro.com.br) (189.39.55.212) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jul 2012 12:27:01 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by spnetge01.synchro.com.br (Postfix) with ESMTP id 237E845EEE2; Thu, 5 Jul 2012 09:26:40 -0300 (BRT) X-Virus-Scanned: amavisd-new at spnetge01.synchro.com.br Received: from spnetge01.synchro.com.br ([127.0.0.1]) by localhost (spnetge01.spnetge01.synchro.com.br [127.0.0.1]) (amavisd-new, port 10024) with LMTP id qUeRtVYqwjn2; Thu, 5 Jul 2012 09:26:39 -0300 (BRT) Received: from ca122 (unknown [172.27.10.72]) by spnetge01.synchro.com.br (Postfix) with ESMTP id AD3DB45EEDD; Thu, 5 Jul 2012 09:26:39 -0300 (BRT) From: "Fernando Cesar da Silva" To: Cc: "'Anderson de Rossi'" , "'Joselito Viana Soares'" , "'Antonio Calandriello'" Subject: Proxy authentication failure on Axis 1.6.1 Date: Thu, 5 Jul 2012 09:26:28 -0300 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0043_01CD5A90.48482310" X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Ac1aqWaDMvZ+yv7xSRegg7X9+rK3Bg== Content-Language: pt-br X-Virus-Checked: Checked by ClamAV on apache.org ------=_NextPart_000_0043_01CD5A90.48482310 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hello, We are experiencing serious problems trying to authenticate Axis 1.6.1 in a NTLM Proxy Server. We are using the parameters below, these parameters works as expected in an application with Axis 1.5.1 (looking at the trace route I see the packages going through the Proxy) and doesn't work in the same application with Axis 1.6.1. (looking at the trace route I see that the packages never reach the Proxy). HTTP/1.1 USER:DOMAIN:PASSWORD chunked proxy 80 DOMAIN/USER PASSWORD Our suspicion is that these parameters are not being read properly. The axis2.xml is under WAR_FILE/WEB-INF/conf/. Is this the proper location? Is there something wrong with the parameters? Any clue will be helpful. Thanks. Fernando Cesar. ------=_NextPart_000_0043_01CD5A90.48482310 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hello,

 

We are experiencing serious problems trying to authenticate = Axis 1.6.1 in a NTLM Proxy Server.

 

We are using the parameters below, = these parameters works as expected in an application with Axis 1.5.1 = (looking at the trace route I see the packages going through the Proxy) = and doesn’t work in the same application with Axis 1.6.1. (looking = at the trace route I see that the packages never reach the = Proxy).

 

<transportSender name=3D"https" = class=3D"org.apache.axis2.transport.http.CommonsHTTPTransportSender&= quot;>        =

    <parameter = name=3D"PROTOCOL" = locked=3D"false">HTTP/1.1</parameter> =

          =       <parameter name=3D"PROXY" = proxy_host=3D"proxy" = proxy_port=3D"80">USER:DOMAIN:PASSWORD</parameter>&nbs= p;     

          =       <parameter = name=3D"Transfer-Encoding">chunked</parameter>

</transportSender>

 

  <!-- = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D = -->

  <!-- Parameters -->

  <!-- = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D = -->

  <parameter = name=3D"Proxy">

    = <Configuration>

      = <ProxyHost>proxy</ProxyHost>

      = <ProxyPort>80</ProxyPort>

      = <ProxyUser>DOMAIN/USER</ProxyUser>

      = <ProxyPassword>PASSWORD</ProxyPassword>

=

    = </Configuration>

  = </parameter>

 

Our suspicion is that these = parameters are not being read properly. The axis2.xml is = under WAR_FILE/WEB-INF/conf/. Is this the proper location? Is there = something wrong with the parameters?

 

Any clue will be = helpful.

 

Thanks.

 

Fernando Cesar.

 

------=_NextPart_000_0043_01CD5A90.48482310--