Michael,
Go here....
http://servletsuite.com/jsp.htm

They have a plethora of tlds to play with:. That's what I am trying to learn
from.

Thanks,
michael



-----Original Message-----
From: Boogie Brown [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 22, 2002 9:45 AM
To: JRun-Talk
Subject: RE: jruntags in 4.0


Any help for a struggling newbbie.

Where can I find the example tld's to use with JRun 4.0?
thanks in advance.

Michael


From: Michael Greenberg <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: JRun-Talk <[EMAIL PROTECTED]>
Subject: RE: jruntags in 4.0
Date: Mon, 22 Jul 2002 08:40:32 -0400
Received: from [64.118.64.245] by hotmail.com (3.2) with ESMTP id 
MHotMailBF054D4F001E4136E819407640F510720; Mon, 22 Jul 2002 06:02:16 -0700
Received: from hof001.cfhosting.net ([64.118.64.245])          by 
hof001.houseoffusion.com (Post.Office MTA v3.5.3 release 223          ID# 
0-54969U100L100S0V35) with ESMTP id com          for 
<[EMAIL PROTECTED]>;          Mon, 22 Jul 2002 09:04:03 -0400
>From [EMAIL PROTECTED] Mon, 22 Jul 2002 06:03:43 -0700
message-id: <[EMAIL PROTECTED]>
precedence: bulk
References: <>

Hi Ted and everyone else,
I have been working with jruntags in Jrun 4.0 (yes still, but I'll be trying
to get away from them after this project and I educate myself on the fine
art of tlds)

I have most of what I need working except jrun:sql.

I made Ted's suggested fixes and I get....

500 Unhandled exception thrown

When Ted is refering to DSName is he refering to the specific DSN?

Any suggestions ?

Thanks,
Michael

-----Original Message-----
From: Theodore Zimmerman [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 19, 2002 11:19 AM
To: JRun-Talk
Subject: RE: jruntags in 4.0


Hi Michael,
The JRun 3.1 tag library is deprecated in JRun 4.0.  If you want to use it
place the jruntags.jar file in your application's WEB-INF/lib.  Then in your
jsp do the following:

<%@ taglib uri="WEB-INF/lib/jruntags.jar" prefix="jrun" %>

One issue I know of is that the datasrc attribute won't work with the
jrun:sql tag due to the change in the datasource lookup between JRun 3.1 and
JRun 4.  JRun 4 only requires the datasource name to be passed rather than
java:comp/env/jdbc/dsName.  You can get around that by making the following
changes in the web.xml and jrun-web.xml files:

web.xml:

<resource-ref>
   <res-ref-name>jdbc/DSName</res-ref-name>
   <res-type>javax.sql.Datasource</res-type>
</resource-ref>

jrun-web.xml:

<resource-ref>
    <res-ref-name>jdbc/DSName</res-ref-name>
    <jndi-name>DSName</jndi-name>
</resource-ref>

I haven't done much with jst's other than what is in the JRun documentation
so perhaps someone else can help you out there.

Ted Zimmerman


-----Original Message-----
From: Michael Greenberg [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 19, 2002 11:04 AM
To: JRun-Talk
Subject: jruntags in 4.0


Hi folks,
I am trying to figure out how to run the jruntags from 3.1 in jrun 4.0.
Where is the tld associated it with it? All I should need to move over is
jruntags.jar and the tld right?

Im slightly confused on this. Can someone shed some light on jst? I dont
have much experience there and I want to understand it better.

Thanks,
Michael




______________________________________________________________________
Get the JRun Web Application Construction Kit - the only book written specifically for 
JRun developers.
http://www.amazon.com/exec/obidos/ASIN/0789726009/houseoffusion
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to