[axis-axis2-java-core] branch master updated: Also parse action from start-info and use axiom ContentType for parsing
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 The following commit(s) were added to refs/heads/master by this push: new 9ac5ef7168 Also parse action from start-info and use axiom ContentType for parsing new e45019c1d3 Merge pull request #308 from manfredweiss/AXIS2-5986 9ac5ef7168 is described below commit 9ac5ef71688deb994d0b814c89c1623ef7eec886 Author: Manfred Weiss AuthorDate: Fri May 27 12:07:34 2022 +0200 Also parse action from start-info and use axiom ContentType for parsing --- .../org/apache/axis2/kernel/TransportUtils.java| 29 +++--- .../apache/axis2/kernel/TransportUtilsTest.java| 27 2 files changed, 41 insertions(+), 15 deletions(-) diff --git a/modules/kernel/src/org/apache/axis2/kernel/TransportUtils.java b/modules/kernel/src/org/apache/axis2/kernel/TransportUtils.java index ab9c80d5f5..91a5e94512 100644 --- a/modules/kernel/src/org/apache/axis2/kernel/TransportUtils.java +++ b/modules/kernel/src/org/apache/axis2/kernel/TransportUtils.java @@ -23,6 +23,7 @@ package org.apache.axis2.kernel; import org.apache.axiom.attachments.Attachments; import org.apache.axiom.attachments.CachedFileDataSource; import org.apache.axiom.attachments.lifecycle.LifecycleManager; +import org.apache.axiom.mime.ContentType; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMException; @@ -55,7 +56,9 @@ import javax.xml.stream.XMLStreamException; import java.io.File; import java.io.InputStream; import java.io.OutputStream; +import java.text.ParseException; import java.util.List; +import java.util.Optional; public class TransportUtils { @@ -409,23 +412,19 @@ public class TransportUtils { public static void processContentTypeForAction(String contentType, MessageContext msgContext) { //Check for action header and set it in as soapAction in MessageContext -int index = contentType.indexOf("action"); -if (index > -1) { -String transientString = contentType.substring(index, contentType.length()); -int equal = transientString.indexOf("="); -int firstSemiColon = transientString.indexOf(";"); -String soapAction; // This will contain "" in the string -if (firstSemiColon > -1) { -soapAction = transientString.substring(equal + 1, firstSemiColon); -} else { -soapAction = transientString.substring(equal + 1, transientString.length()); +try { +ContentType ct = new ContentType(contentType); +String startInfo = ct.getParameter("start-info"); +if (startInfo != null) { +Optional.ofNullable(new ContentType(startInfo).getParameter("action")) +.ifPresent(msgContext::setSoapAction); } -if ((soapAction != null) && soapAction.startsWith("\"") -&& soapAction.endsWith("\"")) { -soapAction = soapAction -.substring(1, soapAction.length() - 1); +Optional.ofNullable(ct.getParameter("action")) +.ifPresent(msgContext::setSoapAction); +} catch (ParseException e) { +if (log.isDebugEnabled()) { +log.debug("Failed to parse Content-Type Header: " + e.getMessage(), e); } -msgContext.setSoapAction(soapAction); } } diff --git a/modules/kernel/test/org/apache/axis2/kernel/TransportUtilsTest.java b/modules/kernel/test/org/apache/axis2/kernel/TransportUtilsTest.java new file mode 100644 index 00..f30c548680 --- /dev/null +++ b/modules/kernel/test/org/apache/axis2/kernel/TransportUtilsTest.java @@ -0,0 +1,27 @@ +package org.apache.axis2.kernel; + +import junit.framework.TestCase; +import org.apache.axis2.context.MessageContext; + +import java.util.UUID; + +public class TransportUtilsTest extends TestCase { + +private static final String ACTION_INSIDE_STARTINFO = "multipart/related; type=\"application/xop+xml\"; boundary=\"%s\"; start=\"\"; start-info=\"application/soap+xml; action=\\\"%s\\\"\""; +private static final String ACTION_OUTSIDE_STARTINFO = "Multipart/Related;boundary=MIME_boundary;type=\"application/xop+xml\";start=\"\";start-info=\"application/soap+xml\"; action=\"%s\""; + +public void testProcessContentTypeForAction() { + +String soapAction = "http://www.example.com/ProcessData";; +String contentType; +MessageContext msgContext = new MessageContext(); + +contentType = String.format(ACTION_INSIDE_STARTINFO, UUID.randomUUID().toString(), soapAction); +TransportUtils.processContentTypeForAction(contentType, msgContext); +assertEquals(soapAction, msgContext.getSoapAction()); + +
[axis-axis2-java-core] 01/01: Merge pull request #296 from apache/dependabot/maven/modules/samples/userguide/src/userguide/springbootdemo/org.owasp.esapi-esapi-2.3.0.0
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 db379eccbad47082aafccd64228aa2bb29a5728c Merge: e45019c1d3 bd7cf5916b Author: robertlazarski <58150512+robertlazar...@users.noreply.github.com> AuthorDate: Tue Jun 7 06:11:18 2022 -1000 Merge pull request #296 from apache/dependabot/maven/modules/samples/userguide/src/userguide/springbootdemo/org.owasp.esapi-esapi-2.3.0.0 Bump esapi from 2.2.3.1 to 2.3.0.0 in /modules/samples/userguide/src/userguide/springbootdemo modules/samples/userguide/src/userguide/springbootdemo/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[axis-axis2-java-core] branch master updated (e45019c1d3 -> db379eccba)
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 e45019c1d3 Merge pull request #308 from manfredweiss/AXIS2-5986 add bd7cf5916b Bump esapi in /modules/samples/userguide/src/userguide/springbootdemo new db379eccba Merge pull request #296 from apache/dependabot/maven/modules/samples/userguide/src/userguide/springbootdemo/org.owasp.esapi-esapi-2.3.0.0 The 1 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: modules/samples/userguide/src/userguide/springbootdemo/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[axis-axis2-java-core] branch master updated (db379eccba -> aa6fc37ba2)
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 db379eccba Merge pull request #296 from apache/dependabot/maven/modules/samples/userguide/src/userguide/springbootdemo/org.owasp.esapi-esapi-2.3.0.0 add 9e2b6b6d4b Bump groovy.version from 4.0.2 to 4.0.3 add aa6fc37ba2 Merge pull request #315 from apache/dependabot/maven/groovy.version-4.0.3 No new revisions were added by this update. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[axis-axis2-java-core] branch master updated (aa6fc37ba2 -> 35d7fe05c7)
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 aa6fc37ba2 Merge pull request #315 from apache/dependabot/maven/groovy.version-4.0.3 add 35d7fe05c7 update spring-boot demo deps No new revisions were added by this update. Summary of changes: .../userguide/src/userguide/springbootdemo/pom.xml | 41 +++--- 1 file changed, 21 insertions(+), 20 deletions(-)
[axis-axis2-java-core] branch master updated: update 1.8.1 release notes
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 The following commit(s) were added to refs/heads/master by this push: new b5a5c3b973 update 1.8.1 release notes b5a5c3b973 is described below commit b5a5c3b9733911199265e8fea0d3607d9fdf02c0 Author: Robert Lazarski AuthorDate: Tue Jun 7 13:48:48 2022 -0400 update 1.8.1 release notes --- src/site/markdown/release-notes/1.8.1.md | 62 1 file changed, 62 insertions(+) diff --git a/src/site/markdown/release-notes/1.8.1.md b/src/site/markdown/release-notes/1.8.1.md index df97a6f7a5..d2dd673630 100644 --- a/src/site/markdown/release-notes/1.8.1.md +++ b/src/site/markdown/release-notes/1.8.1.md @@ -3,3 +3,65 @@ Apache Axis2 1.8.1 Release Notes * Tomcat 10 users need to deploy the axis2 into the webapps-javaee folder as explained here: https://tomcat.apache.org/migration-10.html#Migrating_from_9.0.x_to_10.0.x. + +* As explained in AXIS2-4311, the same package name org.apache.axis2.transport was +in both the kernel and transport modules. This broke both OSGI support and the Java 9 +modules feature. The kernel version of this package was renamed to +org.apache.axis2.kernel. + +Users are strongly encouraged to update their axis2.xml since the package name +changed for the classes org.apache.axis2.kernel.http.XFormURLEncodedFormatter, +org.apache.axis2.kernel.http.MultipartFormDataFormatter, +org.apache.axis2.kernel.http.ApplicationXMLFormatter, +org.apache.axis2.kernel.http.SOAPMessageFormatter, +and org.apache.axis2.kernel.http.SOAPMessageFormatter. + +Any code references for the HTTPConstants class needs to be updated to +org.apache.axis2.kernel.http.HTTPConstants. + +* All dependencies were updated to the latest version where it was easily +possible to do so. Users are strongly encouraged to manage and update +their pom.xml for updates themselves and not wait for the Axis2 team, since +CVE's occur so often it is impractical to do a release for every update. + +We will do our best and try to release as frequently as possible. However, +do not wait for us on zero day exploits - just update your pom.xml. + + +Bug + + +[AXIS2-4311] - Axis2 OSGi bundles have split packages + +[AXIS2-5986] - Content-Type start-info action not parsed correctly + +[AXIS2-6010] - Can't start server on standalone version with JDK 16 + +[AXIS2-6011] - axis2-1.0.jar not found in axis2.war + +[AXIS2-6013] - Apache Axis2 1.8.0 seems to have DEBUG level logging enabled by default + +[AXIS2-6014] - Error while generating java code from WSDL + +[AXIS2-6015] - Java code generated from WSDL does not compile if a "string" element is defined + +[AXIS2-6022] - XMLBeans binding extension not in classpath error when generating code using Axis2 1.8.0 + +[AXIS2-6033] - wsdl import locations are not getting updated correctly if wsdl is we are importing .wsdl file in wsdl file + + + +Improvement + + +[AXIS2-5857] - Log4j 1.x has reached EOL + + + +Test + + +[AXIS2-6028] - Remove Qpid from JMS transport unit test + + +
[axis-axis2-java-core] branch master updated: temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no i
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 The following commit(s) were added to refs/heads/master by this push: new 658d688178 temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no indication what the problem is 658d688178 is described below commit 658d68817869eb9fd4887f06d70567ea24447a59 Author: Robert Lazarski AuthorDate: Tue Jun 7 15:23:04 2022 -0400 temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no indication what the problem is --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 639a7b4bc5..54f28a421b 100644 --- a/pom.xml +++ b/pom.xml @@ -1554,6 +1554,7 @@ $${type_declaration}]]> +
[axis-axis2-java-core] branch master updated: temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no i
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 The following commit(s) were added to refs/heads/master by this push: new fdd1f6dc32 temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no indication what the problem is ... specifically mention in the comments that the problem is on systests/echo/pom.xml fdd1f6dc32 is described below commit fdd1f6dc32fcf7ba0cc49254785461ad677e75de Author: Robert Lazarski AuthorDate: Tue Jun 7 15:26:14 2022 -0400 temporarily comment out tidy plugin as it is breaking somehow with 'mvn release:prepare' , not with tidy:check, tidy:pom doesn't fix it, and there is no indication what the problem is ... specifically mention in the comments that the problem is on systests/echo/pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54f28a421b..b36b07dc91 100644 --- a/pom.xml +++ b/pom.xml @@ -1554,7 +1554,7 @@ $${type_declaration}]]> -
[axis-axis2-java-core] branch master updated: [maven-release-plugin] prepare release v1.8.1
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 The following commit(s) were added to refs/heads/master by this push: new 0f5e642649 [maven-release-plugin] prepare release v1.8.1 0f5e642649 is described below commit 0f5e64264982998b243a2c069a988d3900e54a55 Author: Robert Lazarski AuthorDate: Tue Jun 7 15:40:53 2022 -0400 [maven-release-plugin] prepare release v1.8.1 --- apidocs/pom.xml | 2 +- databinding-tests/jaxbri-tests/pom.xml | 6 +- databinding-tests/pom.xml| 2 +- modules/adb-codegen/pom.xml | 4 ++-- modules/adb-tests/pom.xml| 4 ++-- modules/adb/pom.xml | 4 ++-- modules/addressing/pom.xml | 4 ++-- modules/clustering/pom.xml | 4 ++-- modules/codegen/pom.xml | 4 ++-- modules/corba/pom.xml| 4 ++-- modules/distribution/pom.xml | 4 ++-- modules/fastinfoset/pom.xml | 4 ++-- modules/integration/pom.xml | 4 ++-- modules/java2wsdl/pom.xml| 4 ++-- modules/jaxbri-codegen/pom.xml | 4 ++-- modules/jaxws-integration/pom.xml| 4 ++-- modules/jaxws-mar/pom.xml| 4 ++-- modules/jaxws/pom.xml| 4 ++-- modules/jibx-codegen/pom.xml | 4 ++-- modules/jibx/pom.xml | 4 ++-- modules/json/pom.xml | 4 ++-- modules/kernel/pom.xml | 4 ++-- modules/metadata/pom.xml | 4 ++-- modules/mex/pom.xml | 4 ++-- modules/mtompolicy-mar/pom.xml | 4 ++-- modules/mtompolicy/pom.xml | 4 ++-- modules/osgi-tests/pom.xml | 4 ++-- modules/osgi/pom.xml | 4 ++-- modules/ping/pom.xml | 4 ++-- modules/resource-bundle/pom.xml | 4 ++-- modules/saaj/pom.xml | 4 ++-- modules/samples/java_first_jaxws/pom.xml | 14 +- modules/samples/jaxws-addressbook/pom.xml| 8 ++-- modules/samples/jaxws-calculator/pom.xml | 8 ++-- modules/samples/jaxws-interop/pom.xml| 12 modules/samples/jaxws-samples/pom.xml| 16 ++-- modules/samples/jaxws-version/pom.xml| 6 +- modules/samples/pom.xml | 2 +- .../samples/transport/https-sample/httpsClient/pom.xml | 8 ++-- .../samples/transport/https-sample/httpsService/pom.xml | 8 ++-- modules/samples/transport/https-sample/pom.xml | 6 +- modules/samples/transport/jms-sample/jmsService/pom.xml | 8 ++-- modules/samples/transport/jms-sample/pom.xml | 6 +- modules/samples/version/pom.xml | 4 ++-- modules/schema-validation/pom.xml| 4 ++-- modules/scripting/pom.xml| 4 ++-- modules/soapmonitor/module/pom.xml | 4 ++-- modules/soapmonitor/servlet/pom.xml | 4 ++-- modules/spring/pom.xml | 4 ++-- modules/testutils/pom.xml| 4 ++-- modules/tool/archetype/quickstart-webapp/pom.xml | 4 ++-- modules/tool/archetype/quickstart/pom.xml| 4 ++-- modules/tool/axis2-aar-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-ant-plugin/pom.xml| 4 ++-- modules/tool/axis2-eclipse-codegen-plugin/pom.xml| 4 ++-- modules/tool/axis2-eclipse-service-plugin/pom.xml| 4 ++-- modules/tool/axis2-idea-plugin/pom.xml | 4 ++-- modules/tool/axis2-java2wsdl-maven-plugin/pom.xml| 4 ++-- modules/tool/axis2-mar-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-repo-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-wsdl2code-maven-plugin/pom.xml| 4 ++-- modules/tool/axis2-xsd2java-maven-plugin/pom.xml | 4 ++-- modules/tool/maven-shared/pom.xml| 4 ++-- modules/tool/simple-server-maven-plugin/pom.xml | 4 ++-- modules/transport/base/pom.xml | 4 +
[axis-axis2-java-core] annotated tag v1.8.1 created (now fe9c8ed190)
This is an automated email from the ASF dual-hosted git repository. robertlazarski pushed a change to annotated tag v1.8.1 in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git at fe9c8ed190 (tag) tagging 0f5e64264982998b243a2c069a988d3900e54a55 (commit) replaces v1.8.0 by Robert Lazarski on Tue Jun 7 15:43:04 2022 -0400 - Log - [maven-release-plugin] copy for tag v1.8.1 --- No new revisions were added by this update.
[axis-axis2-java-core] branch master updated: [maven-release-plugin] prepare for next development iteration
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 The following commit(s) were added to refs/heads/master by this push: new b6388e8e5d [maven-release-plugin] prepare for next development iteration b6388e8e5d is described below commit b6388e8e5deb14adb73fd2b5cb1dd54b1eb27025 Author: Robert Lazarski AuthorDate: Tue Jun 7 15:43:23 2022 -0400 [maven-release-plugin] prepare for next development iteration --- apidocs/pom.xml | 2 +- databinding-tests/jaxbri-tests/pom.xml | 6 +- databinding-tests/pom.xml| 2 +- modules/adb-codegen/pom.xml | 4 ++-- modules/adb-tests/pom.xml| 4 ++-- modules/adb/pom.xml | 4 ++-- modules/addressing/pom.xml | 4 ++-- modules/clustering/pom.xml | 4 ++-- modules/codegen/pom.xml | 4 ++-- modules/corba/pom.xml| 4 ++-- modules/distribution/pom.xml | 4 ++-- modules/fastinfoset/pom.xml | 4 ++-- modules/integration/pom.xml | 4 ++-- modules/java2wsdl/pom.xml| 4 ++-- modules/jaxbri-codegen/pom.xml | 4 ++-- modules/jaxws-integration/pom.xml| 4 ++-- modules/jaxws-mar/pom.xml| 4 ++-- modules/jaxws/pom.xml| 4 ++-- modules/jibx-codegen/pom.xml | 4 ++-- modules/jibx/pom.xml | 4 ++-- modules/json/pom.xml | 4 ++-- modules/kernel/pom.xml | 4 ++-- modules/metadata/pom.xml | 4 ++-- modules/mex/pom.xml | 4 ++-- modules/mtompolicy-mar/pom.xml | 4 ++-- modules/mtompolicy/pom.xml | 4 ++-- modules/osgi-tests/pom.xml | 4 ++-- modules/osgi/pom.xml | 4 ++-- modules/ping/pom.xml | 4 ++-- modules/resource-bundle/pom.xml | 4 ++-- modules/saaj/pom.xml | 4 ++-- modules/samples/java_first_jaxws/pom.xml | 14 +- modules/samples/jaxws-addressbook/pom.xml| 8 ++-- modules/samples/jaxws-calculator/pom.xml | 8 ++-- modules/samples/jaxws-interop/pom.xml| 12 modules/samples/jaxws-samples/pom.xml| 16 ++-- modules/samples/jaxws-version/pom.xml| 6 +- modules/samples/pom.xml | 2 +- .../samples/transport/https-sample/httpsClient/pom.xml | 8 ++-- .../samples/transport/https-sample/httpsService/pom.xml | 8 ++-- modules/samples/transport/https-sample/pom.xml | 6 +- modules/samples/transport/jms-sample/jmsService/pom.xml | 8 ++-- modules/samples/transport/jms-sample/pom.xml | 6 +- modules/samples/version/pom.xml | 4 ++-- modules/schema-validation/pom.xml| 4 ++-- modules/scripting/pom.xml| 4 ++-- modules/soapmonitor/module/pom.xml | 4 ++-- modules/soapmonitor/servlet/pom.xml | 4 ++-- modules/spring/pom.xml | 4 ++-- modules/testutils/pom.xml| 4 ++-- modules/tool/archetype/quickstart-webapp/pom.xml | 4 ++-- modules/tool/archetype/quickstart/pom.xml| 4 ++-- modules/tool/axis2-aar-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-ant-plugin/pom.xml| 4 ++-- modules/tool/axis2-eclipse-codegen-plugin/pom.xml| 4 ++-- modules/tool/axis2-eclipse-service-plugin/pom.xml| 4 ++-- modules/tool/axis2-idea-plugin/pom.xml | 4 ++-- modules/tool/axis2-java2wsdl-maven-plugin/pom.xml| 4 ++-- modules/tool/axis2-mar-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-repo-maven-plugin/pom.xml | 4 ++-- modules/tool/axis2-wsdl2code-maven-plugin/pom.xml| 4 ++-- modules/tool/axis2-xsd2java-maven-plugin/pom.xml | 4 ++-- modules/tool/maven-shared/pom.xml| 4 ++-- modules/tool/simple-server-maven-plugin/pom.xml | 4 ++-- modules/transport/base/pom.xml
svn commit: r54976 - /dev/axis/axis2/java/core/1.8.1/
Author: robertlazarski Date: Tue Jun 7 21:19:14 2022 New Revision: 54976 Log: Axis2 1.8.1 for https://dist.apache.org/repos/dist/release/axis/axis2/java/core/1.8.0 Added: dev/axis/axis2/java/core/1.8.1/ dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.sha512 dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.sha512 dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.sha512 dev/axis/axis2/java/core/1.8.1/axis2-idea-plugin-1.8.1.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2-idea-plugin-1.8.1.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2-idea-plugin-1.8.1.zip.sha512 dev/axis/axis2/java/core/1.8.1/axis2.eclipse.codegen.plugin-1.8.1-dist.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2.eclipse.codegen.plugin-1.8.1-dist.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2.eclipse.codegen.plugin-1.8.1-dist.zip.sha512 dev/axis/axis2/java/core/1.8.1/axis2.eclipse.service.plugin-1.8.1-dist.zip (with props) dev/axis/axis2/java/core/1.8.1/axis2.eclipse.service.plugin-1.8.1-dist.zip.asc (with props) dev/axis/axis2/java/core/1.8.1/axis2.eclipse.service.plugin-1.8.1-dist.zip.sha512 Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip -- svn:mime-type = application/zip Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.asc == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.sha512 == --- dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.sha512 (added) +++ dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-bin.zip.sha512 Tue Jun 7 21:19:14 2022 @@ -0,0 +1 @@ +d53a8421f2dd87b9430a39d646003b282e18853f10a4dc64ac8457c37a039087a0f8eab6991e5fa4701bdc3c0f978855eb4c0b429d2ab55a694cdb5920e4650f \ No newline at end of file Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip -- svn:mime-type = application/zip Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.asc == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.sha512 == --- dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.sha512 (added) +++ dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-src.zip.sha512 Tue Jun 7 21:19:14 2022 @@ -0,0 +1 @@ +d4f820c761fac3c8bc6d534d34112d3d9085ae33b6c4e1268b20b1d8ff8827d4321b1d7a7cc22a232163d3d852b3553e7c90c6808fa2835434f627c174c261a2 \ No newline at end of file Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip -- svn:mime-type = application/zip Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.asc == Binary file - no diff available. Propchange: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.sha512 == --- dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.sha512 (added) +++ dev/axis/axis2/java/core/1.8.1/axis2-1.8.1-war.zip.s