Re: Cannot build xerces 1.5.0 with gcc 3.0

2001-07-09 Thread David_N_Bertoni
Why don't you just remove that option from the compiler options in the Makefile? Did you try that? Dave Will Taylor

Re: Validate XML

2001-07-09 Thread LiChao(李超)
Title: Validate XML Sorry,I made a syntax mistake.I really want to know which elements should be the next,for there may be many elements can be the following. -ԭʼÓʼþ-·¢¼þÈË: LiChao(À) [mailto:[EMAIL PROTECTED]]·¢ËÍʱ¼ä: 2001Äê7ÔÂ10ÈÕ 10:32ÊÕ¼þÈË: '[EMAIL PROTECTED]'Ö÷Ìâ:

Validate XML

2001-07-09 Thread LiChao(李超)
Title: Validate XML I want to implement such a task : a WYSIWYG XML Editor. When the user is editing, I show him which element could be the next. Which part of the xerces can give me the most help? Anyone can give me any hint? Thanks a lot. Super

I wish to contact you on the ICQ Network

2001-07-09 Thread paul_teresa
Hello! I have tried to contact you through ICQ but couldn't find you in the ICQ Community! If you are using ICQ, please send me your ICQ number by ICQ Email Express to [EMAIL PROTECTED] If you are not using ICQ, I would like to invite you to join the ICQ community so we can send messages, c

Re: Reg Nodelist

2001-07-09 Thread Jason E. Stewart
"Mohammed Zubair" <[EMAIL PROTECTED]> writes: > i need to know as to whether a NodeList when returned based on some > query - is an ordered list or unordered??? The list itself is order (hence the item() method), but the order in which you get the items in the list is dependent on what type of n

Re: query-1

2001-07-09 Thread Jason E. Stewart
"Rengan Mysore" <[EMAIL PROTECTED]> writes: > Dear sir, Hey Rengan, This is a developers mailing list, not a single sir (or madam). You're not likely to get many helpful responses with you message. If you don't understand the code, look at the example applications in the samples/ directory. R

Cannot build xerces 1.5.0 with gcc 3.0

2001-07-09 Thread Will Taylor
gcc 3.0 does not recognize g++ option: -instances=static g++ -fPIC -instances=static -DSOLARIS -D_REENTRANT -c -O -DXML_USE_NATIVE_TRANSCODER -DXML_USE_INMEM_MESSAGELOADER -DXML_USE_NETACCESSOR_SOCKET -I/home/taylor/junk/test/xerces-c-src1_5_0/include -o /home/taylor/junk/test/xerces-c-src1_5_0/

Reg Nodelist

2001-07-09 Thread Mohammed Zubair
Hi, i need to know as to whether a NodeList when returned based on some query - is an ordered list or unordered??? regards, Mohammed Zubair V NSCA, Sony. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: multiple instances of the tree???

2001-07-09 Thread Bob Vaughn
Brian... If I remember correctly you are using VxWorks where all tasks share the same memory space. So yes, you can pass the pointer around. -- Bob Vaughn Telestream, Inc. -Original Message- From: Jones, Brian O. [mailto:[EMAIL PROTECTED]] Sent: Monday, July 09, 2001 1:01 PM To: 'xerces

RE: multiple instances of the tree???

2001-07-09 Thread Bob Vaughn
Title: RE: multiple instances of the tree??? -Original Message- From: Jones, Brian O. [mailto:[EMAIL PROTECTED]] Sent: Monday, July 09, 2001 1:01 PM To: 'xercesDev' Subject: multiple instances of the tree??? Hello all, Here is my problem.  I would like to use the Xerces Lib to p

multiple instances of the tree???

2001-07-09 Thread Jones, Brian O.
Hello all, Here is my problem. I would like to use the Xerces Lib to parse my XML data and pass the parser pointer to several applications, is this feasible or a pipe dream??? i.e. BigTask would parse the tree and create a pointer to access that information. Can the same pointer be used in app

RefHash3KeysIdPoolEnumerator->nextElement() exception!!

2001-07-09 Thread 임경미
Xerces-C version number => 1.5(xml4c3_5_0-win32) Platform  => PC Operating system and version number => Win NT 4.0 Workstation Compiler and version number => Visual Studio C++ 6.0 The XML document (or excerpt) that failed The C++ application code that failed Whether you built the Xe

query-1

2001-07-09 Thread Rengan Mysore
Dear sir, While going through the API docs in ur site, i am not quite sure where to start to understand the different classes defined and used in the XML parsers for C. Since most of the classes declared have been inherited, I am unable to understand anything. Kindly guide me, from wher

RE: 'DOMParser' memory problems

