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 ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
