os = conn.getOutputStream();
} catch (Exception e) {
throw new BurlapRuntimeException(e);
}
BurlapOutput out = _factory.getBurlapOutput(os);
if (! _factory.isOverloadEnabled()) {
}
else if (args != null)
methodName = methodName + "__" + args.length;
else
methodName = methodName + "__0";
if (log.isLoggable(Level.FINE))
log.fine(this + " calling " + methodName + " (" + method + ")");
out.call(methodName, args);
try {
os.flush();
} catch (Exception e) {
throw new BurlapRuntimeException(e);