On the orionserver homepage it says jsp1.1 support, not jsp1.2. Also, packed
in orion.jar is the dtd for the 1.1 version of .tld's. So orion support jsp
1.1
Perhaps you also did, but I looked it up in the specifications.
jsp1.1 actually has an error in the javadoc for VariableInfo, since it
repeats the description for the 'varName' attribute under the 'className'.
Not very helpful. The specification only has an example in b.3.4.1 showing
unqualified classnames FooResult and BarResult. This suggest what is made
explicit in the next specification version:
In jsp1.2 pfd2 the specification clearly states that an unqualified
classname may be used if it is 'a public class in the context of the import
directives of the page where the custom action appears'. Since you never
have to import java.lang.* this should be true and so your tei class should
work in a jsp1.2 container.
You might file it as a bug and see what their reaction is. Again, I would
say that even a jsp1.1 container should accept unqualified classnames.
Marcel
----- Original Message -----
From: "Wendell Nichols" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Wednesday, June 06, 2001 1:06 AM
Subject: Tag library TEI difference
> I have a small tag library application which I have successfully
> deployed on Jrun and Tomcat. The tei class describes a field like this:
>
> public VariableInfo[] getVariableInfo(TagData data) {
> return new VariableInfo []
> {
> new VariableInfo("eCTSResult",
> "String",
> true,
> VariableInfo.NESTED),
> new VariableInfo("EndMsg",
> "String",
> true,
> VariableInfo.NESTED),
> new VariableInfo("ReturnMsg",
> "String",
> true,
> VariableInfo.NESTED)
> };
> }
>
> When this app is deployed on orion I get the error:
> Bean 'String' not found.
>
> In order to make this work I had to change "String" to
> "java.lang.String"
>
> I've also noticed some pretty inconsistent results using
> auto-redeployment. It works sometimes, an other times it takes an error
> opening the ear file. In these cases I have to recycle the server.
>
> Wendell Nichols
> Amdahl Software Ltd.
> A Fujitsu Company
>
>