names.addAll(methods.getAllNames());
}
ByteArrayOutputStream data = new ByteArrayOutputStream();
HproseWriter writer = new HproseWriter(data, mode);
data.write(HproseTags.TagFunctions);
writer.writeList(names);
data.write(HproseTags.TagEnd);
responseEnd(ostream, data, null);
}
protected void handle(InputStream istream, OutputStream ostream, HproseMethods methods) throws IOException {