Re: g++ problem

2003-01-26 Thread Arunvijai S
Hi Aziz, Follow this suggestions and mail me if you find these are usefull. 1).export LD_LIBRARY_PATH = directory. 2).Copy or link libxercesc.so to /usr/lib and /usr/local/lib; 3).Try to run samples after compiling it as the same way used for compiling the source. Note :-Both Source and samples s

nightly builds with BCB6

2003-01-26 Thread Mike Raschend
Hello, Nightly builds with BCB6. When I compile the XercesLib.dll I get 126 warnings and 2 linker errors: Unresolved external 'XMLMsgLoader::getLanguageName() const' referenced from WIN32MSGLOADER.OBJ Unresolved external 'XMLMsgLoader::setLocale(const char * const)' referenced PLATFORMUTILS.OBJ

DO NOT REPLY [Bug 16433] - Incorrect operation code with Borland Builder versus g++ - DOMUserDataHandler

2003-01-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 16433] New: - Incorrect operation code with Borland Builder versus g++ - DOMUserDataHandler

2003-01-26 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: When to delete nodes. Was: Bug 15928 not fixed in latest nightlybuilds

2003-01-26 Thread Gareth Reakes
Hi, you can never delete the DOMNodes. You can call release on them to make the memory they are using be recycled. The memory from the DOMNodes is owned by the document. When you delete the document the memory from the nodes is freed. Gareth On 25 Jan 2003, Colin Paul Adams wrote: >

Re: Problem in retrieving Attribute name, value

2003-01-26 Thread awakankar
Thanks Gareth, It has worked for me. But I am stuck up again with ignoring whitespaces. I have a dtd which looks something like: I am using: XercesDOMParser* mParser; Now I am trying to remove the whitespaces using mParser->setIncludeIgnorableWhitespace (false); this doesn't work and DO