/* 130 */ if (log.isTraceEnabled()) {
/* 131 */ log.trace("ContentLength: " + length + "\nContentType: " + type);
/* */ }
/* 133 */ InputStream is = conn.getInputStream();
/* 134 */ ObjectInputStream ois = new ObjectInputStream(is);
/* 135 */ MarshalledValue mv = (MarshalledValue)ois.readObject();
/* 136 */ ois.close();
/* */
/* 138 */ Object obj = mv.get();
/* 139 */ if (!(obj instanceof Naming))
/* */ {
/* 141 */ String msg = "Invalid reply content seen: " + obj.getClass();
/* 142 */ Throwable t = null;
/* 143 */ if ((obj instanceof Throwable))