Apache Axis is a Web Services engine/framework that works with multiple languages. Use for all versions of Apache Axis. If your question is about a specific language version, use the tag for that language (i.e. Axis C should use [c] )
Questions tagged [apache-axis]
2412 questions
0
votes
1 answer
How to use Serializer from WSDL file in Java?
I want to make a CRUD website using a package from a web service. How can I get JSON format for return response? This code is to select a member using member id
try {
WsOtherLocator locator = new WsOtherLocator();
WsOtherSoap soapws…

ezra putra
- 1
- 1
- 5
0
votes
1 answer
Configure Apache HttpClient 4.5 as a transport sender in Axis2 stub
I am in the process of replacing Apache Httpclient 3.1 to 4.5 version, Our application is using AXIS 2 SOAP Web Service stub which underneath is using HTTPClient 3.1 TransportSender. I need to migrate it to use HttpClient 4.5 version. Below is the…

Yathish Manjunath
- 1,919
- 1
- 13
- 23
0
votes
1 answer
web service in Java using (tomcat + AXIS2), where is the root of the application?
I create a function that downloads a image to my local web server.
When I run this function like a Java Application, it works fine. But when I try to run this method using the Web Service made by AXIS2 (…

cleliodpaula
- 819
- 2
- 11
- 27
0
votes
1 answer
Ant fails to find junit for project generated with wsdl2java
I created a axis2 soap client project with unit tests using the following command:
wsdl2java -t -uri http://myDomain.tld/myService.svc?wsdl
I then ran ant and got build errors because it could not find junit methods such as fail(),assertNotNull(),…

Justin Dearing
- 14,270
- 22
- 88
- 161
0
votes
1 answer
Stub generated using Axis2 is unable to Maintain session between RESTful service and Client
I created a webservice and enabled session management on both server and client. It works FINE until I enable REST on the client by adding the 3rd line of code in the serviceStub.java.
The session management stops working.
// session management…

Denise Wu
- 201
- 1
- 2
- 6
0
votes
1 answer
Java - Override a WebRequest on Web Service Call
Quick background, our company connects to an ERP system (Sage) via web services for some functions. We have both c# (.net) and java code that performs calls to the Web Service (WS). Recently Sage introduced Basic Authentication into their…

j.hull
- 321
- 3
- 15
0
votes
1 answer
How to make Axis2 run in an OSGi environment?
I need to access an webservice in an OSGi-Environment (Equinox). I do already have the code for using the webservice as a stand-alone application.
The sample code uses Axis2 this seems to be a problem as I need to add all required libraries as…

Robert
- 39,162
- 17
- 99
- 152
0
votes
1 answer
SOAP request logging Tomcat 7 Axis2
We are trying to log all http requests made to our Tomcat server, in particular SOAP requests.
Our server setup is as follows:
Tomcat 7.0.11
Axis 2
Gentoo Linux
So far we have used the RequestDumperFilter class however this only shows us the…

charliequinn
- 430
- 3
- 10
0
votes
1 answer
Can we use Axis1 client code for Axis2 services?
Can we use Axis1 client code for Axis2 services?
We have deployed services using Axis .aar file. Can we access that services using Axis1 client code (i.e. without AXIOM API)?.

murali
- 1
- 2
0
votes
1 answer
Axis2 webservice client weblogic webservice client jar confilct
My application is a war deployed in weblogic 10. In one of my class, I need to make 2 webservice calls A and W. A is based on AXIS2 using wstx-asl-3.2.4.jar, W is based on weblogic webservice using jars in weblogic. I guess due to the conflict…

huahua
- 285
- 2
- 5
- 17
0
votes
0 answers
Legacy SOAP web service - need a new client
I have a legacy SOAP based web service, written using Apache Axis2. And the current client is created using plain old JAVA Sockets and HTTP 1.0.Planning to upgrade the client to use HTTP 2.0. What are the options based on the latest industry…

yonikawa
- 581
- 1
- 9
- 32
0
votes
1 answer
SOAP response get truncated for big payload
We have a legacy SOAP web service, implemented using Apache Axis 1. At the client environment, the response data sometimes gets truncated on certain API calls causing error. But when tested using SOAP UI client, it returns full data as expected.…

yonikawa
- 581
- 1
- 9
- 32
0
votes
1 answer
Returning a string array from a web service
I have created a web service for the following code but I am getting an exception:
org.apache.axis.InternalException:
java.lang.Exception: Couldn't find a
matching Java operation for WSDD
operation "andrQues" (0 args)" on
invoking the…

penchoco
- 301
- 1
- 3
- 8
0
votes
0 answers
Initialize transports and axis service client taking high time in multi threaded environment
i was getting too much time consumed by creating _serviceclient on stub and axis service when ever creating new instance of stub class in multi threaded environment (trying to create around 300 same stub approximately at a time taking more than 5…

Prabhu
- 76
- 2
- 6
0
votes
1 answer
WSWS7263E: The following exception occured : org.apache.axis2.AxisFault: HTTP(503) Unavailable address
I have a web service(WebService1) that calls another web service (WebService2), I deployed the WebService1 on WebSphere(WAS 8.0.0.5), when I am trying to access the WebService1 I am getting this error:
WSWS7263E: The following exception occurred :
…

Roxana Sh
- 294
- 1
- 3
- 14