// Echo the connection request back to the client side
// driver with the correct connId, so that it can
// start sending the pull requests...
ServletOutputStream sos = response.getOutputStream();
p.writePacket(sos);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(bos);
dos.writeUTF("ServerName=" + serverName);
dos.writeUTF(request.getRemoteAddr());