display html from cocoon in wicket

Mansour Al Akeel <[email protected]>
Newsgroups gmane.text.xml.cocoon.user
Message-ID <CAFvvX=ZaZh3ym0rVde8cuOLo3mtpG=VHbaAmazzO=YfLDakj2Q@mail.gmail.com>
Hello all,

I am working on a small project with wicket. The components in this project
needs to display html generated by docbook-xsl using cocoon 3.0 beta.

I looked around in the documentation for wicket integration, and they seem
to work directly with Cocoon Components.

This is not what I want. I have the blocks I need already defined in
sitemap.xmap(s).
I am able to do something like this in wicket, this is a prototype:

public class ContentsPage extends WebPage {

    public ContentsPage() {
        String reqUrl;
        reqUrl = "http://wiki.apache.org/jackrabbit/IndexingConfiguration";
        Label contents;
        DefaultHttpClient httpclient = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet(reqUrl);
        try {
            HttpResponse response = httpclient.execute(httpGet);
            HttpEntity entity = response.getEntity();
            if (entity != null) {
                String str = EntityUtils.toString(entity);
                contents = new Label("lbl", str);
                contents.setEscapeModelStrings(false);
                add(contents);
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

However, I need an advice about static contents and images. How to deal
with them ?

Thank you in advance.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.