I posted this earlier in the week.  It still doesn't seem to work in 0.9.1c.

"Bail . Jeff" wrote:
> I just upgraded to 0.9.1 and I'm having problems with my library path entry
> in server.xml. I noticed that the format of this tag has changed slightly,
> so I simply copied my list of jars (delimited by ;'s) from my 0.8.2
> server.xml to the 0.9.1 server.xml, but it is unable to find a class that
> 0.8.2 had no problem finding. RH Linux 6.1, Sun JDK 1.2.2 RC2.

I am having the same problem.  In my case I have narrowed it down to be only
classes that are defined in a VariableInfo object when subclassing a
TagExtraInfo class.  The only work around that I have found at this point is to
jar the needed classes into orion.jar.  

As Jeff mentioned, the library path did work ok in 0.8.2, but not in 0.8.3 and
above.

Here is a snip of my code and the error message:

public class PageIdTagExtraInfo extends TagExtraInfo {

    public VariableInfo[] getVariableInfo(TagData data) {
  
        return new VariableInfo[] 
            {
                new VariableInfo(data.getAttributeString("id"),
                                 "ra.web.PageId",
                                 true,
                                 VariableInfo.AT_END),

Error returned from Browser:

500 Internal Server Error

Error parsing JSP page /labelit.jsp line 15

Bean type 'ra.web.PageId' not found

Reply via email to