RE: Problem initializing and terminating XMLPlatformUtils

2001-09-07 Thread Casey Schmit
-Original Message- From: Jesse Pelton [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 10:55 AM To: '[EMAIL PROTECTED]' Subject: RE: Problem initializing and terminating XMLPlatformUtils I'm glad you've managed to join the list, Mark. The basic

RE: Problem initializing and terminating XMLPlatformUtils

2001-09-07 Thread Jesse Pelton
001 14:00 To: [EMAIL PROTECTED] Subject: RE: Problem initializing and terminating XMLPlatformUtils Hi, I've made a partial fix that suited my needs that notifies classes that lazy data has been cleaned up, it's a little inelegant though (you need to manually maintain a list of classes to call

FW: Problem initializing and terminating XMLPlatformUtils

2001-09-07 Thread Mark Weaver
mailto:[EMAIL PROTECTED]] > Sent: 06 September 2001 13:20 > To: '[EMAIL PROTECTED]' > Subject: FW: Problem initializing and terminating XMLPlatformUtils > > > LOL! > It's a small world... Mark, you may wish to check this message out... > > -Original Messag

Re: Problem initializing and terminating XMLPlatformUtils

2001-09-06 Thread legaultc
ge - > From: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, September 05, 2001 9:20 PM > Subject: Problem initializing and terminating XMLPlatformUtils > > > > I have a need to initialize and terminate the utilities multiple time for > a

RE: Problem initializing and terminating XMLPlatformUtils

2001-09-06 Thread Jesse Pelton
evel, so I may not be much use on specifics. 4) If it works out, commit it. This all assumes that nobody has a better idea. So far, I don't think I've seen one. -jesse- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 1

Re: Problem initializing and terminating XMLPlatformUtils

2001-09-05 Thread Dean Roddey
ot;If it don't have a control port, don't buy it!" - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 05, 2001 9:20 PM Subject: Problem initializing and terminating XMLPlatformUtils > I have a need to initialize a

Problem initializing and terminating XMLPlatformUtils

2001-09-05 Thread legaultc
I have a need to initialize and terminate the utilities multiple time for a single process. For each lazily initialized data (or Singleton) we register an object that will perfom its cleanup (XMLDeleterFor). It seems to me that if we modified the XMLDeleterFor to not only delete the pointer b

RE: Re[2]: Problem initializing and terminating XMLPlatformUtils more th an o nce in a program

2001-05-08 Thread Dean Roddey
27; Subject: Re[2]: Problem initializing and terminating XMLPlatformUtils more th an o nce in a program Hello Raymond, Tuesday, May 08, 2001, you wrote: MR> Thanks. I realize now that this is covered in the FAQ. I actually do have MR> a need to initialize and terminate the utilitie

RE: Re[2]: Problem initializing and terminating XMLPlatformUtils more th an o nce in a program

2001-05-08 Thread Mitchell, Raymond
Thanks. -Original Message- From: Maxim Volkonovsky [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 1:22 AM To: Mitchell, Raymond Cc: '[EMAIL PROTECTED]' Subject: Re[2]: Problem initializing and terminating XMLPlatformUtils more th an o nce in a program Hello Raymond

Re: Problem initializing and terminating XMLPlatformUtils more than once in a program

2001-05-08 Thread Boris Tarasyuk
I solved this problem using FreeLibrary(hModule); LoadLibrary(hModule); every time I need reinitialize parser. Boris - Original Message - From: "Mitchell, Raymond" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 07, 2001 6:00 PM Subject: Pr

Re[2]: Problem initializing and terminating XMLPlatformUtils more th an o nce in a program

2001-05-08 Thread Maxim Volkonovsky
Hello Raymond, Tuesday, May 08, 2001, you wrote: MR> Thanks. I realize now that this is covered in the FAQ. I actually do have MR> a need to initialize and terminate the utilities multiple times in a single MR> process. I have several different libraries that use Xerces-C, each needing [...]

RE: Problem initializing and terminating XMLPlatformUtils more than o nce in a program

2001-05-07 Thread Mitchell, Raymond
ed to completely manage Xerces-C independent of each other. Are there any plans to allow this kind of use of Xerces-C? Thanks, Ray -Original Message- From: Dee Jay Randall [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 4:21 PM To: [EMAIL PROTECTED] Subject: Re: Problem initializin

Re: Problem initializing and terminating XMLPlatformUtils more than o nce in a program

2001-05-07 Thread walker . curtis
TP To: [EMAIL PROTECTED]@SMTP cc: Subject: Problem initializing and terminating XMLPlatformUtils more than o nce in a program Classification: I have run into a problem attempting to initialize and terminate XMLPlatformUtils more than once in a single program. The following code c

Re: Problem initializing and terminating XMLPlatformUtils more than o nce in a program

2001-05-07 Thread Dee Jay Randall
The API doc says: "void XMLPlatformUtils::Initialize () [static] Perform per-process parser initialization." so I assume it isn't mean to be called repeatedly. It is also written at http://xml.apache.org/xerces-c/program.html "Key points to remember when using the C++ DOM classes: - Create

Re: Problem initializing and terminating XMLPlatformUtils more than o nce in a program

2001-05-07 Thread Scott A. Herod
Inc > [EMAIL PROTECTED] > > -Original Message- > From: Mitchell, Raymond [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 07, 2001 3:01 PM > To: '[EMAIL PROTECTED]' > Subject: Problem initializing and terminating XMLPlatformUtils more than > o nce in a program >

Re: Problem initializing and terminating XMLPlatformUtils more than o ncein a program

2001-05-07 Thread peiyongz
: (416)448-4414; T/L: 778-4088 "Mitchell, Raymond" <[EMAIL PROTECTED]> on 05/07/2001 06:00:30 PM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: Problem initializing and terminating XMLPlatformUtils m

RE: Problem initializing and terminating XMLPlatformUtils more than o nce in a program

2001-05-07 Thread Dean Roddey
EMAIL PROTECTED]' Subject: Problem initializing and terminating XMLPlatformUtils more than o nce in a program I have run into a problem attempting to initialize and terminate XMLPlatformUtils more than once in a single program. The following code causes

Problem initializing and terminating XMLPlatformUtils more than once in a program

2001-05-07 Thread Mitchell, Raymond
I have run into a problem attempting to initialize and terminate XMLPlatformUtils more than once in a single program. The following code causes the error. XMLPlatformUtils::Initialize(); DOMParser *pDOMParser = new DOMParser; delete pDOMParser; XMLPlatformUtils::T