Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Java > Java and JDK > Java Basics
|
Java Basics General beginning Java language questions that don't fit in one of the more specific forums. Please specify what version.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Java Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 21st, 2007, 01:04 PM
Authorized User
 
Join Date: Jun 2007
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Default passing parameters to xsl stylesheets

I have some java that is passing parameters retrieved from a database to an xsl stylesheet....

is it possible to pass these parameters to multiple stylesheets?
 
Old June 22nd, 2007, 04:27 AM
Friend of Wrox
 
Join Date: Mar 2007
Posts: 373
Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
quote:Originally posted by smys123
 I have some java that is passing parameters retrieved from a database to an xsl stylesheet....

is it possible to pass these parameters to multiple stylesheets?
Could you be more elaborative about your problem? Some code might help.

Regards,
Rakesh
 
Old June 22nd, 2007, 03:42 PM
Registered User
 
Join Date: Jun 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Ok, here is what we have. We are rendering an xslt inside of uPortal channel using a ContentHandler (which is the variable out in this example).

XSLT xslt = new XSLT(this);
xslt.setXML("<dream></dream>");
xslt.setStylesheetParameter("mediaBase", mediaBase);
xslt.setXSL(sslLocation, "View", runtimeData.getBrowserInfo());
xslt.setTarget(out);
xslt.setStylesheetParameter("isApplicantAccept", m_applicantAccept);
xslt.setStylesheetParameter("isEmployee", m_employee);
xslt.setStylesheetParameter("isStudent", m_student);
xslt.setStylesheetParameter("baseActionURL", runtimeData.getBaseActionURL());
xslt.transform();

What we are needing to do here, to essentially pass the "mediaBase" variable to multiple stylesheets but not render the other stylesheets in our channel. I am thinking this is not possible since the stylesheet will not be "active" until the javascript calls the new xsl file and not transformed by the server, but thought it may be worth a shot asking around.

Thanks!






Similar Threads
Thread Thread Starter Forum Replies Last Post
Passing parameters to XSL shahbhat XSLT 4 August 27th, 2008 11:08 AM
passing parameters from one xsl to another smys123 XSLT 4 June 21st, 2007 01:23 PM
Problems passing xsl parameters from javascript mxxz XSLT 4 November 3rd, 2006 11:21 AM
passing command line parameters to xsl rameshnarayan XSLT 4 August 3rd, 2005 06:21 AM
passing parameters spraveens Javascript How-To 1 October 8th, 2003 03:14 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.