Hello,
 
(sorry for my poor english)
 
I have a problem concerning reader component.
 
I have a sitemap (on mysite dir) with component declaration :
 
    <map:components>
        <map:readers default="resource" src=""/>
    </map:components>
 
And a read declaration into the pipeline :
 
    <!-- Img directory -->
    <map:match pattern="**.jpg">
        <map:read mime-type="image/jpg" src=""/>
    </map:match>
That's work ! I can display a jpg on http://localhost/mysite/myjpg.jpg
 
I use xslt and FO for create PDF on-the-fly.
I have test.xml, and text2pdf.xsl in the same directory of my jpeg.
PDF creation work except "external-graphic"
 
I have on my XSL :
 
  <xsl:template match="img">
     <fo:block text-align="center">
      <fo:external-graphic src=""/'>"/>
    </fo:block>
  </xsl:template>
But the link is not resolving... (none image on my PDF)
 
When i test with absolute link :
 
  <xsl:template match="img">
     <fo:block text-align="center">
      <fo:external-graphic src=""http://localhost/mysite/myjpg.jpg">http://localhost/mysite/myjpg.jpg"/>
    </fo:block>
  </xsl:template>
It work.
 
Can you help me ?
I want use relative link...
 
Thanks.
 
Laurent BERTHELOT

Reply via email to