Move SSLProtocolSocketFactory to HTTP transport module.

2011-10-19 Thread Sagara Gunathunga
Hi devs, Axis2 kernel has an implementation class of org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory[1] called SSLProtocolSocketFactory[2]. I couldn't find any reference or usage of this class within Axis2 myself. I manged to build both Axis2 trunk and Rampart trunks without thi

How to use MultipartFormDataFormatter ?

2011-10-19 Thread Sagara Gunathunga
Hi devs, I'm thinking to write a sample that utilize MultipartFormDataFormatter class for serialization. I manged to invoke MultipartFormDataBuilder by sending a multipart/form-data request and service method also executed properly but it alleyways return a response with a application/xml type. Th

[jira] [Commented] (AXIS2-5116) AxisFault: string at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext When server is deployed in tomcat

2011-10-19 Thread Sagara Gunathunga (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130527#comment-13130527 ] Sagara Gunathunga commented on AXIS2-5116: --- Since this work on local machine mo

[jira] [Updated] (AXIS2-5116) AxisFault: string at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext When server is deployed in tomcat

2011-10-19 Thread Sagara Gunathunga (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sagara Gunathunga updated AXIS2-5116: -- Priority: Major (was: Blocker) > AxisFault: string at > org.apache.axis2.util.Uti

[jira] [Created] (AXIS2-5168) axis2-wsdl2code-maven-plugin generated source code warnings

2011-10-19 Thread Andrew Holland (Created) (JIRA)
axis2-wsdl2code-maven-plugin generated source code warnings --- Key: AXIS2-5168 URL: https://issues.apache.org/jira/browse/AXIS2-5168 Project: Axis2 Issue Type: Improvement Co

[jira] [Commented] (AXIS2-5088) Getting Exception while generating classes for a wsdl with xmlbeans

2011-10-19 Thread Sagara Gunathunga (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5088?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130555#comment-13130555 ] Sagara Gunathunga commented on AXIS2-5088: --- 1.) Axis2 does not support for SOA

[jira] [Updated] (AXIS2-5088) Getting Exception while generating classes for a wsdl with xmlbeans

2011-10-19 Thread Sagara Gunathunga (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sagara Gunathunga updated AXIS2-5088: -- Priority: Major (was: Blocker) > Getting Exception while generating classes for a

[jira] [Resolved] (AXIS2-5088) Getting Exception while generating classes for a wsdl with xmlbeans

2011-10-19 Thread Sagara Gunathunga (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sagara Gunathunga resolved AXIS2-5088. --- Resolution: Cannot Reproduce > Getting Exception while generating classes for a w

[jira] [Commented] (AXIS2-5166) Exception in thread "main" org.apache.axis2.AxisFault: 1

2011-10-19 Thread Hasini Gunasinghe (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5166?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130678#comment-13130678 ] Hasini Gunasinghe commented on AXIS2-5166: -- Hi, I could run this sample 05 with

[jira] [Updated] (AXIS2-5168) axis2-wsdl2code-maven-plugin generated source code warnings

2011-10-19 Thread Andrew Holland (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/AXIS2-5168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Holland updated AXIS2-5168: -- Description: axis2-wsdl2code-maven-plugin should add '@SuppressWarnings("all")' to all generat

Re: How to use MultipartFormDataFormatter ?

2011-10-19 Thread Andreas Veithen
It makes sense that multipart/form-data is only used for requests. That means that MultipartFormDataBuilder is only used on the server side for incoming requests and that in order to test MultipartFormDataFormatter you need to use Axis2 as a client that generates an outgoing multipart/form-data req

Re: Move SSLProtocolSocketFactory to HTTP transport module.

2011-10-19 Thread Andreas Veithen
Yes, I think that this class should be moved to the HTTP transport. Note that the usage of that class is actually documented in the Javadoc ... of the TrustAllTrustManager class. The only thing is that in order to make the split-package problem worse (AXIS2-4311), we need to move it to a different

[jira] [Updated] (RAMPART-278) PolicyBasedResultsValidator throws exception when headers encrypted before signing.

2011-10-19 Thread Andreas Veithen (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/RAMPART-278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Veithen updated RAMPART-278: Fix Version/s: 1.5.3 > PolicyBasedResultsValidator throws exception when headers encry

[jira] [Updated] (RAMPART-324) Caused by: org.apache.ws.security.WSSecurityException: General security error (WSEncryptBody/WSSignE nvelope: Element to encrypt/sign not found: {http://ws.apache.org/ax

2011-10-19 Thread Andreas Veithen (Updated) (JIRA)
[ https://issues.apache.org/jira/browse/RAMPART-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Veithen updated RAMPART-324: Priority: Major (was: Critical) > Caused by: org.apache.ws.security.WSSecurityExcepti

Re: Move SSLProtocolSocketFactory to HTTP transport module.

2011-10-19 Thread Sagara Gunathunga
On Thu, Oct 20, 2011 at 12:11 AM, Andreas Veithen wrote: > Yes, I think that this class should be moved to the HTTP transport. > Note that the usage of that class is actually documented in the > Javadoc ... of the TrustAllTrustManager class. > > The only thing is that in order to make the split-pa

[jira] [Commented] (RAMPART-324) Caused by: org.apache.ws.security.WSSecurityException: General security error (WSEncryptBody/WSSignE nvelope: Element to encrypt/sign not found: {http://ws.apache.org/

2011-10-19 Thread Hudson (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/RAMPART-324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13130902#comment-13130902 ] Hudson commented on RAMPART-324: Integrated in rampart-1.5 #60 (See [https://builds.apac

[jira] [Resolved] (RAMPART-324) Caused by: org.apache.ws.security.WSSecurityException: General security error (WSEncryptBody/WSSignE nvelope: Element to encrypt/sign not found: {http://ws.apache.org/a

2011-10-19 Thread Andreas Veithen (Resolved) (JIRA)
[ https://issues.apache.org/jira/browse/RAMPART-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andreas Veithen resolved RAMPART-324. - Resolution: Fixed Fix Version/s: 1.7.0 1.6.2

Re: Move SSLProtocolSocketFactory to HTTP transport module.

2011-10-19 Thread Andreas Veithen
On Wed, Oct 19, 2011 at 21:25, Sagara Gunathunga wrote: > On Thu, Oct 20, 2011 at 12:11 AM, Andreas Veithen > wrote: >> Yes, I think that this class should be moved to the HTTP transport. >> Note that the usage of that class is actually documented in the >> Javadoc ... of the TrustAllTrustManager

Re: [VOTE] Release Rampart 1.5.2 and 1.6.1

2011-10-19 Thread Andreas Veithen
I've changed the build to update the version number and release date automatically so that we can eliminate that manual step. Normally I would have regenerated the release artifacts, but since there have been other changes on these branches (that in particular require Axiom 1.2.13 which has not ye

Re: [VOTE] Release Rampart 1.5.2 and 1.6.1

2011-10-19 Thread Sagara Gunathunga
On Thu, Oct 20, 2011 at 2:56 AM, Andreas Veithen wrote: > I've changed the build to update the version number and release date > automatically so that we can eliminate that manual step. > > Normally I would have regenerated the release artifacts, but since > there have been other changes on these