Fixed bug in asynchronous client, although this is untested and
unused code. Eventually we'll have to switch to Apache XML-RPC since this is where bugs will get fixed from now on.
This commit is contained in:
parent
d141d65585
commit
7ee29bfdc3
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/**
|
||||||
* Copyright 1999 Hannes Wallnoefer
|
* Copyright 1999 Hannes Wallnoefer
|
||||||
* Implements a XML-RPC client. See http://www.xmlrpc.com/
|
* Implements a XML-RPC client. See http://www.xmlrpc.com/
|
||||||
*/
|
*/
|
||||||
|
@ -200,7 +200,7 @@ public class XmlRpcClient implements XmlRpcHandler {
|
||||||
runAsync (call.method, call.params, call.callback);
|
runAsync (call.method, call.params, call.callback);
|
||||||
call = dequeue ();
|
call = dequeue ();
|
||||||
}
|
}
|
||||||
releaseWorker (this, false);
|
releaseWorker (this, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void runAsync (String method, Vector params, AsyncCallback callback) {
|
void runAsync (String method, Vector params, AsyncCallback callback) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue