<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.0.9">
</HEAD>
<BODY>
Passing in a system property to a JVM is done by specifying -Dvariable=value, no spaces on the command line.<BR>
<BR>
Doing this inside JBoss means editing your run.bat file or your run.sh file, or (if redhat) the jboss_init_redhat.sh file.<BR>
<BR>
<BR>
On Wed, 2004-12-29 at 16:38, Per Norrman wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE><FONT COLOR="#737373"><I>Patrick JUSSEAU wrote:
&gt; Hi,
&gt; 
&gt; So there is no way to pass in a system property to set this up?
&gt; 
Not that I'm aware of, no.

&gt; I guess the other solution would be to put all the files I need in the  
&gt; same directory but I would rather have the option to set the base dir  
&gt; of the external file that is referenced from the document() method.

But that is exactly what you would/could do with an URIResolver. It is less
that 10 lines of code to have a URIResolver resolve a relative url using a
system property as the base uri.

/pmn


&gt; 
&gt; Patrick
&gt; 
&gt; On 29 Dec 2004, at 19:51, Per Norrman wrote:
&gt; 
&gt;&gt; Hi,
&gt;&gt;
&gt;&gt; I believe you can use the Transformer#setURIResolver method.
&gt;&gt;
&gt;&gt; /pmn
&gt;&gt;
&gt;&gt;
&gt;&gt; patrick@openbase.com wrote:
&gt;&gt;
&gt;&gt;&gt; Hi,
&gt;&gt;&gt; I am using JDOM to perform an XSL transformation. The problem I have  
&gt;&gt;&gt; is that my XSL Document refers to an external file using the  
&gt;&gt;&gt; document(URL) method. I don't want to use an absolute URL. What I  
&gt;&gt;&gt; would like to do is tell JDOM  (the Transformer) what the basedir is  
&gt;&gt;&gt; (/Users/aUser) so that in my XSL file I could use:
&gt;&gt;&gt; ...
&gt;&gt;&gt; &lt;xsl:variable name=&quot;lookupParam&quot; select=&quot;document('aFile.xml')&quot;/&gt;
&gt;&gt;&gt; ...
&gt;&gt;&gt; and aFile.xml would abvioulsy be in /Users/aUser
&gt;&gt;&gt; Here is the code I am using
&gt;&gt;&gt; Document p_sourceDocument = ....
&gt;&gt;&gt; Document p_xslDocument = ....
&gt;&gt;&gt; // Create a JDOMSource from the source JDOM Document
&gt;&gt;&gt;         JDOMSource source = new JDOMSource(p_sourceDocument);
&gt;&gt;&gt;         // Create a JDOMSource from the source XSL Document
&gt;&gt;&gt;         JDOMSource xslSource = new JDOMSource(p_xslDocument);
&gt;&gt;&gt;         // Get a XSLT Transformer
&gt;&gt;&gt;         Transformer transformer =  
&gt;&gt;&gt; getTransformerFactory().newTransformer(xslSource);
&gt;&gt;&gt;         // Create a JDOMResult
&gt;&gt;&gt;         JDOMResult result = new JDOMResult();
&gt;&gt;&gt;         // Populate the Result
&gt;&gt;&gt;         transformer.transform(source, result);
&gt;&gt;&gt; I guess there must be some way to tell the underlying Transformer  
&gt;&gt;&gt; what the basedir is?
&gt;&gt;&gt; Thanks,
&gt;&gt;&gt; Patrick
&gt;&gt;&gt; _______________________________________________
&gt;&gt;&gt; To control your jdom-interest membership:
&gt;&gt;&gt; </FONT><A HREF="http://www.jdom.org/mailman/options/jdom-interest/"><U>http://www.jdom.org/mailman/options/jdom-interest/</U></A><FONT COLOR="#737373"> youraddr@yourhost.com
&gt;&gt;
&gt;&gt;
&gt;&gt; _______________________________________________
&gt;&gt; To control your jdom-interest membership:
&gt;&gt; </FONT><A HREF="http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com"><U>http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com</U></A>
<FONT COLOR="#737373">&gt;&gt;
&gt; 
&gt; 

_______________________________________________
To control your jdom-interest membership:</FONT>
<A HREF="http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com"><U>http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com</U></A>
<FONT COLOR="#737373"></I></FONT></PRE>
</BLOCKQUOTE>
</BODY>
</HTML>