You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Werner Guttmann <We...@msdw.com> on 2001/01/09 17:06:08 UTC

Use of when calling a logicsheet

Hi,

I am about to implement my own tag library for an inhouse systems which
we'd like to control from within Cocoon. I've got the tag library
working as in that it successfully does what it is supposed to be doing,
e.g. start and stopping RMI subsystems.

There's one odd thing, though, when I try to use this tag library.
Issueing

<spider:manageSubsystem service="MQ" action="stop" />

i.e. hardcoding servicename and the action to executed, everything works
fine and the specified RMI subsystem is successfully stopped. When I try
to create one or both of these attributes using <xsp:attribute>, things
do not work.

Issuing

<spider:manageSubsystem>
  <xsp:attribute name="service">MQ</xsp:attribute>
  <xsp:attribute name="action">stop</xsp:attribute>
</spider:manageSubsystem>

never passes the attributes to the logicsheet. Any idea why, or what I
am doing wrong here ?

Regards
Werner