Tagged Questions
A Web Services/SOAP/WSDL framework supported by the Apache Software Foundation
35
votes
2answers
17k views
Difference between Apache CXF and Axis
What are the advantages of using Apache CXF over Apache Axis and vice versa?
17
votes
6answers
9k views
Calling .NET Web Service (WSE 2/3, WS-Security) from Java
I need to call a web service written in .NET from Java. The web service implements the WS-Security stack (either WSE 2 or WSE 3, it's not clear from the information I have).
The information that I ...
12
votes
3answers
7k views
Java Webservice Client (Best way)
I have a third party WSDL, I need to write code in JAVA for a web service client to invoke the operations in the third party WSDL. Right now, I have generated the client stub using the WSDL2JAVA tool ...
8
votes
2answers
8k views
How do you Change a Package's Log Level using Log4j?
I've encountered the following bug:
http://issues.apache.org/jira/browse/AXIS2-4363
It states the following:
This error only occurs when log level
for org.apache.axiom is DEBUG so a
...
7
votes
3answers
3k views
Are Axis2 generated stubs thread-safe?
Are client stubs generated from WSDL by Axis2 thread-safe?
Of course, "thread-safe" isn't necessary a rigorously defined term, so I'm at least interested in the following:
Are different instances of ...
6
votes
4answers
2k views
Would you use Metro instead of Axis2? [closed]
For a starting project, why would you use Metro instead of Axis2?
What should be considered?
Performace?
Easiness?
Tools/IDE/Plugins availability?
6
votes
7answers
6k views
What's the minimum classpath for an Axis2 client?
I want to build an Axis2 client (I'm only accessing a remote web service, I'm not implementing one!) with Maven2 and I don't want to add 21MB of JARs to my project. What do I have to put in my pom.xml ...
5
votes
1answer
255 views
Problem with deserialization of String sent over wire with XStream
I am trying to create a simple webservice which takes a String as input and returns string as output.
I am using Ecelipse Helios and Axis 2.15.
I am writing simple WSDL for the same.
I am generating ...
5
votes
1answer
114 views
converting Object -HashMap to XMLObject
I have created a webservice which takes a HashMap as parameter.
I generated the stubs/skeletion using XMLBeans and I am trying to set the values in the parameter and pass it to the webservice.
The ...
5
votes
3answers
3k views
Error in WCF client consuming Axis 2 web service with WS-Security UsernameToken PasswordDigest authentication scheme
I have a WCF client connecting to a Java based Axis2 web service (outside my control). It is about to have WS-Security applied to it, and I need to fix the .NET client. However, I am struggling to ...
5
votes
2answers
776 views
How to write web services in java
Though this might appear as a duplicate of Java Web Services , I would like to know Where to start and to continue.In the past, I have invested so much of time to find where to start but I wasn't able ...
5
votes
3answers
870 views
Accessing a web service from your browser
I'm relatively new to how web services work so I've gone though a tutorial from
http://blog.saminda.org/2008/07/light-weight-osgi-based-axis2-powered.html
which sets up a web service that prints ...
5
votes
3answers
1k views
Backwards compatibility and Web Services
So I'm a bit new to web services and a situation recently came up where we added an element to a data-type that gets returned to the client. The clients complained that this broke their ...
5
votes
5answers
9k views
Axis2's wsdl2java fails on RPC/Encoded style web services
Is there any alternative to Axis2? Or the way to make it work (different data binding, for example)?
Retrieving document at '...'.
Exception in thread "main" ...
4
votes
2answers
106 views
How to transfer a java.util.Map through a Web Service?
My method returns a Map<int, String[]>. Is it possible to pass it through to a Web Service?
4
votes
1answer
196 views
java.lang.ClassCastException in tomcat server logs when running webservices with AXIS2
I have written a webservice it works perfectly fine on the UI and all the Unit tests are passing.
I am able to send the request and response to and from Webservice.
But when I check the server log ...
4
votes
2answers
399 views
org.apache.axis2.AxisFault: Unknow type can not serialize while passing array of objects in webservice
I have created a webservice which takes a DTO as a parameter. And DTO contains an array of objects.
I've generated WSDL and skeletons and clients.
I am trying to invoke the webservice if I pass array ...
4
votes
3answers
2k views
How can I solve “java.lang.LinkageError: loader constraint violation” during execute Jersey 1.6 & axis2 1.3 in one web application?
I already have soap based web service running with axis2 1.3.
These day, we have a plan to develop RESTful web service using Jersey 1.6.
I made web application( war file ) with axis2 1.3 and Jersey ...
4
votes
1answer
308 views
How to enable WS-Security (Rampart) in a Axis2 JAX-WS service (provider side)?
Is it possible to specify security policy assertions when deploying a JAX-WS service in Axis2? So far I found only one way which is to configure policy globally (i.e. in axis2.xml). But can it be done ...
4
votes
2answers
1k views
Apache Axis2 Web service runtime in Tomcat v7.0 Server does not support the service project Test
Apache Axis2 Web service runtime in Tomcat v7.0 Server does not support the service project Test. Why? Please help me
4
votes
4answers
268 views
Extending Axis Code Generation module
In short, what I'm looking to achieve is the ability to run wsdl2java and generate extra code. Has anyone done this and can offer hints/tips/advice, has anyone done anything similar with a different ...
4
votes
6answers
2k views
What methods exist to auto-generate java client stubs from WSDL files?
I'm new to web-services and have read up some info about XML,SOAP,and WSDL. It's very interesting! I'm working on an existing project that has a web-service and client. However the client the 'higher ...
4
votes
4answers
221 views
Can I include both Apache Axis 1 and 2 libraries in the same project?
If it sounds like a ridiculous idea then it is. The client only wants to have to install one project on their server. Our web service will be bridging between mobile phones and various SOAP services ...
4
votes
2answers
550 views
Axis2 and customizing an XML schema in a bottom-up approach
I am using axis2 to create a web service from a java class I created. Everything works well, but I'd like to be able to customize the wsdl and I cannot figure out how to do it. I tried using some ...
3
votes
2answers
77 views
using axis2 ramaprt module with own security framework
I have webservice (server-side) implemented using axis2 in my project. We want to enable WS-security in the existing web services. We are evaluating if apache ramapart module fits our need. Here is ...
3
votes
2answers
134 views
AXiS2 - Problem in returning the String value. < and > are getting converted to < and >
I have written a simple web service which takes string as an argument and returns a String as output.
The service is something like this :
@WebService(name = "MyWebService", serviceName = ...
3
votes
1answer
139 views
Changing log level on AXIS and cxf webservices
I am accessing a webservice deployed in some other remote machine which is implemented using axis2.
I have created a webesrvice using cxf which in turn invokes the other wesbervice which i mentioned ...
3
votes
3answers
188 views
Can one specify Java warning settings per project in Eclipse?
I have a Java project which is a combination of human-written Java code and Java code generated by axis2.
The axis2 generated code provokes thousands of warnings from the Java compiler (either javac ...
3
votes
4answers
105 views
Remote Web Services
I am new to web services. I have a requirement in my project. I have to consume the web services of our vendor in my project. All he has shared with me is a WSDL file and a document about the ...
3
votes
2answers
7k views
axis2 maven example
I try to use axis2 (1.5.1) version to generate java codes from wsdl files, but I can't figure out what is the correct pom.xml
<build>
<plugins>
<plugin>
...
3
votes
1answer
160 views
Why would I want to use anything other than WCF?
After completing several small projects with WCF, I'm quite happy with what it can do.
However, having spent a brief amount of time looking into the alternatives, I'm struggling to find exactly what ...
3
votes
3answers
1k views
JAXB Unmarshall Created an Empty Object
I am using JAXB to unmarshal an XML file into an object tree. The root object is non-null, but all of it's members are null even though there is data in the XML file. My object classes were ...
3
votes
2answers
2k views
How to do Basic Authentication with an Axis2 ADB Client?
Hey I'm trying to figure out how to do Basic Authentication with an ADB Axis2 version 1.5 Client.
I'm trying the following:
HttpTransportProperties.Authenticator basicAuth = new ...
3
votes
3answers
702 views
What is the best way to return big chunks of binary data from a webservice?
I am implementing a webservice that returns the content of binary files. The files are about 100MB big. The webservice and the client are build upon Axis2.
What is the best joice for the return type ...
3
votes
3answers
2k views
Axis2 versus Sun Metro
Could anyone please compare Axis2 and Sun metro web service based on following parameters?
Speed
Hot Deployment
Flexibility
Stability
Composition and Extensibility
Security
Document availability ...
3
votes
3answers
2k views
Axis2 - Date Format
Scenario
The date format which is output as a response to the Web Service client by Axis2 is formatted as "2009-08-28+01:00". I would like to change this to show only the date without the timezone ...
3
votes
1answer
981 views
Axis2 SOAP Envelope Header Information
I'm consuming a web service that places an authentication token in the SOAP envelope header. It appears (through looking at the samples that came with the WS WSDL) that if the stub is generated in ...
3
votes
1answer
857 views
Help on Axis2 Deployment Exception
I am currently working on Axis2 deployed on Resin 3.1.3. However, I got the below error during deployment:
org.apache.axis2.deployment.DeploymentException: The "Dispatch" phase is not found on the ...
3
votes
1answer
1k views
axis wsdl generation
I'm using Axis to model a sample WebService. What I'm doing now is trying to understand which are the limitations of the automated wsdl and code generation.
Now for some server side code:
this is ...
3
votes
6answers
2k views
WSDL2Code (Maven) auto-generates corrupt classes (packages)
I am currently in the process of replacing the IBM WebService framework with Axis2. When generating the code from the WSDL file, I use the Maven plugin WSDL2Code. However, the code created is always ...
3
votes
1answer
4k views
How do I add a namespace reference to a SOAP response with Apache Axis2 and WSDL2Java
I'm looking at the SOAP output from a web service I'm developing, and I noticed something curious:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
...
2
votes
0answers
110 views
Axis2 AXIOM Serialization
I am trying to serialize a simple POJO into an AXIOM OMElement, for using with Axis2 web services.
The POJO stores a String, an Enum and an Object value.
While the String and most Object values are ...
2
votes
1answer
34 views
Checking the size of received data in Axis2 web services
Is there any way of enforcing a maximum size for data received from the client, in an Axis2 Java web service?
This would be needed, for example, in order to protect from flooding attacks against the ...
2
votes
1answer
62 views
Can each of axis2 web services have own log file using log4j?
Is it possible to achive each of axis2 web services have own log file using log4j?
For example i want my authentication service have auth.log and pool service have pool.log file.
Best regards,
Bojan
2
votes
0answers
188 views
wsdl2java with Basic Authentication (Axis 1.6.1)
I am using wsdl2java to generate my java stub code for a web service.
I know it has been a bug since 1.4 that a wsdl source that requires HTTP basic auth could not be accessed. You will receive a ...
2
votes
0answers
198 views
Rampart Client throwing exception when trying to consume the service
I am trying to invoke a axis2 web service enabled with Rampart security. When I try to invoke the service through the client I am getting the following exception, (I have also included Jaxen Jar in my ...
2
votes
1answer
84 views
Writing Webservice clients using HttpURLConnection
I have a question related to Axis2 Webservices .
I have My Webservice deployed in Tomcat Server .
Right now i am writing a Client for my Webservice using
public static void main(String[] args) {
...
2
votes
0answers
56 views
What is the windows system setting to use the primitive NTLM authentication supported by Apache Http Client?
We are using Apache Axis client to communicate to a report server. The Apache Client uses Apache Http Client for NTLM authentication. Based on the below post
How can I get jcifs to play nicely with ...
2
votes
1answer
348 views
axis2 support in netbeans
I am using netbeans 7.0 and want to generate axis 2 web service from my java code.
I googled and it and found that they removed support for axis to in 7.0 v.
Then i came across this link
...
2
votes
3answers
420 views
How to return XML from web service
This may be one of the insane / stupid / dumb / lengthy questions as I am newbie to web services.
I want to write a web service which will return answer in XML format (I am using my service for YUI ...