changeset 159:99747d2cb4cd

comment out XmlRpc
author e085711
date Wed, 12 Oct 2011 02:47:47 +0900
parents 1c0af90f7f59
children 29ec6fbcb079
files src/myVncProxy/VncProxyService.java
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 = "<h1>" + hostname + " " + port + "<h1>\n";
 		return description;