Need information regarding Xerces C on Tru64

2004-10-25 Thread PRABHU, ANANTHA (STSD)
Hello, I would like to know weather Xerces C is supported on Tru64 or not. If it is supported on Tru64, which version of the source code I can download and do a build? Is there any specific build instructions for Tru64? Do I need to install GNU utilities like gmake, autoconf etc on the Tru64 fo

Re: Re Tcl interface was Re: [jira] Commented: (XERCESC-1287) new deprecated DOM libraries not included in .spec file for Linux

2004-10-25 Thread Valerio Gionco
Gareth Reakes wrote: Hi, ... Sorry if we did not reply, I do recall this and I thought I did. It is very generous to offer this code. The main problem is that it would have to be maintained. Before we can think of accepting such a major piece of code we have to know who will be maintaining it. W

Validation Problem with Foreign Characters

2004-10-25 Thread White Daniel E CONT DLVA
I am trying to accept XML with some foreign characters in it: Like this: Hållø Thære. These are 8-bit, iso-8859-1 characters, ( e5, e6, and f8 ) The XercesDOMParser's validator throws an exception that says "Invalid or incomplete multibyte or wide character" Any clues out there ? -

Re: Validation Problem with Foreign Characters

2004-10-25 Thread Alberto Massari
At 09.36 25/10/2004 -0400, White Daniel E CONT DLVA wrote: I am trying to accept XML with some foreign characters in it: Like this: Hållø Thære. These are 8-bit, iso-8859-1 characters, ( e5, e6, and f8 ) The XercesDOMParser's validator throws an exception that says "Invalid or incomplete multibyte

RE: Validation Problem with Foreign Characters

2004-10-25 Thread White Daniel E CONT DLVA
Yes it does, and I have some more info: I got the error "Invalid or incomplete multibyte or wide character" when it was in a field that was validated by a pattern of [A-Z] I tried it again in a field of just xs:string -- a description field -- and I got this error: Fatal Error: Type: UTFDataForm

Re: Need information regarding Xerces C on Tru64

2004-10-25 Thread P.M.S.Prakash
Hi Ananth, Yes, it is supported. You can try the latest version 2.5.0. It needs gmake for compilation. Use 'runConfigure -p tru64 -ccxx -xcxx -P ' and then compile using gmake. Regards Prakash PRABHU, ANANTHA (STSD) wrote: Hello, I would like to know weather Xerces C is supported on Tru64 or not

Problem while building Xerces 2_3_0 on Tru64...

2004-10-25 Thread PRABHU, ANANTHA (STSD)
Hi, I am getting following error when i do a xerces build on Tru64, gmake[3]: Entering directory `/usr/users/prabhua/Xerces/xerces-c-src_2_3_0/src/xercesc/util/Platforms/Tru64' mkdir -p /usr/users/prabhua/Xerces/xerces-c-src_2_3_0/src/xercesc/include/xercesc/util/Platforms/Tru64 cp -fp Tru64Def

RE: Validation Problem with Foreign Characters

2004-10-25 Thread Alberto Massari
If you get a UTFDataFormatException, you are using the UTF-8 transcoder, and not the iso-8859 one. Have you tried running the sample DOMPrint on the XML file? If it fails, you should attach a test XML to your mail so that we can reproduce the problem. Alberto At 09.52 25/10/2004 -0400, White Da

Re: Problem while building Xerces 2_3_0 on Tru64...

2004-10-25 Thread P.M.S.Prakash
Hi Ananth, Instead of -r pthread, try with "-l -pthread" option, it will work. In tru64, the compiler flag to be used is "-pthread". I don't think -r pthread option of runConfigure works for tru64. Regards Prakash PRABHU, ANANTHA (STSD) wrote: Hi, I am getting following error when i do a xerces

RE: Problem while building Xerces 2_3_0 on Tru64...

2004-10-25 Thread PRABHU, ANANTHA (STSD)
Hello Prakash, I tried -l -pthread option, but still I am seeing the same issue. Is there any other settings that needs to be done, to resolve this issue? Regards Ananth -Original Message- From: P.M.S.Prakash [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 7:44 PM To: [EMAIL PR

RE: Validation Problem with Foreign Characters

2004-10-25 Thread White Daniel E CONT DLVA
Actually, I just found the answer I was looking for: I read in the XML off of a socket and into a character buffer and then into a MemBufInputSource object. I found the "setEncoding" method to that object, and added the line: memBufIS->setEncoding ( XMLString::transcode( "iso-8859-1" ) ) ; Now,

Re: Problem while building Xerces 2_3_0 on Tru64...

2004-10-25 Thread P.M.S.Prakash
Hi Ananth, Add -pthread option manually to PLATFORM_COMPILE_OPTIONS variable in the file $XERCESCROOT/src/xercesc/Makefile.incl and try. PLATFORM_COMPILE_OPTIONS = -D${PLATFORM} -ptr ${XERCESCROOT}/.cxx_repository -pthread Regards Prakash PRABHU, ANANTHA (STSD) wrote: Hello Prakash, I tried -l