minor debugging tweaks
This commit is contained in:
parent
b2d0d8d756
commit
c469170727
2 changed files with 3 additions and 2 deletions
|
@ -19,7 +19,7 @@ public class Benchmark implements Runnable {
|
||||||
Date date;
|
Date date;
|
||||||
|
|
||||||
public Benchmark () throws Exception {
|
public Benchmark () throws Exception {
|
||||||
client = new XmlRpcClientLite (url);
|
client = new XmlRpcClient (url);
|
||||||
|
|
||||||
Vector args = new Vector ();
|
Vector args = new Vector ();
|
||||||
// Some JITs (Symantec, IBM) have problems with several Threads
|
// Some JITs (Symantec, IBM) have problems with several Threads
|
||||||
|
|
|
@ -328,7 +328,8 @@ public class XmlRpcClient implements XmlRpcHandler {
|
||||||
* Just for testing.
|
* Just for testing.
|
||||||
*/
|
*/
|
||||||
public static void main (String args[]) throws Exception {
|
public static void main (String args[]) throws Exception {
|
||||||
// XmlRpc.setDebug (true);
|
// XmlRpc.setDebug (true);
|
||||||
|
// XmlRpc.setKeepAlive (true);
|
||||||
try {
|
try {
|
||||||
String url = args[0];
|
String url = args[0];
|
||||||
String method = args[1];
|
String method = args[1];
|
||||||
|
|
Loading…
Add table
Reference in a new issue