Package org.araneaframework.servlet

Examples of org.araneaframework.servlet.ServletOutputData


    childService._getComponent().destroy();
  }
 
  public void service(HttpServletRequest request, HttpServletResponse response) throws Exception {
    ServletInputData input = new StandardServletInputData(request);
    ServletOutputData output = new StandardServletOutputData(request, response);

    request.setAttribute(INPUT_DATA_REQUEST_ATTRIBUTE, input);
    request.setAttribute(OUTPUT_DATA_REQUEST_ATTRIBUTE, output);

    childService._getService().action(null, input, output);
View Full Code Here


 
  public void action(Path path, InputData input, OutputData output) throws Exception {
    super.action(path, input, output);
    ServletAtomicResponseOutputExtension are =
      (ServletAtomicResponseOutputExtension)output.narrow(ServletAtomicResponseOutputExtension.class);
    ServletOutputData out = (ServletOutputData)output;
   
    out.getResponse().getOutputStream().write(new byte[] {1});
   
    out.getResponse().getWriter().write("Hello, Word!");
   
    if (doRollback) {
      are.rollback();
    }
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.servlet.ServletOutputData

Copyright © 2018 www.massapicom. 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.