Reference a local jsp page in a zimlet Hey, not to sound cliche, but I'm a zimlet newbie. I was wondering if anyone knows how to reference a local JSP page in the actionURL tag? The page is packaged inside of the zimlet zip file. Here's the code that I have. This program brings up a JSP page when you click a sequence of 3-6 digits in an email:
<zimlet name="com_zimbra_anotherjspzimlet" version="1.0" description="anotherjspzimlet">
<!-- An attempt at an example zimlet file using jsp-->
<contentObject>
<matchOn>
<regex attrs="ig">\d{3,6}</regex>
</matchOn>
<toolTipText>
Click on the site number to view it's information.
</toolTipText>
<onClick>
<canvas type="window" width="800" height="600"/>
<actionUrl target="/service/zimlet/com_zimbra_anotherjspzimlet/anotherjsppage.jsp">
<param name="myNumber">${src.objectContent}</param>
</actionUrl>
</onClick>
</contentObject>
</zimlet> |