how to pass to fop user and password needed for basic authentication to get image resource from Notes database

2005-10-13 Thread jelka . kosir
I will describe my situation. I have an application server (Domino) and on it running a web application. On this web application users have a basic editor (uses xhtml) to input basic text/formats/tables and upload images that are included in the document Images are uploaded in notes database

Re: how to pass to fop user and password needed for basic authentication to get image resource from Notes database

2005-10-13 Thread jelka . kosir
Yes, I did try this notation and the error came up the same (Could not load external SVG: ... error) If I try to use such url in a web browser for example, when first requesting this url a page not found is displayed and all next responses to this same request retrieve an empty page (there is

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: Strange combination of fo:inline and fo:block produces text to disappear when page breaks

2006-01-18 Thread jelka . kosir
Thank you both, I will review my options to move application to FOP 0.91 beta Chris Bowditch [EMAIL PROTECTED] wrote on 18.01.2006 09:38:41: J.Pietschmann wrote: [EMAIL PROTECTED] wrote: I'm using fop 0.20.5 and I noticed a strange behaviour when certain combination of fo:inline

Re: problem with external-graphics

2006-01-26 Thread jelka . kosir
There was a note that said that GIF is not supported quote: RTF output currently doesn't support GIF images. Please convert them to PNG. This was a answer sent by Jeremias Maerki Subject: Re: problem with FOP 0.9 and fo:external-graphics yesterday Maybe png does not work either ?? Jelka

Re: New User - Fop error.

2006-01-27 Thread jelka . kosir
Would be helpful if you also write down: What FOP are you using ? (0.20.5 or beta 0.91) Would be helpful if you attached the xsl and xml files or just copy code. IT Department - Coleshill [EMAIL PROTECTED] 26.01.2006 13:15 Please respond to fop-users@xmlgraphics.apache.org To

Command line call to FOP

2006-01-31 Thread jelka . kosir
Hi all! I was just wondering, how could I use fop beta from Command prompt. In 0.20.5 version I used this line: java -cp C:\fopdir\fop.jar;C:\xalandir\xalan.jar org.apache.fop.apps.Fop -c C:\configdir\config.xml -xml C:\xmldir\test.xml -xsl C:\xsldir\test.xsl -pdf C:\pdfdir\test.pdf Now with

Re: Command line call to FOP

2006-01-31 Thread jelka . kosir
Yes, when I change org.apache.fop.apps.Fop to org.apache.fop.cli.Main all works fine except 2 things: 1.) Before in the 0.20.5 I was able to use this command from anywhere (no matter where my Command Prompt is positioned). Now it only works if I am positioned in the C:\FopTrunk directory on my

fop Trunk - problems with fo:external-graphic when fetching image via http

2006-02-14 Thread jelka . kosir
Hi ! I'm using FopTrunk version and I have a problem with external graphics. If try to print an image to PDF from filesystem, works OK. For example, this works: fo:external-graphic src=C:\FOPTrunk\examples\fo\graphics\fop.jpg/ This error is printed when I try to print image from via http:

Re: fop Trunk - problems with fo:external-graphic when fetching image via http

2006-02-14 Thread jelka . kosir
I'm using JDK 1.3. I did try your suggestion and added JIMI. Now images work just fine ! Thank you !! Jeremias Maerki [EMAIL PROTECTED] 14.02.2006 17:09 Please respond to fop-users@xmlgraphics.apache.org To fop-users@xmlgraphics.apache.org cc Subject Re: fop Trunk -

Re: how to pass to fop user and password needed for basic authentication to get image resource from Notes database

2006-02-22 Thread jelka . kosir
I have the FopTrunk version on my computer (JDK 1.3) and testing it for issues I had in previous version FOP, so I can decide if we change fop version. This (see history of this mail) was one of the issues I had (how to pass to fop basic authentication for retrieving resources from application

Re: how to pass to fop user and password needed for basic authentication to get image resource from Notes database

2006-02-23 Thread jelka . kosir
Jeremias Maerki [EMAIL PROTECTED] wrote on 22.02.2006 18:50:07: Added a Wiki page, in case anybody needs that in the future: http://wiki.apache.org/xmlgraphics-fop/HowTo/BasicHttpAuthentication Seems easy enough even for me to implement :) thank you I have a feeling you overlooked some

Re: Including special characters using FOP 0.20.5

2006-04-06 Thread jelka . kosir
Hi ! This will maybe be helpful although I do not know if it will solve your problem. I use a dtd for my xml input file where I include entity file definitions. I those files I defined all named entities (I render pdf from html so I need support for all kinds of special characters). This is

Re: Strange combination of fo:inline and fo:block produces text to disappear when page breaks

2006-04-12 Thread jelka . kosir
I can tell you that I tested exact same input that was troubling me in 0.20.5 (disappearing text on page break) also in fop trunk and the pdf was generated as should. Jelka Saurabh Gupta [EMAIL PROTECTED] Sent by: news [EMAIL PROTECTED] 11.04.2006 17:23 Please respond to

Re: DOMImplementation method not found

2006-11-10 Thread jelka . kosir
Hi I will just write a note that I succeeded to create fo - pdf with fop beta 0.92 on Domino 6.5.2 June 01, 2004 with java 1.3 I copied all needed *.jar in the Domino/jvm/lib/ext directory in notes.ini I've put: JavaUserClasses=C:\Lotus\Domino\jvm\lib\ext\xml-apis-1.3.02.jar Before I've put

Re: How to plug in Error Handling in Fop beta

2006-12-13 Thread jelka . kosir
Update so fa on the error handling issue I have: I've tried to implement my own ErrorListener that would propagate errors created in fop and transfer them to my java code scope. Still errors like Error while recovering image information when image is not found do not raise exception - I

Need help with compiling fop beta for java 1.3 - images not working

2006-12-14 Thread jelka . kosir
I'm working on a problem I've posted earlier this week and I would need to rebuild fop since I've changed the source. I have problems building fop beta 0.92 for java 1.3 I have jdk1.5.0_06 and Apache Ant version 1.6.5 compiled on June 2 2005. I changed the build.properties file (uncommented

Re: Need help with compiling fop beta for java 1.3 - images not working

2006-12-15 Thread jelka . kosir
I now have more detail information about the trouble I have with my build. In my xml file that I am transforming I have an image reference to a non-existent image on a Domino application server where there is basic authentication needed. When I try to open the image in my browser I get a login

Re: Need help with compiling fop beta for java 1.3 - images not working

2006-12-15 Thread jelka . kosir
When I change my JAVA_HOME to jdk 1.3 this is what I get: init-avail: [echo] --- Apache FOP 0.92beta [1999-2006] [echo] See build.properties and build-local.properties for additional build settings [echo] Apache Ant version 1.6.5 compiled on

Re: Need help with compiling fop beta for java 1.3 - images not working

2006-12-15 Thread jelka . kosir
Yes I see, It did the trick ... : ) It was strange because I had the fop lib in my classpath ... And building with ant and java 1.5 did not have this problems finding the fop lib jars ... Thank you for help, I hope I can now get to the main issues I have ... Jelka Jeremias Maerki [EMAIL

Bug report - URIResolver and basic authentication working incorrect when EBCDIC codepage is used

2007-05-10 Thread jelka . kosir
Similar to my previous mail I have a problem retrieving images from a database that uses basic authentication. Looking at the code I think the problem is again in the EBCDIC codepage that is used on the server. The problem is bolded: protected void applyHttpBasicAuthentication(URLConnection