RE: with fo

2002-05-07 Thread Matthew L. Avizinis
use  instead

> -Original Message-
> From: Mathy V Arumugam [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, May 07, 2002 5:40 PM
> To: [EMAIL PROTECTED]
> Subject: Re:  with fo
> 
> 
> Hmmm.. I have tried baselin-shift to super.  I think the problem 
> is with my
> xml file :).  Instead of having tag in xml, I have the entity
> representation of the tag.. meaning I have .   So, 
> by doing the
> search for the tag  does not help.  Any advice
> 
> Thanks J.Pietschmann
> Mathy
> 
> "J.Pietschmann" wrote:
> 
> > Mathy V Arumugam wrote:
> > >  Hello,
> > >
> > > I have 5*105 in my xml file and trying to do a superscript
> > > using the following xsl lines.  Unfortunately, this does 
> nothing.   Any
> > > clue???
> > >
> > > 
> > >   
> >
> > Try baseline-shift="super",
> >   http://www.w3.org/TR/xsl/slice7.html#baseline-shift
> >
> > J.Pietschmann
> 



Re: with fo

2002-05-07 Thread Mathy V Arumugam
Hmmm.. I have tried baselin-shift to super.  I think the problem is with my
xml file :).  Instead of having tag in xml, I have the entity
representation of the tag.. meaning I have .   So, by doing the
search for the tag  does not help.  Any advice

Thanks J.Pietschmann
Mathy

"J.Pietschmann" wrote:

> Mathy V Arumugam wrote:
> >  Hello,
> >
> > I have 5*105 in my xml file and trying to do a superscript
> > using the following xsl lines.  Unfortunately, this does nothing.   Any
> > clue???
> >
> > 
> >   
>
> Try baseline-shift="super",
>   http://www.w3.org/TR/xsl/slice7.html#baseline-shift
>
> J.Pietschmann



Re: with fo

2002-05-07 Thread J.Pietschmann
Mathy V Arumugam wrote:
 Hello,
I have 5*105 in my xml file and trying to do a superscript
using the following xsl lines.  Unfortunately, this does nothing.   Any
clue???

  
Try baseline-shift="super",
 http://www.w3.org/TR/xsl/slice7.html#baseline-shift
J.Pietschmann


Re: step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread J.Pietschmann
Argyn Kuketayev wrote:
I have to print documents with Chinese (and other languages). I couldn't
find a clear instruction how to do it.
Find a font containing glyphs for your script.
Configure it for use by FOP as describet in
  docs/html-docs/fonts.html
Use an XML capable editor which allows you to input the
characters directly and encodes the file as UTF-8 or
UTF-16 or some ISO-8859-* (that's what you see in
test_ja.fo), or use an ASCII-editor and use XML character
references (something like Ω, which would give you
an Ohm sign, the same glyph as greek upper case omega).
The Unicode consortium http://www.unicode.org has
character tables online.
J.Pietschmann


Re: Tables in Inline Object

2002-05-07 Thread J.Pietschmann
joseph berdat wrote:
I would like to have 2 tables side by side on a single page.
  +---+---+ +---+---+
  |   |   | |   |   |
  |   T1  | |   T2  |
  |   |   | |   |   |
  +---+---+ +---+---+
I try to do this by using fo:inline but it doesn't work?
It shouldn't. You would have to use fo:inline-container
but this isn't implemented in FOP yet.
The generic answer is to put the tables into blind table:
+-+
| +---+---+ +---+---+ |
| |   |   | |   |   | |
| |   T1  | |   T2  | |
| |   |   | |   |   | |
| +---+---+ +---+---+ |
+-+
Don't set a border on the outer table, it's just there
for demonstration.
You can also try a two-column setup of the page, list-block
and absolutely placed block containers, whatever fits best.
J.Pietschmann


Re: MissingResourceException

2002-05-07 Thread J.Pietschmann
[EMAIL PROTECTED] wrote:
When trying to create a PDF using FOP 0.20.3, I get the following error:
java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
Can't find resource for base name
org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US
The PDF is simple.  There is only one graphic (repeated on every page
header) and just text -- no SVG or anything.
FOP tries to initialize parts of Batik nevertheless, unless
you do a custom build without Batik. Well, perhaps it is
sufficient to remove the SVG mappings from the config.xml
file in the jar.
It still ought to be either a classpath problem or a version
clash.
J.Pietschmann


