RE: HashMap

2004-01-17 Thread Andreas L. Delmelle
 -Original Message-
 From: Peter B. West [mailto:[EMAIL PROTECTED]

snip /
 I assume this problem is with the iframes?


Well, not my eye-frames... but if that's what these charming windows on the
sources are called, then, yes.

Anyway, this could well be added as a feature to the other fop-dev pages, if
you ask me.


Cheers,

Andreas



RE: HashMap

2004-01-16 Thread Andreas L. Delmelle
 -Original Message-
 From: Peter B. West [mailto:[EMAIL PROTECTED]

snip /

 I hope you're not casting aspersions on my producer/consumer buffers?


Hiya Peter,

Great isn't it? The pun only became apparent to me *after* I had typed it
up, and look-ee here, it got through nicely :) (If you're joking, that
is...)

Seriously? Not at all! (BTW: Shouts for your alt-design pages. Very
comfortable --although IE seems to have a little trouble with the JavaScript
adding a horizontal scrollbar instead of a vertical one; with other browsers
no prob whatsoever.)


Cheers,

Andreas



Re: HashMap

2004-01-16 Thread Peter B. West
Andreas L. Delmelle wrote:
Hiya Peter,

...
Seriously? Not at all! (BTW: Shouts for your alt-design pages. Very
comfortable --although IE seems to have a little trouble with the JavaScript
adding a horizontal scrollbar instead of a vertical one; with other browsers
no prob whatsoever.)
Andreas,

I assume this problem is with the iframes?

Peter
--
Peter B. West http://www.powerup.com.au/~pbwest/resume.html



RE: HashMap

2004-01-15 Thread Andreas L. Delmelle
 -Original Message-
 From: Peter B. West [mailto:[EMAIL PROTECTED]

 A friend was watching over my shoulder as I was responding to an earlier
 message on fop-dev.  HashMaps... I won't say what image that conjures
 up for me.  Well?  A map of where you have the stash.

 I never thought of it that way.

Well, ask him what a HashAttributeSet conjures up for him, and he might just
pull one right out of his office-drawer :)

 -Original Message-
 From: John Austin [mailto:[EMAIL PROTECTED]

snip /
 The Globe and Mail (http://www.globeandmail.com/) stated that
 Ontario produces more weed than the entire population could
 possibly smoke.

Depends on what portions you're used to, not? ;)  I'd never trust public
media though, when it comes to providing us with an accurate estimate of
this figure... many would have us believe that the DRD is 0.0 --sigh. When
is anyone going to realize the trouble is (practically) never the
*buyers/consumers*, even less so the *makers/producers*. Problem is always,
as with most goods, the *sellers/distributors* :) An _honest_ salesman?
Honestly...



Cheers,

Andreas



Re: HashMap

2004-01-15 Thread Eric Galluzzo
Andreas L. Delmelle wrote:

-Original Message-
From: Peter B. West [mailto:[EMAIL PROTECTED]
A friend was watching over my shoulder as I was responding to an earlier
message on fop-dev.  HashMaps... I won't say what image that conjures
up for me.  Well?  A map of where you have the stash.
I never thought of it that way.
   

Well, ask him what a HashAttributeSet conjures up for him, and he might just
pull one right out of his office-drawer :)
 

I wonder if that office drawer would be part of his Hashtable.

(Sorry, couldn't resist.)

   - Eric




Re: HashMap

2004-01-15 Thread Peter B. West
Andreas L. Delmelle wrote:
Depends on what portions you're used to, not? ;)  I'd never trust public
media though, when it comes to providing us with an accurate estimate of
this figure... many would have us believe that the DRD is 0.0 --sigh. When
is anyone going to realize the trouble is (practically) never the
*buyers/consumers*, even less so the *makers/producers*. Problem is always,
as with most goods, the *sellers/distributors* :) An _honest_ salesman?
Honestly...
Andreas,

I hope you're not casting aspersions on my producer/consumer buffers?

Peter
--
Peter B. West http://www.powerup.com.au/~pbwest/resume.html


HashMap

2004-01-14 Thread Peter B. West
A friend was watching over my shoulder as I was responding to an earlier 
message on fop-dev.  HashMaps... I won't say what image that conjures 
up for me.  Well?  A map of where you have the stash.

I never thought of it that way.

Peter
--
Peter B. West http://www.powerup.com.au/~pbwest/resume.html


Re: HashMap

2004-01-14 Thread John Austin
On Wed, 2004-01-14 at 21:27, Peter B. West wrote:
 A friend was watching over my shoulder as I was responding to an earlier 
 message on fop-dev.  HashMaps... I won't say what image that conjures 
 up for me.  Well?  A map of where you have the stash.
 
 I never thought of it that way.

Those of you in 'foreign climes' won't have heard of Canada's
latest drug bust. A former brewery north of Toronto was being used 
as one of the largest 'grow ops' (hydroponic marijuana factory)
ever discovered.

The Globe and Mail (http://www.globeandmail.com/) stated that
Ontario produces more weed than the entire population could
possibly smoke. There's an image of Canada that I want Europeans
to have. Of course it would slow hockey down quite a bit (but it
would dramatically increase concession sales at NHL games ...)
and cut out the fights. And only one of the Cheech and Chong guys
is/was Canajun, eh!

Anyway ... the former Molson's brewery in Barrie Ontario next
to Highway 400 (Interstate/Motorway/Autobahn) ... had everything
they needed ... huge metal kettles ... loading docks ... 
-- 
John Austin [EMAIL PROTECTED]


java/util/HashMap error

2002-04-19 Thread Mathy V Arumugam


I have posted this que. to the fop-user list and no resp. Hope someone
could help me...
I am using JDK 1.3.0_02 along with javawebserver2.0.
My servlet is failing at
 Driver dr=new Driver();
Error:
java.lang.NoClassDefFoundError: java/util/HashMap
at org.apache.fop.fo.FOTreeBuilder.init>(FOTreeBuilder.java:85)
Thanks
Mathy
This is what I have in my java file to generate a PDF file:
 Logger
log;
 Hierarchy hierarchy = Hierarchy.getDefaultHierarchy();
 log = hierarchy.getLoggerFor("fop");
 log.setPriority(Priority.WARN);
 Driver dr=new Driver();
// * this is where it is failing**
 dr.setLogger(log);
 dr.setRenderer(Driver.RENDER_PDF);
 InputHandler ih=new XSLTInputHandler(xmlFile,xslFile);
 XMLReader p=ih.getParser();
 dr.setOutputStream(new FileOutputStream(pdfFile));
 dr.render(p,ih.getInputSource());





Re: java/util/HashMap error

2002-04-19 Thread James Hunt

I've received this error when I didn't have my
CLASSPATH system variable set correctly. Set CLASSPATH
to .; what ever paths you had previously/

Good Luck, 
James

--- Mathy V Arumugam [EMAIL PROTECTED]
wrote:
 I have posted this que. to the fop-user list and no
 resp.  Hope someone could
 help me...
 
 I am using JDK 1.3.0_02 along with javawebserver2.0.
 
 My servlet is failing at
  Driver dr=new Driver();
 
 Error:
  java.lang.NoClassDefFoundError: java/util/HashMap
  at

org.apache.fop.fo.FOTreeBuilder.init(FOTreeBuilder.java:85)
 
 Thanks
 Mathy
 
 This is what I have in my java file to generate a
 PDF file:
 Logger log;
 Hierarchy hierarchy =
 Hierarchy.getDefaultHierarchy();
 log = hierarchy.getLoggerFor(fop);
 log.setPriority(Priority.WARN);
 Driver dr=new Driver();// *  this is
 where it is failing**
 dr.setLogger(log);
 dr.setRenderer(Driver.RENDER_PDF);
 InputHandler ih=new
 XSLTInputHandler(xmlFile,xslFile);
 XMLReader p=ih.getParser();
 dr.setOutputStream(new
 FileOutputStream(pdfFile));
 dr.render(p,ih.getInputSource());
 
 
 
 


=
Voice: (513) 661 - 8007
Email: [EMAIL PROTECTED]

__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: java/util/HashMap error

2002-04-19 Thread Mathy V Arumugam

Thanks James,
But that did do any good.

Mathy

James Hunt wrote:

 I've received this error when I didn't have my
 CLASSPATH system variable set correctly. Set CLASSPATH
 to .; what ever paths you had previously/

 Good Luck,
 James

 --- Mathy V Arumugam [EMAIL PROTECTED]
 wrote:
  I have posted this que. to the fop-user list and no
  resp.  Hope someone could
  help me...
 
  I am using JDK 1.3.0_02 along with javawebserver2.0.
 
  My servlet is failing at
   Driver dr=new Driver();
 
  Error:
   java.lang.NoClassDefFoundError: java/util/HashMap
   at
 
 org.apache.fop.fo.FOTreeBuilder.init(FOTreeBuilder.java:85)
 
  Thanks
  Mathy
 
  This is what I have in my java file to generate a
  PDF file:
  Logger log;
  Hierarchy hierarchy =
  Hierarchy.getDefaultHierarchy();
  log = hierarchy.getLoggerFor(fop);
  log.setPriority(Priority.WARN);
  Driver dr=new Driver();// *  this is
  where it is failing**
  dr.setLogger(log);
  dr.setRenderer(Driver.RENDER_PDF);
  InputHandler ih=new
  XSLTInputHandler(xmlFile,xslFile);
  XMLReader p=ih.getParser();
  dr.setOutputStream(new
  FileOutputStream(pdfFile));
  dr.render(p,ih.getInputSource());
 
 
 
 

 =
 Voice: (513) 661 - 8007
 Email: [EMAIL PROTECTED]

 __
 Do You Yahoo!?
 Yahoo! Tax Center - online filing with TurboTax
 http://taxes.yahoo.com/

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: java/util/HashMap error

2002-04-19 Thread Mathy V Arumugam

Setting up the current path did NOT do any good

Mathy V Arumugam wrote:

 Thanks James,
 But that did do any good.

 Mathy

 James Hunt wrote:

  I've received this error when I didn't have my
  CLASSPATH system variable set correctly. Set CLASSPATH
  to .; what ever paths you had previously/
 
  Good Luck,
  James
 
  --- Mathy V Arumugam [EMAIL PROTECTED]
  wrote:
   I have posted this que. to the fop-user list and no
   resp.  Hope someone could
   help me...
  
   I am using JDK 1.3.0_02 along with javawebserver2.0.
  
   My servlet is failing at
Driver dr=new Driver();
  
   Error:
java.lang.NoClassDefFoundError: java/util/HashMap
at
  
  org.apache.fop.fo.FOTreeBuilder.init(FOTreeBuilder.java:85)
  
   Thanks
   Mathy
  
   This is what I have in my java file to generate a
   PDF file:
   Logger log;
   Hierarchy hierarchy =
   Hierarchy.getDefaultHierarchy();
   log = hierarchy.getLoggerFor(fop);
   log.setPriority(Priority.WARN);
   Driver dr=new Driver();// *  this is
   where it is failing**
   dr.setLogger(log);
   dr.setRenderer(Driver.RENDER_PDF);
   InputHandler ih=new
   XSLTInputHandler(xmlFile,xslFile);
   XMLReader p=ih.getParser();
   dr.setOutputStream(new
   FileOutputStream(pdfFile));
   dr.render(p,ih.getInputSource());
  
  
  
  
 
  =
  Voice: (513) 661 - 8007
  Email: [EMAIL PROTECTED]
 
  __
  Do You Yahoo!?
  Yahoo! Tax Center - online filing with TurboTax
  http://taxes.yahoo.com/
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, email: [EMAIL PROTECTED]

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: java/util/HashMap error

2002-04-19 Thread J.Pietschmann

Mathy V Arumugam wrote:
 I have posted this que. to the fop-user list and no resp.  Hope someone 
 could help me...
 
 I am using JDK 1.3.0_02 along with javawebserver2.0.
 
 My servlet is failing at
  Driver dr=new Driver();
 
 Error:
  java.lang.NoClassDefFoundError: java/util/HashMap
  at org.apache.fop.fo.FOTreeBuilder.init(FOTreeBuilder.java:85)

You don't have access to the Java run time library.
This is not a FOP problem. Ask the javawebserver guys
what magic you have to apply.
Chances are that you either have to deploy the FOP
jars and/or your class files somewhere else, or you hit
a bug in the webserver.

Unless someone else on this list uses javawebserver,
you wont get further help on this list for this
problem.

J.Pietschmann


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: java/util/HashMap error

2002-04-19 Thread Mathy V Arumugam

Thanks J.

I found a way to run the javawebserver using the jre lib.

Mathy

J.Pietschmann wrote:

 Mathy V Arumugam wrote:
  I have posted this que. to the fop-user list and no resp.  Hope someone
  could help me...
 
  I am using JDK 1.3.0_02 along with javawebserver2.0.
 
  My servlet is failing at
   Driver dr=new Driver();
 
  Error:
   java.lang.NoClassDefFoundError: java/util/HashMap
   at org.apache.fop.fo.FOTreeBuilder.init(FOTreeBuilder.java:85)

 You don't have access to the Java run time library.
 This is not a FOP problem. Ask the javawebserver guys
 what magic you have to apply.
 Chances are that you either have to deploy the FOP
 jars and/or your class files somewhere else, or you hit
 a bug in the webserver.

 Unless someone else on this list uses javawebserver,
 you wont get further help on this list for this
 problem.

 J.Pietschmann

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]