POJO « axis « Java Enterprise Q&A





1. Parsing custom parameters from an Axis2 exposed POJO    stackoverflow.com

I have a web service operation that I am exposing with Axis2. Let's say it's like this:

public class MyService{

  public String helloworld(String yourName){
    return "Hello " + yourName;
 ...

2. Variable number of arguments in an Axis2 POJO    stackoverflow.com

I have a web service that I built with Axis2/Java. The web service will take in a list of objects and will process them. I'll use the following operation as ...

3. Axis2 POJO Web Services    stackoverflow.com

I have a POJO which is being deployed as a webservice in Axis2 - Tomcat combo. What is the best way to supply runtime configurations to the service? All servcie related ...

4. How to pass values as arguments to a method in service class(POJO) without AXIS2    stackoverflow.com

Actually I have a requirement in which an Android application will send some data by WebService. For that I prepared a service that I have mentioned here. I have seen ...

5. Axis2: Can Attachachments and POJOs work together?    coderanch.com

Hello, I'm making my first steps in Axis2. My task is to implement a document retrieval service. Document is a zipped binary file. Is there a way to do this in a simple way with POJOs in Axis? In the manual there is only talk about doing this with the skeleton generation approach. And the code there only shows how to ...

6. Axis2 (1.5) - Unable to see POJO deployed as service    coderanch.com

New to Axis2. Using the POJO guide for exposing service found in link: http://ws.apache.org/axis2/1_5/pojoguide.html I can see the wsdl in the browser, but cannot see the service. The service apparaently was not found. Any suggestion will be appreciated. Following are the steps that I have taken. Axis2Weather (it is web project containing WebContent) | ----src | | | ----sample.pojo.data | | ...

7. Client for Axis2 POJO webservice giving error    coderanch.com

I have a WSDL from which I generated the Java Axis2 code (contract first approach). Code was generated using eclipse. Once the skeleton code was generated I filled in the methods with my business logic. I have craeted an .aar file and deployed this service on tomcat. I am able to see the service from http://localhost:8080/axis2/services/listServices and also able to view ...

8. Axis2 POJO Services    coderanch.com

Hello, I'm new to Axis2. I know someone else asked the same question before but I'm still looking for the answer. I'm using Eclipse Helios and Axis2 1.5. I want to develop a simple service that let clients upload and download files. Files are implemented by Datahandler objects and are encapsuladet in an object with few more informations. When i generate ...