any suggestion pls?
On Fri, Apr 15, 2011 at 10:54 AM, Martín R. <[email protected]> wrote: > I'll summarize and attach files. I use WinXP, and default configs of > tomcat7, axis2-1.5.4, JDK 6. (and wsdl2java -p com.cliente -d adb -u -uw > -uri http://127.0.0.1/SNMP/services/Prueba?wsdl) > > 2 cases: > -when I don't put any wsdl in META-INF : no problem. > -when I put a copy of http://127.0.0.1/SNMP/services/Prueba?wsdl in > META-INF/Prueba.wsdl : session lost and fault with method that use > ServiceContext too (see code attached). > > > Any suggestion? Thank you very much. > > > On Wed, Apr 13, 2011 at 6:39 PM, Stadelmann Josef < > [email protected]> wrote: > >> 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. >> > >