Re: DTD name retrieving

2002-05-07 Thread J.Pietschmann
Marie Steinberg wrote:
The DTD name is the name of the DTD file, for 
example: 'foo.dtd'. is it the system identifier ?
This is the system identifier.
I used the following solution but it isn't run with fop:
** foo.xsl *

http://www.w3.org/1999/XSL/Transform";
  xmlns:msxsl="urn:schemas-microsoft-com:xslt"
You need MSXML to run it.
If you are runing your stuff from the command line, try
to get the file name elswhere and pass it as a parameter
to the style sheet:
Xalan -in foo.xml -xsl foo-transform.xsl -out foo.fo -param dtdname "'foo.dtd'"
In the style sheet
  
Alternatively you can write your own wrapper, retrieving
the system identifer from the DOM using JAXP. I have the
code somewhere else, will post it tomorrow.
J.Pietschmann


Re: Basic-link problem in JSPs

2002-05-07 Thread J.Pietschmann
Ralf Steppacher wrote:
 > If this comes directly from your original style sheet, you should
 > better use matching precise templates instead of piping everything
 > into a match-all and then use a choose in it.
Is this just a matter of style or do exact templates perform better?
A matter of robustness and maintainability. Just add
templates instead of adding when-clauses, perhaps with
ever more intricate conditions.
In general, templates are slower but there is rarely
a mesurable difference (you need hundreths of matching
tamplates).
Hm, I generate quite a lot of cells (the document contains only tables) 
and thought that a template for generating cells would reduce filesize 
and improve readability of the stylesheet.
The verbose call-template syntax doesn't reduce the
filesize either, and named template invocations can
really hide what's going on. But it's your choice.
Try both on a small part and see what fits you better.
J.Pietschmann




Re: MissingResourceException

2002-05-07 Thread Ryan.Asleson


I also get this error:

java.lang.NoClassDefFoundError: XMLResourceDescriptor
java.lang.Throwable(java.lang.String) java.lang.Error(java.lang.String)
java.lang.LinkageError(java.lang.String)
java.lang.NoClassDefFoundError(java.lang.String) void
org.apache.fop.svg.SVGElementMapping.setupSVG() void
org.apache.fop.svg.SVGElementMapping.setupSVG() void
org.apache.fop.svg.SVGElementMapping.addToBuilder(org.apache.fop.fo.TreeBuilder)

void
org.apache.fop.apps.Driver.addElementMapping(org.apache.fop.fo.ElementMapping)

void org.apache.fop.apps.Driver.addElementMapping(java.lang.String) void
org.apache.fop.apps.Driver.setupDefaultMappings()
org.apache.fop.apps.Driver()

But I can't find any reference to an  XMLResourceDescriptor  class
anywhere.





 
  <[EMAIL PROTECTED]
  
  aul.com> To:   [EMAIL PROTECTED]  
   
   cc:  
 
  05/07/2002 09:17 Subject:  
MissingResourceException
  AM
 
  Please respond to 
 
  fop-user  
 

 

 






I'm trying to upgrade from FOP 0.20.1 to 0.20.3.  I'm developing within the
VisualAge for Java 3.5.3 IDE.

When trying to create a PDF using FOP 0.20.3, I get the following error
message:

java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
Can't find resource for base name
org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US


The PDF itself is simple.  There is only one graphic, appearing in the
header of each page, and no SVG graphics, just text.

I have Batik, LogKit, and Avalon in the classpath as projects, so I don't
think it's a classpath issue, but I'm just not sure.

Any help is greatly appreciated.  Thanks!







with fo

2002-05-07 Thread Mathy V Arumugam
 Hello,

I have 5*105 in my xml file and trying to do a superscript
using the following xsl lines.  Unfortunately, this does nothing.   Any
clue???


  

  


Thanks
Mathy




step-by-step instructions how to print Chinese in PDF?

2002-05-07 Thread Argyn Kuketayev
I have to print documents with Chinese (and other languages). I couldn't
find a clear instruction how to do it.

Can anybody help? 

\fop-0.20.3\docs\examples\advanced folder didn't help me much.

