[axis-axis2-java-core] branch master updated (bbeed54 -> 723f610)
This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git. from bbeed54 Bump checksum-maven-plugin from 1.9 to 1.10 add 723f610 AXIS2-5959 remove axis2-transport-http-hc3 from build No new revisions were added by this update. Summary of changes: modules/distribution/pom.xml | 5 - modules/webapp/pom.xml | 5 - 2 files changed, 10 deletions(-)
[axis-axis2-java-core] 02/02: AXIS2-5998 Fix MTOM related issue
This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git commit 11f2e04c98439993e625aa01fc5c7d583e7aa847 Author: Robert Lazarski AuthorDate: Thu May 6 22:33:35 2021 -0400 AXIS2-5998 Fix MTOM related issue --- .../apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl b/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl index 47f3a57..a89d5da 100644 --- a/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl +++ b/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl @@ -448,6 +448,8 @@ org.apache.axis2.context.MessageContext _returnMessageContext = _operationClient.getMessageContext( org.apache.axis2.wsdl.WSDLConstants.MESSAGE_LABEL_IN_VALUE); org.apache.axiom.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope(); +_returnEnv.buildWithAttachments(); +
[axis-axis2-java-core] branch master updated (723f610 -> 11f2e04)
This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git. from 723f610 AXIS2-5959 remove axis2-transport-http-hc3 from build new 6640769 release note updates new 11f2e04 AXIS2-5998 Fix MTOM related issue The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl| 2 ++ src/site/markdown/release-notes/1.8.0.md| 6 ++ 2 files changed, 4 insertions(+), 4 deletions(-)
[axis-axis2-java-core] 01/02: release note updates
This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git commit 66407693606d11ec26b6c41b4cf93d07573cb063 Author: Robert Lazarski AuthorDate: Thu May 6 21:59:12 2021 -0400 release note updates --- src/site/markdown/release-notes/1.8.0.md | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/site/markdown/release-notes/1.8.0.md b/src/site/markdown/release-notes/1.8.0.md index 1a4667b..a9c8448 100644 --- a/src/site/markdown/release-notes/1.8.0.md +++ b/src/site/markdown/release-notes/1.8.0.md @@ -1,11 +1,9 @@ Apache Axis2 1.8.0 Release Note --- -* The minimum required Java version for Axis2 has been changed to Java 7. +* The minimum required Java version for Axis2 has been changed to Java 8. -* The Apache Commons HttpClient 3.x based HTTP transport has been deprecated. -If you wish to continue using this transport, add `axis2-transport-http-hc3` -to your project. +* The Apache Commons HttpClient 3.x based HTTP transport has been removed. * The HTTPClient 4.x based transport has been upgraded to use the APIs supported by the latest HTTPClient version.