Re: abort call.invoke (SOAP client call)

2005-01-26 Thread pesmail
I hope that possibility of cancellation will be included in some next release. At this time, I probably switch back to Apache XML-RPC, which I was using. It is old and probably unsupported, but I am able to modify it. Apache Axis is far too complicated for me to modify (patch). I'm reading lots of

Re: RE : abort call.invoke (SOAP client call)

2005-01-25 Thread pesmail
Thanks for that idea with connection, that sounds really promising. But can you push me near the process of getting the Axis connection, please? I am digging throught Axis sources and its JavaDoc help and can't find any glue..

Re: abort call.invoke (SOAP client call)

2005-01-25 Thread pesmail
I tried the Thread.join(), recommended in that discussion, but it does nothing.

Re: abort call.invoke (SOAP client call)

2005-01-25 Thread pesmail
Oh, sorry for doublepost, I had some problems with gmail.. Thanks for your reply, but it's not so simple. You cannot kill or terminate thread in java. You can only set some boolean value, that you want to terminate and the thread have to terminate on it's own. Like this: public void run() { do

abort call.invoke (SOAP client call)

2005-01-25 Thread pesmail
Hi, I'm trying to make a GUI application which is getting data through SOAP using Apache Axis. User can make a request for fetching data (by pressing some button), after which action he can deside, he don't need that data - by pressing stop button. When a user presses that "request" button, I cr