Re: [Bug 2728] - Borland C++ Builder 5.0 Compile Error

2001-08-09 Thread Tom Kjaer
Hi To compile Xerces C++ in Borland C++ Builder 5 standard (update package 1) I did the following: 1. Change file src/util/Compilers/BorlandCDefs.hpp line 88-89 to typedef wchar_t XMLCh; // typedef unsigned short XMLCh; 2. Change file src/util/Platforms/Win32/Win32PlatformUtils.cpp line 63

Is there an option to configure to build xerces as a static library?

2001-08-09 Thread Youngmee Kim
Is there an easy way (without mucking with the makefiles) to configure to build xerces into a static library (.a)? Youngmee Kim [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: Help! I can't build Xerceson Solarus 2.6

2001-08-09 Thread Nicole
Hi Joseph, I don't know what might be causing that, but I built Xerces on Solaris 2.6 too and I got some strange error messages myself when using cc and CC compilers. Are the gcc and g++ compilers available to you? The documentation does not endorse using these, but strangely enough it solved m

Help! I can't build Xerceson Solarus 2.6

2001-08-09 Thread Coppa Joseph G
Title: Help! I can't build Xerceson Solarus 2.6 Hello:    I am trying to compile on Solaris, multi threaded with the CC and cc compilers from solaris.   I run runConfigure: #runConfigure -psolaris -ccc -xCC -minmem -nfileonly -tnative when I run make all the .o files seem to build fine b

[Bug 2728] - Borland C++ Builder 5.0 Compile Error

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2728

[Bug 2179] - DOM_NodeList.item(i) always returns a NULL node.

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2179

ICU Message Loader fails to compile.

2001-08-09 Thread Daniel Crown
Hi, I'm trying to build Xerces-1.4 with ICU 1.6, and I'm having some problems including the ICU message loader. Please note that I performed the build _exactly_ as it is specified on the docs and I tried to compile all the things on two separate servers with different Linux versions (RH 6.2 and 7

Re: Changing include to include/xercesc

2001-08-09 Thread Tinny Ng
I just worry, if we do this, will we eventually be asked to add "xercesc" to all the folders => include/xercesc => samples/xercesc => bin/xercesc => lib/xercesc => doc/xercesc ?? and for someone who uses our source package, and uses the src path as the include path directly (e.g. I noticed xa

[Bug 2179] - DOM_NodeList.item(i) always returns a NULL node.

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2179

[Bug 2179] - DOM_NodeList.item(i) always returns a NULL node.

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2179

Re: Getting Content Between Tags

2001-08-09 Thread Joseph_Kesselman
One thing to watch out for: There may be more than one Text node in the children, either because there are Elements between them, or because the document used markup, or because the document is not in normalized form (see the DOM spec for a discussion of that issue). You should probably write yo

Re: Getting Content Between Tags

2001-08-09 Thread Nicole
Thank you Alberto and Joseph for getting me on the right track! I just worked the code you provided into my existing code, and I'm getting good results! Nicole --- Alberto Massari <[EMAIL PROTECTED]> wrote: > At 06.40 09/08/2001 -0700, you wrote: > >Hi, > > > >This is probably considered a newb

Re: Getting Content Between Tags

2001-08-09 Thread Alberto Massari
At 06.40 09/08/2001 -0700, you wrote: >Hi, > >This is probably considered a newbie question, but I'd >really appreciate any help I can get. > >I don't know how to extract the values between XML >tags. I can see that getNodeValue doesn't do the >trick, and I remember reading in the mail archive th

Re: Getting Content Between Tags

2001-08-09 Thread Joseph_Kesselman
>I don't know how to extract the values between XML tags. Since you seem to be asking about the DOM API: Examine the children of the Element node. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

Getting Content Between Tags

2001-08-09 Thread Nicole
Hi, This is probably considered a newbie question, but I'd really appreciate any help I can get. I don't know how to extract the values between XML tags. I can see that getNodeValue doesn't do the trick, and I remember reading in the mail archive that it always returns null for element tags.

Re: How to create DOM_DocumentType after creating a document

2001-08-09 Thread Joseph_Kesselman
>DOM_Document doc = impl.CreateDocument ( 0, "company", NULL); >DOM_DocumentType docType = impl.createDocumentType ("MA", "MA", "ma"); >doc.appendChild (docType); Not officilly supported in DOM Level 2. Assert the DocumentType in the createDocument call. Yes, we know that having to do it in tha