Re: FOP producing BLANK PDFs on 1 of 4 servers

2005-11-23 Thread Simon Burton
We are using J2SE 1.4.1_04, Tomcat 3.3.1 and mod_jk (not sure what version) I have as of yet been unable to download on the command line using wget or lynx as our system requires username/password logon/authentication and does html redirects so have not yet found a way to actually download the

fo:external-graphic limitation?

2005-11-23 Thread mike
Hi all, I would like to load an external graphic through a parameter value? Because it does not seem to work for me ;-( For example, the following produces the error: [ERROR] Error while creating area : Error with image URL: $logo_path (No such file or directory) and no base URL is specified

Re: fo:external-graphic limitation?

2005-11-23 Thread Dirk Bromberg
Hi, must it be: src={$logo_path}/ ?? btw. which fop version are you using? Dirk mike wrote: Hi all, I would like to load an external graphic through a parameter value? Because it does not seem to work for me ;-( For example, the following produces the error: [ERROR] Error while

Re: fo:external-graphic limitation?

2005-11-23 Thread Chris Bowditch
mike wrote: Hi all, I would like to load an external graphic through a parameter value? Because it does not seem to work for me ;-( For example, the following produces the error: [ERROR] Error while creating area : Error with image URL: $logo_path (No such file or directory) and no base URL

Re: fo:external-graphic limitation?

2005-11-23 Thread Fabrizio Caldas
Mike, This has worked for me. fo:external-graphic src=url('file:c:///home/htdocs/WebContent/soa/img.jpg')/ fo:external-graphic src=url('https://server:port/home/htdocs/soa/img.jpg')/ Regards, Fabrizio. 2005/11/23, mike [EMAIL PROTECTED]: Hi all, I would like to load an external graphic

Re: fo:external-graphic limitation?

2005-11-23 Thread jelka . kosir
I use xsl:variable and works for me. xsl:variable name=logo_path select='C:/MyPath/tmp/smartdocument.loan/logo.jpg'/ (notice path on filesystem !!! - I allways use absolute) And when I refer to variable image I use {} (don't know if necessary but works for me fo:external-graphic src=""> Try

Re: fo:external-graphic limitation?

2005-11-23 Thread Simon Burton
I use something like this successfully: fo:external-graphic width=40mm content-width=40mm scaling=uniform xsl:attribute name=srcxsl:value-of select=$photo//xsl:attribute /fo:external-graphic - To unsubscribe, e-mail: [EMAIL