jsp tag issues on fusion

2005-02-23 Thread nik gonzalez
Hi, Deployed a JSR168 portlet in Jetspeed fusion and encountered some issues. First, calling pageContext.getSession() returns null. pageContext.getRequest().getSession() returned a value but this makes deploying existing portlets that already use pageContext.getSession problematic. Secondly, I i

Connecting to Jetspeed database from custom JSP tag class

2003-10-05 Thread Yong Bing Khoo
Hi all, I am trying to connect to the default Jetspeed database from a custom JSP tag using Torque. The servers are JBoss and Jetty. The system throws a JasperException when the following statement is executed: ServiceBroker broker = TurbineServices.getInstance(); (The stack trace is

Re: JSP Tag description, manual, guide, examples

2002-08-03 Thread Paul Spencer
Bjoern, As you may have guesed, the Jetspeed TagLib need some work :( Dannemann, Björn wrote: >Hi, > >i have some questions about the jsp tag lib. >If you have any own descriptions about the tag lib, please mail them! >I think every new jsp user needs a more detailed tag d

JSP Tag description, manual, guide, examples

2002-08-01 Thread "Dannemann, Björn"
Hi, i have some questions about the jsp tag lib. If you have any own descriptions about the tag lib, please mail them! I think every new jsp user needs a more detailed tag description like http://jakarta.apache.org/jetspeed/site/portlet_config_JSP.html A. What is the difference between the

jsp/tag/???

2001-09-07 Thread Anthony Smith
If I take one of the jsp pages located in templates/jsp/layouts/html and place them in another folder I created called jsp that is located right under the jetspeed folder. I changed the taglib uri to read <%@ taglib uri='/WEB-INF/templates/jsp/tld/template.tld' prefix='jetspeed' %> Now I

RE: jsp tag question

2001-08-30 Thread Anthony Smith
e.util.*"%> <%@ page import ="org.apache.turbine.services.jsp.JspService;"%> -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Vincent Bonamy Sent: Thursday, August 30, 2001 9:54 AM To: [EMAIL PROTECTED] Subject: Re: jsp tag que

Re: jsp tag question

2001-08-30 Thread Vincent Bonamy
xt.getAttribute(JspService.RUNDATA, > PageContext.REQUEST_SCOPE); > > -Original Message- > From: David Sean Taylor [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 30, 2001 12:49 AM > To: [EMAIL PROTECTED] > Subject: RE: jsp tag question > > Did you reference the

Re: jsp tag question

2001-08-30 Thread Paul Spencer
Anthony, I suspect you will see the following error message in the jetspeed.log file: [Thu Aug 30 09:09:52 EDT 2001] -- ERROR -- Error processing info-tag, parameter: UserName Exception: java.lang.NullPointerException Stack Trace follows: java.lang.NullPointerException

RE: jsp tag question

2001-08-30 Thread Anthony Smith
12:49 AM To: [EMAIL PROTECTED] Subject: RE: jsp tag question Did you reference the tag library: <%@ taglib uri='/WEB-INF/templates/jsp/tld/template.tld' prefix='jetspeed' %> > -Original Message- > From: Anthony Smith [mailto:[EMAIL PROTECTED]] > Sen

RE: jsp tag question

2001-08-29 Thread David Sean Taylor
Did you reference the tag library: <%@ taglib uri='/WEB-INF/templates/jsp/tld/template.tld' prefix='jetspeed' %> > -Original Message- > From: Anthony Smith [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 28, 2001 1:30 PM > To: [EMAIL PROTECTE

Re: jsp tag question

2001-08-28 Thread Donald S Bell
;Anthony Smith" fedex.com>cc: Subject: jsp tag question

jsp tag question

2001-08-28 Thread Anthony Smith
I am still using 1.3a1, but I want to know how I can use the value: to set it or compare it to another String in JSP. JSP does not lag the tag syntax. <% String UserName = "" %> This does not fly. What are my options? - To u