I have the following warnings in my core.log from cocoon and what do they
mean?

WARN    (2003-03-20) 10:08.19:906   [core.manager]
(/application/admin/en/sc_drill)
HttpProcessor[21010][4]/ExcaliburComponentSelector: Attempted to release a
null component.
WARN    (2003-03-20) 10:08.19:906   [core.manager]
(/application/admin/en/sc_drill)
HttpProcessor[21010][4]/ExcaliburComponentSelector: Attempted to release a
null component.

Those are basically my xsp pages.

My pipeline is kind of like this:

                        <map:match pattern="*/*">
                                <map:act type="characterencoding">
                                        <map:parameter name="form-encoding"
value="utf-8"/>
                                </map:act>
                                <map:act type="xsp-action"
src="lang/{1}/xsp/{2}_action.xsp">
                                        <map:redirect-to
uri="{admin_RURL}"/>
                                </map:act>
                                <map:generate type="serverpages"
src="lang/{1}/xsp/{2}.xsp"/>
                                <map:serialize type="html"/>
                        </map:match>

So I have an action for each page for redirection based on some logic. My
typical action xsp is like:

<?xml version="1.0" encoding="UTF-8"?>
<xsp:page
  language="java"
  xmlns:action="http://apache.org/cocoon/action/1.0";
  xmlns:xsp="http://apache.org/xsp";
>
<dummypage>
<xsp:logic>

        <!-- no redirection so fail it so that it will move along to the
next step in the pipeline -->
        <action:set-failure/>

</xsp:logic>
</dummypage>
</xsp:page>

but I still getting those warnings and I am not sure what is generating
that. Could it be the sitemap itself?


Alban

This message may contain privileged and/or confidential information.  If you
have received this e-mail in error or are not the intended recipient, you
may not use, copy, disseminate or distribute it; do not open any
attachments, delete it immediately from your system and notify the sender
promptly by e-mail that you have done so.  Thank you.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to