Package org.apache.axis2.context

Examples of org.apache.axis2.context.MessageContext.readExternal()


       /**/
      ResultSet rs = stmt.executeQuery("select * from wsrm_msgctx where ctx_key='" +
          key + "'");
      rs.next();
      MessageContext msgCtx = new MessageContext();
      msgCtx.readExternal(new ObjectInputStream(rs.getBinaryStream("ctx")));
      msgCtx.activate(configContext);
      msgCtx.setProperty(Sandesha2Constants.POST_FAILURE_MESSAGE, Sandesha2Constants.VALUE_TRUE);
      rs.close();
      stmt.close();
      log.debug("RetrieveMessageContext get from DB");
View Full Code Here


            throws IOException, ClassNotFoundException {
        ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
        ObjectInputStream ois = new ObjectInputStream(bais);
       
        MessageContext mcRead = new MessageContext();
        mcRead.readExternal(ois);
        return mcRead;
    }

    private ByteArrayOutputStream serializeMessageContext(MessageContext msgCtx)
            throws IOException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.