Hello,

Here's my next question regarding migration to 1.5. I used to publish dynamic image resources (retrieved from DB) as follows:

        protected void init() {
                super.init();
                
getSharedResources().putClassAlias(org.apache.wicket.Application.class,
                        "global");
                getSharedResources().add("images", new ImageResources());
        }

The above would let my image resource reply to the URL:

        http://host/resources/global/images?params=...

In 1.5, the SharedResources class no longer has a "putClassAlias()" method, so apparently there's something new.

How do we go about doing this with 1.5?

Thanks in advance!

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to