2,383 questions
0 votes
0 answers
29 views
AXIS 2 issue with String array type in WSDL
I have an existing AXIS 1 WSDL. Defining in WSDL is not working with AXIS 2 when try to generate service classes using wsdl2java. Used below code to define the element. <xs:element name="name&...
0 votes
1 answer
100 views
How to fix: cannot start Apache Axis2 standalone server on Windows, console stops printing at "Using AXIS2_HOME ..." and does not continue
The Problem When I try to start Apache Axis2 standalone server on Windows, the console stops printing at "Using AXIS2_HOME path\to\axis2" and the server does not start: C:\Users\me>%...
0 votes
0 answers
34 views
JAXWS and ApacheAxis2 not able to colive in dependencies
Due to some unavoidable reasons, I have both JAXWS-2.3.1 and ApacheAxis2-1.6 in my dependencies. I have written code using JAXWS to call SOAP API. I’m encountering an issue when trying to call a SOAP ...
0 votes
0 answers
59 views
How can I use the FedEx REST API without relying on org.apache.axis?
I have inherited a project that uses the FedEx REST API for tracking and shipping. I've been asked to remove dependencies on org.apache.axis (the original, not axis2) from our project because it has ...
0 votes
1 answer
156 views
Modify CXF soap response to have different prefix and remove namespace
We are migrating from Axis-2 to CXF and trying to have similar responses. Axis-2 response for soap request <?xml version="1.0" ?> <soapenv:Envelope xmlns:soapenv="http://...
-1 votes
1 answer
105 views
How to invoke apache axis soap services?
I need to create a client for some legacy soap services. I use java and preferably I would create a project with with proper rest endpoints that proxy request/response to this archaic sopa service. I ...
0 votes
0 answers
373 views
How to create a JAVA SOAP Web Service?
I want to create a SOAP Web Service. I am using JDK 17, Axis2 1.8.2, Tomcat 10.1, Eclips (2024-03). I want to implement some endpoints to call with SOAP UI or other client. Issues: After creating the ...
0 votes
1 answer
155 views
What is the alternate of AxisHTTPSessionListener?
I am using AxisHTTPSessionListener in my web.xml as listener like below. <listener> <listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class> </...
0 votes
0 answers
280 views
Failure to Install Axis2 1.8.2 Eclipse Plugins
I've downloaded the Apache Axis2 1.8.2 Eclipse plugins from https://axis.apache.org/axis2/java/core/download.html: axis2.eclipse.codegen.plugin-1.8.2-dist.zip axis2.eclipse.service.plugin-1.8.2-dist....
-1 votes
2 answers
118 views
java - soap xml document character Invocation arguments were modified at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
I have a java class XMLHelper.java that has a method called parseFromString. This method receives a string xml soap request, parses it and converts it into a Document. This method convert the hex ...
0 votes
0 answers
248 views
Exception occurred during code generation for WSDL : null on WSDL Axis2 1.18 Client generation
I have a WSDL file from a SOAP Web service provided by another company to us. Based on that WSDL in our project we have generated a Client Stub by using Eclipse and Axis2 v1.7.9. Because of some ...
2 votes
0 answers
3k views
Does Axis 2 support Java 17?
I get the following error while using Axis 2 with Java 17. Previously, I was using Java 8. It was all good. During this migration (from Java 8 to Java 17) I getg this error. Can any one help me here ...
1 vote
1 answer
1k views
IWAB0503E Unable to update Java build path. Please check your system environment. java.io.FileNotFoundException: /lib/axis.jar
I got this error when trying to create a web service client in Eclipse. Already tried adding axis.jar into the build path but it won't fix. Does anyone know what happened or where /lib/axis.jar refers ...
0 votes
0 answers
20 views
Prompt for timeout when calling WebService using Axis
This is the code I wrote,I am sure there is no problem with the address and request parameters set here. The request parameters are of XML type String result = ""; try { ...
0 votes
0 answers
97 views
Interface timeout when calling WebService
I use Axis1.4, the Java language, to call the interface of the other party's system. After sending the request according to the normal steps, I always hold a timeout, and I even set the timeout time. ...