This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Xalan-J 2 and getParameter(...) method returns null???


from the Trax documentation:

public abstract java.lang.Object getParameter(java.lang.String name)
Get a parameter that was explicitly set with setParameter or setParameters.
This method does not return a default parameter value, which cannot be determined until the node context is evaluated during the transformation
process.
Returns:
A parameter that has been set with setParameter.

Cheers,
Johannes





Hello,

I am trying to get a parameter from an xsl stylesheet using the getParameter method using the org.apache.xalan.transformer.TransformerImpl class. In my xsl style sheet I have listed as a top element:
===
<xsl:param name="someparam">somevalue</xsl:param>
===

but in trying:
===
Transformer transformer = TransformerFactory.newInstance().newTransformer(new StreamSource("c:\\temp\\temp.xsl"));
transformer.getParameter("someparam");
===

I get null back! Shouldn't I get back the string 'somevalue'. Does it only work when setParameter(...) gets called? then How do get the value back from the stylesheet??

I am using Xalan-J 2.4.D1

Thanks again,

Sean.

XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]