Hi,
perhaps you've missed http://www.orionserver.com/docs/orion-web.xml.html ?
It contains all of the tags you've listed (linked from
http://www.orionserver.com/docs/index.html). We understand the
reconfiguration is cumbersome but the changes were needed (in our opinion of
course) and to the users benefit in the long run. There where some bugs that
where tied to the config-format changes (seems inevidable unfortunately,
we'll try to improve our in-house testing as much as possible) and we
apologize for that.
As for the library path the syntax is:
<library path="../the/path.jar" />
<library path="../the/other/path.jar" />
(server.xml)
and:
<classpath path="../the/path" />
<classpath path="../the/path" />
(orion-web.xml)
One path per tag in the spirit of good XML.
Your confusion (or some of it) with the new format this is most likely due
to the splitting up of web.xml to web.xml and orion-web.xml. In 0.8.x
web.xml contained both the standard Servlet 2.2 tags and the Orion-specific
tags. This was a bad design decision so we decided to change it as soon as
possible. When you deploy a web-app now WEB-INF/orion-web.xml will be
auto-created if it doesnt exist so the added work is minimal. The benefit is
keeping web.xml "clean" and conformant with the DTD and isolating
orion-specific stuff to it's own location. Does this clear things up?
That said we've also found some classloader bugs (yes, we are going to focus
heavily on sorting out bugs for a time to come) that migth be related to
your problem so if you've got the chance to do so please try 0.9.1g
(http://www.orionserver.com/orion/orion.jar) and get back to us
([EMAIL PROTECTED]) if it persists.
Have a nice day! :)
/Magnus Stenman, the Orion team
----- Original Message -----
From: "Daniel HERLEMONT" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Sunday, February 06, 2000 3:21 PM
Subject: Re: Server.xml classpath problem - 0.9.1c
> I got the same pb .... and I don't understand.
> And I have not enough time to download orion for every patch ...
>
>
> The version 0.9.1 is simply unusable with very poor documentation,
>
> Other features are not longer documented ... are they still usable ????
> such as
> - request tracker/session and filters ... <request-tracker>,
> <servlet-filter>
> - session tracking methods ???? <session-tracking cookies="disabled">,
> - the file modification check interval <file-modification-check-interval>
>
> If your intention is to make a commercial product, please put more effort
on
> in house testing, documentation and upward compatiblity ...
>
> I spent too much time in reconfiguring, and whithout successes up to now.
> be carreful not to loose your first customers ...
>
> Thanks.
>
> -----Message d'origine-----
> De : Evan Vaala <[EMAIL PROTECTED]>
> � : Orion-Interest <[EMAIL PROTECTED]>
> Date : vendredi 4 f�vrier 2000 17:51
> Objet : Server.xml classpath problem - 0.9.1c
>
>
> >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
> >
> >
>
>