Maybe you can tell us just a little bit about your surrounding components and 
systems from which you personally think they should make it for you?

What is you Platform

What is your AS

What is your Web Service Engine used

How did you configure it?

What commands and tools did you use to create stub and skeleton?

Just if in case this is not too much work for you.

Josef J

 

Von: Martín R. [mailto:[email protected]] 
Gesendet: Mittwoch, 13. April 2011 12:27
An: [email protected]
Betreff: [newbie]call a setNumber(int i) method and recovery with getNumber (by 
using only of code generation tools).

 

This is my simple ws:

 

public class Test {

protected int timeout=34;



public void setTimeout(int timeout) {
    this.timeout = timeout;
}

public int getTimeout() {
     return timeout;
}

}

 

, and by using wsdl2java to generate the client code and creating a 
TestMain.java:

 

stub.setTimeout(111111); 
System.out.println("value: "+stub.getTimeout());

 

I get 34. I want to get 111111 without have to look into the internals of Axis2 
(Contexts...).

 

Thank you, list.

Reply via email to