Questions tagged [apache-axis]

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] )

2412 questions
0
votes
1 answer

Added axis2 as a maven dependency in my project

Moving my J2EE web project to maven. I am using axis2 1.7.8 in my existing code and it has all the jars in the WEB-INF/lib which are in axis2 1.7.8. I am adding the following dependency in the my pom.xml
0
votes
1 answer

Java Soap Service Add UsernameToken Header

I am using Axis2 for generate code from wsdl. I can call soap service via stub class and it is ok. But i have to send soap header like below. How can i do this?
erdem
  • 1
  • 1
0
votes
2 answers

.net Client consuming Axis2 Web Service

I have an .net 2.0 C# client app that has a web service reference to an Axis2 Java Webservice. The idea is to send some xml data to the webservice, so it can be parsed and inserted into database. The WS method accepts a single parameter of type…
SoftwareGeek
  • 15,234
  • 19
  • 61
  • 78
0
votes
1 answer

Java Webservice Deployment Options

Sorry for the length of this, but more info is usually better than not enough... I needed to add some server based functionality to an Android application which I have in the market. Majority of my past experience has been working with .Net web…
Jon
  • 3
  • 1
0
votes
1 answer

Permissions for file i/o from within a web service on linux/axis2

I am trying to manipulate a file and create a new folder from within a web service and am running into a permission denied error. What is the recommended way to configure these permissions? The use case is as follows. A user name is passed as a…
0
votes
2 answers

Specified throwing AxisFault in WSDL file

I generate my web service from WSDL file. But I need t o define in this file that my methods in SkeletonInterface thow Axis Fault Exception. Smth like: void method() throws AxisFault{....} In which way I can do this (in WSDL). Thanks.
Oleksandr
  • 2,346
  • 4
  • 22
  • 34
0
votes
1 answer
0
votes
1 answer

Axis2 and Hibernate integration (without Spring)

We developing web services with Axis2 framework (legacy system). With jdbc it working fine, but I need to use it with hibernate. I tried 2 approaches: (Outside aar) I put hibernate*.jars to EARContent/lib and hibernate.cfg.xml to…
Vik Gamov
  • 5,446
  • 1
  • 26
  • 46
0
votes
1 answer

Consuming Axis2 Web Services with JSON

I need to consume an Axis2 web service with an Android application. The Axis2 service is using JDK1.5 if it makes any difference. I made Axis2 give JSON outputs. This turned out to be relatively simple, simply by modifying axis2.xml and adding the…
user684934
0
votes
1 answer

JAX-WS marshalling Error. SomeClassV1R5 cannot be converted into the destination type of SomeClass

We have migrated from JAX-RPC to JAX-WS services with Websphere(8.5.5 service pack 13) and default Axis2 implementation. All services are running fine but 1 client getting strange error for the same operations which are working fine for others. We…
Kishor
  • 31
  • 1
  • 8
0
votes
1 answer

SOAP AXIS2 - Webservice on WebSphere 8.5

I am trying to create a Webservice implementation deployed on a WebSphere 8.5 application server. I already created the skeleton and all the stubs but I don't know how to package my application. I noticed that using axis2-wsdl2code-maven-plugin a…
Francesco Rizzi
  • 631
  • 6
  • 24
0
votes
1 answer

axis2 client Trying to write END_DOCUMENT when document has no root (ie. trying to output empty document) error

I have a legacy WebServiceProject which connects to ws-security enabled web service using axis2 & rampart. Here is my axis2.xml: Timestamp UsernameToken Encrypt Signature
Hamit
  • 623
  • 1
  • 8
  • 18
0
votes
1 answer

Root element in axis2.xml

So I'm really hoping this question will be closed as obvious and I just don't know where to look. I looked in the axis2 documentation but I cannot find what to call the root element in axis2.xml
Justin Dearing
  • 14,270
  • 22
  • 88
  • 161
0
votes
1 answer

ClassCastException in AXIS 2 web service access: RequestURIBasedDispatcher

I'm evolving my AXIS 1 web service to a AXIS 2. I have managed to deploy the web services wihtout handlers and they run fine, but now, I'm trying to add handlers in order to process the SOAP headers (security reasons). In AXIS 1, I defined handlers…
tovarichML
  • 119
  • 1
  • 2
  • 9
0
votes
1 answer

Custom package name of generated classes axis2-wsdl2code-maven-plugin

After trying to understand how wsdl2java plugin works, I got to understand that in the configuration in pom, we specify the package name where the skeletons will be generated from the wsdl. wsdl2code
user13542416