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