You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xalan.apache.org by daweedoo <Da...@ge.com> on 2008/01/30 17:32:53 UTC

Problem of internet dependances

Hi,

At my job, I'm trying to convert an XHTML file to XSL-FO format using Xalan
and XSLT Stylesheet (xhtml2fo.xsl).

I type this line :

xalan -IN myFile.html -XSL xhtml2fo.xsl -OUT myFile.fo

I have this error :

(Location of error unknown)java.net.UnknownHostException: www.w3.org

I think that the root cause of my problem is the proxy I use versus these
lines in 'xhtml2fo.xsl' :

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:fo="http://www.w3.org/1999/XSL/Format"
                xmlns:html="http://www.w3.org/1999/xhtml">

That needs transformers from w3c.

Is there a way to this conversion without having an internet connection ?

I think that if internet is necessary for the conversion, it won't be used
at my work.

Thanks you in advance for thinking about my problem.

Regards,

David.
-- 
View this message in context: http://www.nabble.com/Problem-of-internet-dependances-tp15184540p15184540.html
Sent from the Xalan - J - Users mailing list archive at Nabble.com.


Re: Problem of internet dependances

Posted by ke...@us.ibm.com.
The lines you show are namespace declaractions. Namespace URIs are never
dereferenced; they're just magic strings in URI Reference syntax.

Your problem's coming from something else -- a schema or DTD reference,
perhaps. Hard to tell without seeing a complete example.

______________________________________
"... Three things see no end: A loop with exit code done wrong,
A semaphore untested, And the change that comes along. ..."
  -- "Threes" Rev 1.1 - Duane Elms / Leslie Fish
(http://www.ovff.org/pegasus/songs/threes-rev-11.html)?