2001-07-09 Thread Murphy, James
Put them within a conditional check for the reason in DllMain - call Initialize only when the reason == DLL_PROCESS_ATTACH and call terminate when reason == DLL_PROCESS_DETACH. Your DllMain will be called each time a thread is created after the DLL is loaded - this results in multiple calls to yo

RE: 'DOMParser' memory problems

2001-07-09 Thread Prior, Chris
Well, as far as I know (which is not a lot!) memory checkers will report leaks when there are none but the memory will still be released. However, I really would try to code for calling Init and Term once in your process lifetime only. You can do this a number of ways - if you want to limit the

RE: 'DOMParser' memory problems

2001-07-09 Thread Alfredo Muñoz
You do not free some buffers.so, you gain risk of memory leaks. Alfredo -Original Message- From: john guildesh [mailto:[EMAIL PROTECTED]] Sent: Lunes, 09 de Julio de 2001 11:47 a.m. To: [EMAIL PROTECTED] Subject: RE: 'DOMParser' memory problems Dear Chris, Thank you very much... I

RE: 'DOMParser' memory problems

2001-07-09 Thread john guildesh
Dear Chris, Thank you very much... If I do not call Terminate(), it works!!! But, wich are the risks of not calling Terminate()??? Regards, On Mon, 09 July 2001, "Prior, Chris" wrote: > > Is your Dll being loaded and unloaded and then loaded again? > > Check it DllMain. > > A couple of th

Re: 'DOMParser' memory problems

2001-07-09 Thread Murray Cumming
john guildesh wrote: > > I do not think so. > > Inside the DLL, I call: > > XMLPlatformUtils::Initialize(); > ... > XMLPlatformUtils::Terminate(); > > (and only once). But if you are calling methods in your DLL twice, then maybe Initialize() is actually being called twice. I have found it nec

RE: 'DOMParser' memory problems

2001-07-09 Thread Prior, Chris
Is your Dll being loaded and unloaded and then loaded again? Check it DllMain. A couple of things you can do: 1. Don't call Terminate (memory is still released) 2. Put in a mutex to guard against calling Initialize after Terminate in a process. Good luck. Chris Prior -Original Message--

RE: 'DOMParser' memory problems

2001-07-09 Thread john guildesh
I do not think so. Inside the DLL, I call: XMLPlatformUtils::Initialize(); ... XMLPlatformUtils::Terminate(); (and only once). The first time, it does not crash, but the second time it does. And it crashes not at 'Initialize()', but at 'DOMParser parser'. Must I empty 'parser' variable

XML Character entities

2001-07-09 Thread Jason E. Stewart
Norm Walsh has made XML versions of the ISO character entities. Check out: http://docbook.sourceforge.net/projects/xmlcharent/index.html We could distribute these with Xerces, could we not? Or at least include the URL in the documentation as a useful reference. jas. ---

RE: 'DOMParser' memory problems

2001-07-09 Thread Jesse Pelton
Are you calling XMLPlatformUtils::Initialize() more than once per process? If so, that's your problem. See the FAQ. -Original Message- From: john guildesh [mailto:[EMAIL PROTECTED]] Sent: Monday, July 09, 2001 10:38 AM To: [EMAIL PROTECTED] Subject: 'DOMParser' memory problems Hi! Work

'DOMParser' memory problems

2001-07-09 Thread john guildesh
Hi! Working with Visual C++ 6.0 and Xerces-C 1.4.0. I've just created a DLL to Parse an XML document. When calling it once, there is no problem, but there is a problem if I call it twice. At the second time, I get: ("instruction xxx makes reference to the memory...") Just when executing: //

Re: Building a XML file with xerces lib.

2001-07-09 Thread Jason E. Stewart
"Chaim Koshizky" <[EMAIL PROTECTED]> writes: > Dear sir ; > > I am trying to convert an ASCII file similar to the registry of the NT > system into XML file. I use the xerces library. Taking the > "CreateDomDocument" and "DOMPrint" examples from your site. Could you > please help me with the fo

Ending Tags !

2001-07-09 Thread Co-op DI
Is there any way that I can pick up the ending tags of an XML file ( ) using some function in DOM. I am trying to reproduce an XML file using DOM. Please give some suggestions. Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED]

[Bug 2512] New: - typing mistake in code example of chapter "Constructing an XML Reader"

2001-07-09 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2512 *** shadow/2512 Mon Jul 9 05:10:20 2001 --- shadow/2512.tmp.10029 Mon Jul 9 05:10:20 2001 *** *** 0 --- 1,31 + ++ + | typing mistake in

Building a XML file with xerces lib.

2001-07-09 Thread Chaim Koshizky
Dear sir ; I am trying to convert an ASCII file similar to the registry of the NT system into XML file. I use the xerces library. Taking the "CreateDomDocument" and "DOMPrint" examples from your site. Could you please help me with the following : 1. How do I declare the line . 2. How can