# HG changeset patch # User e085711 # Date 1318355267 -32400 # Node ID 99747d2cb4cd8bb31cc58bb06154d5bc3d625ec2 # Parent 1c0af90f7f5934851ab7007236f6bf39cba46e75 comment out XmlRpc diff -r 1c0af90f7f59 -r 99747d2cb4cd src/myVncProxy/VncProxyService.java --- a/src/myVncProxy/VncProxyService.java Wed Oct 12 02:24:36 2011 +0900 +++ b/src/myVncProxy/VncProxyService.java Wed Oct 12 02:47:47 2011 +0900 @@ -68,7 +68,7 @@ String url; - XmlRpc client; +// XmlRpc client; String wpUsername, wpPassword, blogId; String title = "TreeVNC"; @@ -145,6 +145,7 @@ rfbThread = new Thread(this); accThread = new Thread(new AcceptThread(rfb, 5999)); +/* if(url != null) { try { client = new XmlRpc(blogId, wpUsername, wpPassword, url ); @@ -161,16 +162,17 @@ e.printStackTrace(); } } +*/ } - +/* void setStatusXmlRpc(XmlRpc client, String title, String hostname, int port) { client.setTitle(title); String description = makeDescription(hostname, Integer.toString(port)); client.addDescription(description); } - +*/ String makeDescription(String hostname, String port) { String description = "

" + hostname + " " + port + "

\n"; return description;