RE: plaforms

2001-10-17 Thread Nick Denning
A quick note on this as we upgraded to Solaris 2.7 and Sun Workshop 5.x, my Solaris people tell me that 4.2 is not actually a supported environment on 2.6 in any event, even though it clearly works!! Nick -Original Message- From: Cheung Tam [mailto:[EMAIL PROTECTED]] Sent: 17 October 200

Re: French accents

2001-10-17 Thread Curt Arnold
My guess is the source document is encoded in ISO-8859-1, but does not have an XML declaration so it is interpreted as UTF-8. Add a: XML documents are not affected by the locale of the processor, they contain their encoding information so that a document written in France doesn't magically get

Re: Multithreading

2001-10-17 Thread Martin Kalen
- Original Message - From: suresh Operating system : RH 7.1compiler: gcc2.95.2I have a multithreaded application with runs fine in windows when i port thecode to linux iam having problems.Do i have to link special libraries to make it multithreaded in linux (Like

Xerces support

2001-10-17 Thread Bagepalli, Kiran
Could somebody point out what xerces 1.5.1 support in terms of the XML spec and the schema spec. Pls correct me - Is it XML spec 6 Oct 2000 And XML schema spec - May 2nd 2001?? Could somebody pls correct me. Kiran - To unsubsc

French accents

2001-10-17 Thread Guillaume Bataille
I parse an xml file with french accents under win2000, vc6 and xerces c++. I use an IDOMParser. When I extract words containing accents from the tree, accentuated characters appear to have been transformed. How can I fix that ? It seems that it's a transcoder problem. There is no setLocale() metho

Xerces C++ for OpenVMS

2001-10-17 Thread Mitchell, Roger
Any information on porting to OpenVMS... Thanks > Roger Mitchell > Northrop-Grumman ISA Melbourne > Joint Surveillance Target Attack Radar System (J-STARS) > Control Applications Software Tech Lead > (321) 951-5093 [EMAIL PROTECTED] > > > ---

Memory leak

2001-10-17 Thread Williamson, Siehnai
Title: Memory leak Hi Everyone, There appears to be a memory leak in the SAX parser during validation.  It occurs at the line XMLMutex* tmpMutex = new XMLMutex in the gVAlidatorMutex() method of the XMLValidator class (see below): * static XMLMutex& gValidatorMutex() {     static XML

SAX validation error messages

2001-10-17 Thread Williamson, Siehnai
Title: SAX validation error messages Hi Everyone, When there is a validation error while using the SAX parser, the error message doesn't seem to get loaded even though there is a valid code coming from XMLValid::Codes.  Is this intended?  Could the SAXParseException contain more information

Re: Interested in getting changes into main Xerces distribution

2001-10-17 Thread D. Stimits
Murray Cumming wrote: > ...snip... > > > > > > What is required to get the ball rolling on this as a change? Should I > > submit an altered package that is similar to the sane_includes? > > sane_includes fixes all of the problems. I will push for those changes > to be applied *after* the next bu

Re: Interested in getting changes into main Xerces distribution

2001-10-17 Thread Murray Cumming
On Wed, 2001-10-17 at 19:49, D. Stimits wrote: > "D. Stimits" wrote: > > > > Murray Cumming wrote: > > > > ...snip... > > > > > I really have no idea what you're talking about. Could you try to > > > > > explain more concisely? > > > > > > > > Yes, I see a flaw in my argument (the paragraph above

RE: plaforms

2001-10-17 Thread Samar Abbas Lotia
Title: RE: plaforms I have compiled Xerces on Solaris 2.8 and have been able to successfully use parts of it. The only thing we have used it for is parsing unvalidated documents. This seems to work fairly well. We have noticed problems when xerces is asked to parse a file that does not exist,

Re: Interested in getting changes into main Xerces distribution

2001-10-17 Thread D. Stimits
"D. Stimits" wrote: > > Murray Cumming wrote: > > ...snip... > > > > I really have no idea what you're talking about. Could you try to > > > > explain more concisely? > > > > > > Yes, I see a flaw in my argument (the paragraph above that says "src" > > > doesn't need to be renamed still applies t

plaforms

2001-10-17 Thread Cheung Tam
Hey guys, I was wondering if there are any plans to upgrade the platforms for xerces... I was thinking in regards to RH 7.1 and for egcs-2.95. I tried compiling on RH 7.1but xerces seems to crash. I noticed from the archive that a few people had the same problem as well. Also, what about Sola

Problems with Xerces / TCL integration

2001-10-17 Thread Kevin Shaw
Hi, I have written a simple TCL package in C++ (on a HP running HP-UX 11). This file contains the package init procedure and a simple command. There are no references to the Xerces API within the code. This package is made available as a shared library. The final application will (I hope) ma

DO NOT REPLY [Bug 3750] - GeneralAttributeCheck threading bug

2001-10-17 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 4229] New: - Iconv390TransService::isSpace does not work (OS/390)

2001-10-17 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

MULTITHREADING

2001-10-17 Thread suresh
Hi All,The environment isOperating system : RH 7.1compiler: gcc2.95.2I have a multithreaded application with runs fine in windows when i port thecode to linux iam having problems.Do i have to link special libraries to make it multithreaded in linux (LikeMultithreaded Option In VC++ IDE) .I k

explanation of NodeIDMap

2001-10-17 Thread Chris Mennie
Could someone explain to me what NodeIDMap is used for and how attributes get added to it, etc? I'm trying to see when the 'add' method is called, and from the looks of it, it's only called when AttrImpl::isIdAttr() is true. However, I don't see where this is ever the case. I know

RE: Can we create our own DOM_Nodelist

2001-10-17 Thread Erik Rydgren
Create a filter class.   class cFilterNodeList {   DOM_Element& m_roElement;   CString m_oWantedElementName;   public:   cFilterNodeList(DOM_Element& roElement, const char* pzElementName)   : m_roElement(roElement), oWantedElementName(pzElementName)