200201202203204205206207208209210
out.startPacket(); out.writeInt(HmtpPacketType.QUERY_GET.ordinal()); out.writeString(to); out.writeString(from); out.writeLong(id); out.writeObject(value); out.endPacket(); if (_isAutoFlush) out.flush(); }
237238239240241242243244245246247
out.startPacket(); out.writeInt(HmtpPacketType.QUERY_SET.ordinal()); out.writeString(to); out.writeString(from); out.writeLong(id); out.writeObject(value); out.endPacket(); if (_isAutoFlush) out.flush(); }
274275276277278279280281282283284
out.startPacket(); out.writeInt(HmtpPacketType.QUERY_RESULT.ordinal()); out.writeString(to); out.writeString(from); out.writeLong(id); out.writeObject(value); out.endPacket(); if (_isAutoFlush) out.flush(); }
312313314315316317318319320321322
out.startPacket(); out.writeInt(HmtpPacketType.QUERY_ERROR.ordinal()); out.writeString(to); out.writeString(from); out.writeLong(id); out.writeObject(value); out.writeObject(error); out.endPacket(); if (_isAutoFlush) out.flush();
313314315316317318319320321322323
out.writeInt(HmtpPacketType.QUERY_ERROR.ordinal()); out.writeString(to); out.writeString(from); out.writeLong(id); out.writeObject(value); out.writeObject(error); out.endPacket(); if (_isAutoFlush) out.flush(); }
5758596061626364656667
if (log.isLoggable(Level.FINEST)) os = new HessianDebugOutputStream(os, log, Level.FINEST); Hessian2Output hOut = new Hessian2Output(os); hOut.writeObject(value); hOut.close(); } /**
597598599600601602603604605606607
{ res.setContentType("application/x-caucho-jsf-developer-aid"); Hessian2Output out = new Hessian2Output(res.getOutputStream()); out.writeObject(aidMap); out.flush(); }