You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "frantisek.kocun@gmail.com (JIRA)" <ji...@apache.org> on 2011/03/25 09:42:05 UTC

[jira] [Created] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

HTTP conduit settigs not used fro downloading WSDL
--------------------------------------------------

                 Key: CXF-3421
                 URL: https://issues.apache.org/jira/browse/CXF-3421
             Project: CXF
          Issue Type: Bug
          Components: Transports
    Affects Versions: 2.3.3
         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
            Reporter: frantisek.kocun@gmail.com
            Priority: Critical


I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl

WSDL is on location
<jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"

And I use service address as http-conduit name like 
<http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"


This does not work

    <jaxws:client id="SERVICE_NAME"
                serviceClass="SERVICE_CLASS"
                wsdlLocation="WSDL_LOCATION"
                serviceName="s:SERVICE_NAME"
                xmlns:s="SERVICE_NAMESPACE"
                >
        </jaxws:client>

        <http-conf:conduit
                name="SERVICE_ADDRESS">
                <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
                <http-conf:authorization>
                        <sec:UserName>NAME</sec:UserName>
                        <sec:Password>PASSWORD</sec:Password>
                </http-conf:authorization>
        </http-conf:conduit>


This works (but does not try to download WSDL)

    <jaxws:client id="SERVICE_NAME"
                name="SERVICE_NAME"
                address="SERVICE_ADDRESS"
                serviceClass="SERVICE_CLASS"
                >
        </jaxws:client>

        <http-conf:conduit
                name="SERVICE_ADDRESS">
                <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
                <http-conf:authorization>
                        <sec:UserName>NAME</sec:UserName>
                        <sec:Password>PASSWORD</sec:Password>
                </http-conf:authorization>
        </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13040089#comment-13040089 ] 

Freeman Fang commented on CXF-3421:
-----------------------------------

Hi,

Could you use something like
<http-conf:conduit name="https://172.16.55.55:555/.*">
instead? the "https" prefix here is important, it should work, we actually have a testcase[1] which demonstrate using https download remote wsdl, take a look at the testHttpsWrappedContinuations method.
And the configuration file with that test[2]
[1]https://svn.apache.org/repos/asf/cxf/trunk/systests/transports/src/test/java/org/apache/cxf/systest/http_jetty/continuations/ClientServerWrappedContinuationTest.java
[2]https://svn.apache.org/repos/asf/cxf/trunk/systests/transports/src/test/java/org/apache/cxf/systest/http_jetty/continuations/cxf_https.xml

Freeman

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Assignee: Freeman Fang
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13011186#comment-13011186 ] 

Daniel Kulp commented on CXF-3421:
----------------------------------


The "{WSDL Namespace}portName" for would never work for downloading the wsdl as the portName is unknown at that point.

Use:

{code:xml}
<http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx.*"
{code}

The "name" is a regex that needs to match the full url of what is being asked.   The ".*" at the end would allow it to match the ?wsdl as well.   You could also do:

{code:xml}
<http-conf:conduit name="http://172.16.55.55:555/.*"
{code}

To make it match all URL's at that host/port.


> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "frantisek.kocun@gmail.com (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13011197#comment-13011197 ] 

frantisek.kocun@gmail.com commented on CXF-3421:
------------------------------------------------

Yes Daniel I think it should work the way you suggested but it does not. When using wsdlLocation, it tries to download WSDL without authentication. So I reported a bug.

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Assigned] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Freeman Fang reassigned CXF-3421:
---------------------------------

    Assignee: Freeman Fang

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Assignee: Freeman Fang
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "frantisek.kocun@gmail.com (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13011144#comment-13011144 ] 

frantisek.kocun@gmail.com commented on CXF-3421:
------------------------------------------------

I tried it. Both of them ("{WSDL Namespace}portName.http-conduit" and "*.http-conduit") work for service method invocations. But none of them for downloading the WSDL.

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13011129#comment-13011129 ] 

Freeman Fang commented on CXF-3421:
-----------------------------------

Hi,

How about you use {WSDL Namespace}portName.http-conduit style for http-conf:conduit name instead to see if it helps?
The name includes the service's namespace, the WSDL port name (as found in the wsdl:service section of the WSDL), and ".http-conduit". It follows this template: "{WSDL Namespace}portName.http-conduit". Note: it's the PORT name, not the service name. Thus, it's likely something like "MyServicePort", not "MyService". If you are having trouble getting the template to work, another (temporary) option for the name value is simply "*.http-conduit". 

Freeman

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (CXF-3421) HTTP conduit settigs not used fro downloading WSDL

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-3421?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Freeman Fang resolved CXF-3421.
-------------------------------

    Resolution: Won't Fix

> HTTP conduit settigs not used fro downloading WSDL
> --------------------------------------------------
>
>                 Key: CXF-3421
>                 URL: https://issues.apache.org/jira/browse/CXF-3421
>             Project: CXF
>          Issue Type: Bug
>          Components: Transports
>    Affects Versions: 2.3.3
>         Environment: CXF client on Jetty, Java 6. WS server in .NET NTLM secured.
>            Reporter: frantisek.kocun@gmail.com
>            Assignee: Freeman Fang
>            Priority: Critical
>
> I have WS on server with NTLM secured HTTP connection. If wsdlLocation is set, CXF tries to download WSDL but does not take HTTP conduit settings into account. Server returned HTTP response code: 401 for URL: http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl
> WSDL is on location
> <jaxws:client  wsdlLocation="http://172.16.55.55:555/WebServices/WebServiceABC.asmx?wsdl"
> And I use service address as http-conduit name like 
> <http-conf:conduit name="http://172.16.55.55:555/WebServices/WebServiceABC.asmx"
> This does not work
>     <jaxws:client id="SERVICE_NAME"
>                 serviceClass="SERVICE_CLASS"
>                 wsdlLocation="WSDL_LOCATION"
>                 serviceName="s:SERVICE_NAME"
>                 xmlns:s="SERVICE_NAMESPACE"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>
> This works (but does not try to download WSDL)
>     <jaxws:client id="SERVICE_NAME"
>                 name="SERVICE_NAME"
>                 address="SERVICE_ADDRESS"
>                 serviceClass="SERVICE_CLASS"
>                 >
>         </jaxws:client>
>         <http-conf:conduit
>                 name="SERVICE_ADDRESS">
>                 <http-conf:client AllowChunking="false" ConnectionTimeout="31234" />
>                 <http-conf:authorization>
>                         <sec:UserName>NAME</sec:UserName>
>                         <sec:Password>PASSWORD</sec:Password>
>                 </http-conf:authorization>
>         </http-conf:conduit>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira