Hello Sam and Gary,

Yes, this was in fact a bug and it has been fixed in version 0.7.6b, which you can
find on the website (www.orionserver.com). As always, if you have a recent Orion
installed, it is enough to download http://www.orionserver.com/orion/orion.jar and
replace your old orion.jar with it.

I hope this helps and thanks for trying out our product.

Karl Avedal
The Orion team

> Thats an Orion bug.
>
> According to the specs,following the XML specification, attribute values
> always appear quoted. Both single and
> double quotes can be used.
>
> The code works fine in Weblogic
>
> -Sam
>
> Janes Gary wrote:
> >
> > Having spent almost a day chasing this one, I've solved it
> > within 10 minutes of sending the e-mail. Typical.
> >
> > For some reason the second of these lines :
> >
> > <% String theStaticPage = "login.html"; %>
> > <jsp:forward page='<%= theStaticPage %>' />
> >
> > needs double quotes rather than single quotes. So to get it
> > working I've used:
> >
> > <jsp:forward page="<%= theStaticPage %>" />
> >
> > Why should this make a difference when the hard-coded single
> > line:
> >
> > <jsp:forward page='login.html' />
> >
> > works just fine ??
> >
> > Regards,
> >
> > Mystified
> >
> > Gary JANES
> > 10/11/99 03:30 PM
> >
> > To:   [EMAIL PROTECTED] AT
> > INTERNETMAIL@ccMTA-am-hk-lippo
> > cc:
> > Subject:  jsp:forward .... Problems, problems
> >
> > Hi All,
> >
> > I'm having problems using JSP to forward simple requests to a
> > static HTML page ( as per the example on p.67 of the JSP 1.1 PR
> > Spec ).
> >
> > My development environment is JDK 1.2.2, Orion 0.7.5b, Servlet
> > API 2.2 and JSP 1.1. Browser is IE 4.01
> >
> > The following very simple JSP works fine
> >
> > <jsp:forward page='login.html' />
> >
> > but when I try to use a variable or a bean method to specify
> > the same static page
> >
> > <% String theStaticPage = "login.html"; %>
> > <jsp:forward page='<%= theStaticPage %>' />
> >
> > I get a blank browser page back. Looking at the source of the
> > blank page shows:
> >
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
> > <HTML>
> > <HEAD>
> >
> > <META content="text/html; charset=iso-8859-1"
> > http-equiv=Content-Type>
> > </HEAD>
> > <BODY></BODY></HTML>
> >
> > Anybody know what's going on ???
> >
> > Any assistance greatly appreciated.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to