<%@page import="java.net.*,java.util.*,java.io.*,com.netcodec.messenger.conference.*" language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% // configuration // //String root = System.getProperty("catalina.home"); //String path = root + File.separator + "webapps/ROOT/ucgate/conf.xml"; String src_ip = InetAddress.getLocalHost().getHostAddress(); int src_port = 8000; String dst_ip = "127.0.0.1"; int dst_port = 9003; // configuration // request.setCharacterEncoding("UTF-8"); String user_key = request.getParameter("user_key").trim(); String conference_key = request.getParameter("conference_key").trim(); HttpClient httpClient = new HttpClient(src_ip, src_port); httpClient.open(dst_ip, dst_port); httpClient.removeConference(user_key, conference_key); httpClient.close(); System.out.println("delete conference user_key : " + user_key + ", conference key : " + conference_key); %> user_key=<%= user_key%>&conference_key=<%=conference_key%>