thanx,
Argyn


AW: X-Y Text positioning

2002-05-07 Thread Chaumette, Patrick
Hello John

I use with FOP 0.20.3 the following:


I am
here



It positions where I set it, relative to the xsl-region-before margins.

Hope this helps,
greetings,
Patrick.

Dipl. Inform. Patrick Chaumette

T-Systems ITS GmbH

Service Prozesse Retail
Hausanschrift: Fasanenweg 9, 70771 Leinfelden-Echterdingen
Postanschrift: Postfach 100258, 70746 Leinfelden-Echterdingen
Telefon: (0711)972-2437
Telefax: (0711)972-1949
E-Mail: [EMAIL PROTECTED]
Internet: http://www.t-systems.de



> -Ursprüngliche Nachricht-
> Von: John Bourke [mailto:[EMAIL PROTECTED]
> Gesendet: Dienstag, 7. Mai 2002 17:29
> An: Fop Users (E-mail)
> Betreff: X-Y Text positioning
> 
> 
> 
> 
> Guys,
> Do you know if FOP explicitly supports absolute X-Y placement 
> of data on a
> page, i.e. "put this text right here, 6 cm down from the top 
> left corner and
> 4 cm in from the left edge"?
> 
> John
> 
> 
> **
> *
> This email and any files transmitted with it are confidential and
> intended solely for the use of the individual or entity to whom they
> are addressed. Any unauthorised distribution or copying is strictly 
> prohibited.
> 
> Whilst Cedar Plc takes steps to prevent the transmission of 
> viruses via e-mail, we can not guarantee that any email or 
> attachment is free from computer viruses and you are strongly
> advised to undertake your own anti-virus precautions.
> 
> Cedar Plc grants no warranties regarding performance,
> use or quality of any e-mail or attachment and undertakes no 
> liability for loss or damage, howsoever caused.
> **
> **
> 


X-Y Text positioning

2002-05-07 Thread John Bourke


Guys,
Do you know if FOP explicitly supports absolute X-Y placement of data on a
page, i.e. "put this text right here, 6 cm down from the top left corner and
4 cm in from the left edge"?

John


***
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. Any unauthorised distribution or copying is strictly 
prohibited.

Whilst Cedar Plc takes steps to prevent the transmission of 
viruses via e-mail, we can not guarantee that any email or 
attachment is free from computer viruses and you are strongly
advised to undertake your own anti-virus precautions.

Cedar Plc grants no warranties regarding performance,
use or quality of any e-mail or attachment and undertakes no 
liability for loss or damage, howsoever caused.



Tables in Inline Object

2002-05-07 Thread joseph berdat
Hello,

I would like to have 2 tables side by side on a single page.

  +---+---+ +---+---+
  |   |   | |   |   |
  |   T1  | |   T2  |
  |   |   | |   |   |
  +---+---+ +---+---+

I try to do this by using fo:inline but it doesn't work?

Is there another solution?

Thank!


MissingResourceException

2002-05-07 Thread Ryan.Asleson


I'm trying to upgrade from FOP 0.20.1 to 0.20.3.  I'm developing within the
VisualAge for Java 3.5.3 IDE.

When trying to create a PDF using FOP 0.20.3, I get the following error
message:

java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
Can't find resource for base name
org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US


The PDF itself is simple.  There is only one graphic, appearing in the
header of each page, and no SVG graphics, just text.

I have Batik, LogKit, and Avalon in the classpath as projects, so I don't
think it's a classpath issue, but I'm just not sure.

Any help is greatly appreciated.  Thanks!



MissingResourceException

2002-05-07 Thread Ryan.Asleson


I'm trying to upgrade from FOP 0.20.1 to 0.20.3.  I do my development
within the VisualAge 3.5.3 IDE.

When trying to create a PDF using FOP 0.20.3, I get the following error:

java.lang.ExceptionInInitializerError: java.util.MissingResourceException:
Can't find resource for base name
org.apache.batik.util.resources.XMLResourceDescriptor, locale en_US


The PDF is simple.  There is only one graphic (repeated on every page
header) and just text -- no SVG or anything.

I have Batik, LogKit, and Avalon in my classpath as projects, so I don't
think it is a classpath issue, but I'm just not sure.

Any help is greatly appreciated.  Thanks!!





Re: What about streams in a fo-file?

2002-05-07 Thread Jeremias Maerki
Have a look at this thread:
http://marc.theaimsgroup.com/?t=10207511512&r=1&w=2

This may help you, too.

> From my application I get an inputstream containing a jpg-image. I don't
> want to store it as file. Is there a possiblity to use this stream with
> fop?(I have to convert it into a PDF-file on the fly)
> May be there are other constructs than  src="C:/testat.jpg"/> but I didn't found them.

Cheers,
Jeremias Märki

mailto:[EMAIL PROTECTED]

OUTLINE AG
Postfach 3954 - Rhynauerstr. 15 - CH-6002 Luzern
Tel. +41 41 317 2020 - Fax +41 41 317 2029
Internet http://www.outline.ch



What about streams in a fo-file?

2002-05-07 Thread A . Heikhaus
Hello,


Client/Server FOP+AWT

2002-05-07 Thread Chaumette, Patrick
Hello,

I am working in a Client/Server environment and would like to do the
following with FOP:
A Java-client calls a remote method on a server to render a document with
FOP and wants to retrieve an object which it can
use to print using PrintJob.
My first thought was using the AWTRenderer right away to get the Graphics2D
Objects and serialize them, but this doesnt wont work since the Graphics2D
Objects arent serializable.

Now I have seen that StreamRenderer holds a queue of Page objects. Are those
serialisable ?
I could then transport them through the wire and have the client use the
AWTRenderer to do the writing into a Graphics2D.

I am thinking of a system environment where a server is running FOP and a
client having maybe only AWTRenderer.

Any comments on what to serialize or ideas how to do it ?
Thanks a lot,

Greetings,
Patrick

Dipl. Inform. Patrick Chaumette

T-Systems ITS GmbH

Service Prozesse Retail
Hausanschrift: Fasanenweg 9, 70771 Leinfelden-Echterdingen
Postanschrift: Postfach 100258, 70746 Leinfelden-Echterdingen
Telefon: (0711)972-2437
Telefax: (0711)972-1949
E-Mail: [EMAIL PROTECTED]
Internet: http://www.t-systems.de



Re: Basic-link problem in JSPs

2002-05-07 Thread Ralf Steppacher
First of all: Thank you very much for your help!
>> 
>> 
>>  
>
> This is the real problem. You probably noticed that the link area is
> not the whole page number, in particular with multiple digit page
> numbers.
Yes, that is right. I will follow your advise and use the headline text 
as link area.

> Your style sheet appear to be a bit more convoluted than usual. Some
> other hints:
>
>> 
>>   
>> 
>
> If this comes directly from your original style sheet, you should
> better use matching precise templates instead of piping everything
> into a match-all and then use a choose in it.
Is this just a matter of style or do exact templates perform better?
> There is not all that much value in abstracting
> really low-level stuff like table cell generation.
Hm, I generate quite a lot of cells (the document contains only tables) 
and thought that a template for generating cells would reduce filesize 
and improve readability of the stylesheet.

Thanks for your hints!!!
Ralf


AW: Java 1.1.x

2002-05-07 Thread Chaumette, Patrick
Hello,

I had also problems compiling FOP-0.20.3 with JDK 1.2.
For example some changes in AWTFontMetrics concerning Fonts are not portable
on JDK1.2. 
The release notes should be changed to reflect this. They still say "JDK
1.2(or later) is required".

Since I didnt want i18n support I could take the older versions of those
files and do a custom build.
I also removed all batik related stuff, since I dont use any SVG, and so can
use FOP on a Websphere in a EJB context.

Greetings,
Patrick

Dipl. Inform. Patrick Chaumette

T-Systems ITS GmbH

Service Prozesse Retail
Hausanschrift: Fasanenweg 9, 70771 Leinfelden-Echterdingen
Postanschrift: Postfach 100258, 70746 Leinfelden-Echterdingen
Telefon: (0711)972-2437
Telefax: (0711)972-1949
E-Mail: [EMAIL PROTECTED]
Internet: http://www.t-systems.de



> -Ursprüngliche Nachricht-
> Von: Peter B. West [mailto:[EMAIL PROTECTED]
> Gesendet: Dienstag, 7. Mai 2002 02:30
> An: [EMAIL PROTECTED]
> Betreff: Re: Java 1.1.x
> 
> 
> Kendall,
> 
> You might want to examine this thread:
> http://marc.theaimsgroup.com/?l=fop-dev&m=101551941500565&w=4
> 
> I don't know whether this is the only problem of the migration to 
> 1.2/1.3. If it were, you could copy the source tree, and use 
> a find and 
> a perl one-liner to change all of the occurrences. Not nice, 
> and nasty 
> to keep up-to-date, but it may be a way out. If it were not, you will 
> have to follow Joerg's suggestion.
> 
> Does anyone else know what the relevant incompatibilities are?
> 
> Peter
> 
> J.Pietschmann wrote:
> 
> > Kendall Adkins wrote:
> >
> >> I have a client who is using a Domino server. Domino only 
> supports the
> >> Java 1.1.8 SDK. I have been unable to find a version of 
> FOP that will 
> >> run
> >> with this SDK. Does anyone have any suggestions?
> >
> >
> > Recent FOP versions need JDK1.2, perhaps even 1.3. I think
> > you should look for 0.18 or even 0.17 on the "old versions"
> > archive.
> >
> 
> 


Re: Re: Language Support

2002-05-07 Thread Balaji Loganathan
Hi kalyan,
The example file is at
\fop-0.20.3\docs\examples\advanced folder,I have
attached a PDF file from that folder
for you,which could explain you how to make of other
language fonts.

To make use of unicode u have supply the literal like
this in fo or xsl..

ä = ä 

Ex: Empfänger which is same like Empfänger.

this site may help you more for some Unicode list
http://home-4.tiscali.nl/~t876506/EntitiesXHTML1.html

By the way where did u got this
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf...\u30b9

Can u give me website id.
Hope this helps you.
Regards
Balaji.

 

--- kalyan kumar <[EMAIL PROTECTED]> wrote:
> Thanks Balaji, for the help. But unfortunately I
> couldn't find out 
> the file which handles Japanese text. I found a file
> hyphen.fo 
> which handles italian... etc. languages, but not
> japanese. Can you 
> please give me the name of the file if it's there?
> If not what do 
> I do to make sure that the pdf file gets the
> Japanese characters. 
> For example, I had declared the fo:block in my .fo
> file like 
> this:
> 
> 
>
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9
> 
>
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9
> 
>
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9
> 
>
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9
> 
>
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9
> 
> 
> But the output just turns out to be the same text
> and the FOP is 
> not considering the values as UNICODE characters.
> Please help me, 
> if I need to specify some property to let FOP treat
> these 
> characters not as ASCII chars but as UNICODE chars.
> 
> Thanks,
> Kalyan.
> 
> 
> On Mon, 06 May 2002 Balaji Loganathan wrote :
> >Hi,
> >  Yes it do support multi language in a different
> >way.Please see the examples folder in fop-0.20.3
> where
> >there is example which include/imports japanese
> >font.Hope this is what u r looking for.
> >Regards
> >Balaji
> >
> >--- kalyan kumar <[EMAIL PROTECTED]>
> wrote:
> > > Hi,
> > >  I'm new to FOP. Can someone please let me
> know
> > > if FOP
> > > supports multi-language rendering. Can I have a
> PDF
> > > file rendered
> > > into Japanese or for that matter into any
> language
> > > other than
> > > English? If so, what do I need to do in my
> XSL-FO
> > > file? Can
> > > someone please send me an example of an XSL-FO
> file
> > > of any other
> > > language. I'd be very thankful for that.
> > >  Thanks,
> > > Regards,
> > > Kalyan
> > >
>
>_
> > > Click below to visit monsterindia.com and review
> > > jobs in India or
> > > Abroad
> > > http://monsterindia.rediff.com/jobs
> > >
> >
> >http://messenger.yahoo.com.au - Yahoo! Messenger
> >- A great way to communicate long-distance for
> FREE!
> 
>
_
> Click below to visit monsterindia.com and review
> jobs in India or 
> Abroad
> http://monsterindia.rediff.com/jobs
>  

http://messenger.yahoo.com.au - Yahoo! Messenger
- A great way to communicate long-distance for FREE!

cid-fonts.pdf
Description: cid-fonts.pdf


Re: DTD name retrieving

2002-05-07 Thread Marie Steinberg
> First question: what is the DTD name: the system
> identifier (usually a file name or URL), the optional
> public identifer, or the name of the document element?

The DTD name is the name of the DTD file, for
example: 'foo.dtd'. is it the system identifier ?


> There is no standardized mechanism to get either the
> system or the public identifier from within XSLT.
> You'll have to pass it as a parameter, or use an
> extension function. There isn't a standard Java API
> method to retrieve them either.

I used the following solution but it isn't run with fop:

** foo.xsl *

http://www.w3.org/1999/XSL/Transform";
  xmlns:msxsl="urn:schemas-microsoft-com:xslt"
  xmlns:utilitaires="urn:x-msxsl-script:mes-utilitaires"
  exclude-result-prefixes="msxsl utilitaires"
  version="1.0">





Document source DTD :







> Why do you think you need it? There are not much
> use cases, and none in connection with generating
> FO that I am aware of.

I need it because I build a technical document within I
must display it.

Thank you,
Marie
--
Profitez des 2 offres exceptionnelles Tiscali !
"Internet Gratuit le Jour" et "Modem ADSL remboursé"
Cliquez ici, http://register.tiscali.fr/forfaits_ls/
Offres soumises à conditions.




Re: Re: Language Support

2002-05-07 Thread kalyan kumar
Thanks Balaji, for the help. But unfortunately I couldn't find out 
the file which handles Japanese text. I found a file hyphen.fo 
which handles italian... etc. languages, but not japanese. Can you 
please give me the name of the file if it's there? If not what do 
I do to make sure that the pdf file gets the Japanese characters. 
For example, I had declared the fo:block in my .fo file like 
this:


\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9 
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9 
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9 
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9 
\u6c7a\u6e08\u7167\u5408\u30b9\u30c6\u30fc\u30bf\u30b9


But the output just turns out to be the same text and the FOP is 
not considering the values as UNICODE characters. Please help me, 
if I need to specify some property to let FOP treat these 
characters not as ASCII chars but as UNICODE chars.

Thanks,
Kalyan.
On Mon, 06 May 2002 Balaji Loganathan wrote :
Hi,
 Yes it do support multi language in a different
way.Please see the examples folder in fop-0.20.3 where
there is example which include/imports japanese
font.Hope this is what u r looking for.
Regards
Balaji
--- kalyan kumar <[EMAIL PROTECTED]> wrote:
> Hi,
>  I'm new to FOP. Can someone please let me know
> if FOP
> supports multi-language rendering. Can I have a PDF
> file rendered
> into Japanese or for that matter into any language
> other than
> English? If so, what do I need to do in my XSL-FO
> file? Can
> someone please send me an example of an XSL-FO file
> of any other
> language. I'd be very thankful for that.
>  Thanks,
> Regards,
> Kalyan
>
_
> Click below to visit monsterindia.com and review
> jobs in India or
> Abroad
> http://monsterindia.rediff.com/jobs
>
http://messenger.yahoo.com.au - Yahoo! Messenger
- A great way to communicate long-distance for FREE!
_
Click below to visit monsterindia.com and review jobs in India or 
Abroad
http://monsterindia.rediff.com/jobs



Re: Java 1.1.x

2002-05-07 Thread Peter B. West
Kendall,
You might want to examine this thread:
http://marc.theaimsgroup.com/?l=fop-dev&m=101551941500565&w=4
I don't know whether this is the only problem of the migration to 
1.2/1.3. If it were, you could copy the source tree, and use a find and 
a perl one-liner to change all of the occurrences. Not nice, and nasty 
to keep up-to-date, but it may be a way out. If it were not, you will 
have to follow Joerg's suggestion.

Does anyone else know what the relevant incompatibilities are?
Peter
J.Pietschmann wrote:
Kendall Adkins wrote:
I have a client who is using a Domino server. Domino only supports the
Java 1.1.8 SDK. I have been unable to find a version of FOP that will 
run
with this SDK. Does anyone have any suggestions?

Recent FOP versions need JDK1.2, perhaps even 1.3. I think
you should look for 0.18 or even 0.17 on the "old versions"
archive.