Examples of StringResponse


Examples of org.apache.wicket.response.StringResponse

            // Temporarily replace the web response with a String response
            final Response webResponse = getResponse();

            try
            {
              final StringResponse response = new StringResponse();
              getRequestCycle().setResponse(response);

              Component component = getParent().get(id);
              if (component != null)
              {
                component.render(markupStream);
              }
              childTags.put(id, response.getBuffer());
            }
            finally
            {
              // Restore the original response
              getRequestCycle().setResponse(webResponse);
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

    if (filterName == null || !responseFilterMap.containsKey(filterName))
    {
      return "";
    }
    List<HeaderItem> resp = responseFilterMap.get(filterName);
    final StringResponse strResponse = new StringResponse();
    IHeaderResponse headerRenderer = new HeaderResponse()
    {
      @Override
      protected Response getRealResponse()
      {
        return strResponse;
      }

      @Override
      public boolean wasRendered(Object object)
      {
        return FilteringHeaderResponse.this.getRealResponse().wasRendered(object);
      }

      @Override
      public void markRendered(Object object)
      {
        FilteringHeaderResponse.this.getRealResponse().markRendered(object);
      }
    };

    ResourceAggregator resourceAggregator = new ResourceAggregator(headerRenderer);

    for (HeaderItem curItem : resp)
    {
      resourceAggregator.render(curItem);
    }

    resourceAggregator.close();

    return strResponse.getBuffer();
  }
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

      IHeaderResponse response = container.getHeaderResponse();

      // Allow component to contribute
      if (response.wasRendered(this) == false)
      {
        StringResponse markupHeaderResponse = new StringResponse();
        Response oldResponse = getResponse();
        RequestCycle.get().setResponse(markupHeaderResponse);
        try
        {
          // Make sure the markup source strategy contributes to the header first
          // to be backward compatible. WICKET-3761
          getMarkupSourcingStrategy().renderHead(this, container);
          CharSequence headerContribution = markupHeaderResponse.getBuffer();
          if (Strings.isEmpty(headerContribution) == false)
          {
            response.render(StringHeaderItem.forString(headerContribution));
          }
        }
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

    responseObject.setContentType(response, encoding);

    // Make sure it is not cached by a client
    response.disableCaching();

    final StringResponse bodyResponse = new StringResponse();
    responseObject.writeTo(bodyResponse, encoding);
    CharSequence filteredResponse = invokeResponseFilters(bodyResponse);
    response.write(filteredResponse);
  }
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

      add(header);

      Response orgResponse = getRequestCycle().getResponse();
      try
      {
        final StringResponse response = new StringResponse();
        getRequestCycle().setResponse(response);

        // Render all header sections of all components on the page
        renderHead(header);

        // Make sure all Components interested in contributing to the header
        // and there attached behaviors are asked.
        final HtmlHeaderContainer finalHeader = header;
        visitChildren(new IVisitor<Component, Void>()
        {
          /**
           * @see org.apache.wicket.IVisitor#component(org.apache.wicket.Component)
           */
          public void component(final Component component, final IVisit<Void> visit)
          {
            component.renderHead(finalHeader);
          }
        });
        response.close();

        if (response.getBuffer().length() > 0)
        {
          // @TODO it is not yet working properly. JDo to fix it
          log.error("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
          log.error("You probably forgot to add a <body> or <head> tag to your markup since no Header Container was \n" +
            "found but components were found which want to write to the <head> section.\n" +
            response.getBuffer());
          log.error("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
        }
      }
      catch (Exception e)
      {
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

        add(header);

        Response orgResponse = getRequestCycle().getResponse();
        try
        {
          final StringResponse response = new StringResponse();
          getRequestCycle().setResponse(response);

          // Render all header sections of all components on the page
          renderHead(header);

          // Make sure all Components interested in contributing to the header
          // and there attached behaviors are asked.
          final HtmlHeaderContainer finalHeader = header;
          visitChildren(new IVisitor()
          {
            /**
             * @see org.apache.wicket.Component.IVisitor#component(org.apache.wicket.Component)
             */
            public Object component(Component component)
            {
              component.renderHead(finalHeader);
              return CONTINUE_TRAVERSAL;
            }
          });
          response.close();

          if (response.getBuffer().length() > 0)
          {
            // @TODO it is not yet working properly. JDo to fix it
            log.error("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
            log.error("You probably forgot to add a <body> or <header> tag to your markup since no Header Container was \n" +
              "found but components where found which want to write to the <head> section.\n" +
              response.getBuffer());
            log.error("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
          }
        }
        catch (Exception e)
        {
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

    // Temporarily replace the web response with a String response
    final Response webResponse = getResponse();

    try
    {
      final StringResponse response = new StringResponse();
      getRequestCycle().setResponse(response);

      IHeaderResponse headerResponse = getHeaderResponse();
      if (!response.equals(headerResponse.getResponse()))
      {
        getRequestCycle().setResponse(headerResponse.getResponse());
      }

      // In any case, first render the header section directly associated
      // with the markup
      super.onComponentTagBody(markupStream, openTag);

      // Render all header sections of all components on the page
      renderHeaderSections(getPage(), this);
      getHeaderResponse().close();

      // Automatically add <head> if necessary
      CharSequence output = response.getBuffer();
      if (output.length() > 0)
      {
        if (output.charAt(0) == '\r')
        {
          for (int i = 2; i < output.length(); i += 2)
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

    // Make sure it is not cached by a client
    response.disableCaching();

    try
    {
      final StringResponse bodyResponse = new StringResponse();
      constructResponseBody(bodyResponse, encoding);
      CharSequence filteredResponse = invokeResponseFilters(bodyResponse);
      response.write(filteredResponse);
    }
    finally
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

   * Prepare
   */
  @Before
  public void before()
  {
    final Response realResponse = new StringResponse();

    headerResponse = new HeaderResponse()
    {
      @Override
      protected Response getRealResponse()
View Full Code Here

Examples of org.apache.wicket.response.StringResponse

  private final StringResponse bufferedResponse;

  public EmbeddedPortletHeaderResponse(Response realResponse)
  {
    this.realResponse = realResponse;
    bufferedResponse = new StringResponse();
  }
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.