RE: Validation Problem with Foreign Characters

2004-10-25 Thread White Daniel E CONT DLVA
ari [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 10:05 AM To: [EMAIL PROTECTED] Subject: RE: Validation Problem with Foreign Characters 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

RE: Validation Problem with Foreign Characters

2004-10-25 Thread Alberto Massari
ror: Fatal Error: Type: UTFDataFormatExceptionMessage: invalid byte 2 () of a 2-byte sequence -Original Message- From: Alberto Massari [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 9:42 AM To: [EMAIL PROTECTED] Subject: Re: Validation Problem with Foreign Characters At 09.36

RE: Validation Problem with Foreign Characters

2004-10-25 Thread White Daniel E CONT DLVA
rror: Type: UTFDataFormatExceptionMessage: invalid byte 2 () of a 2-byte sequence -Original Message- From: Alberto Massari [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 9:42 AM To: [EMAIL PROTECTED] Subject: Re: Validation Problem with Foreign Characters At 09.36 25/10/2004 -0400, Whit

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

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: Schema Validation problem ...

2002-03-08 Thread Khaled Noaman
Hi Martin, In DONTWORK.addr.xsd, the schema components are defined in the targetNamespace of the schema. So, if you refer to any global components of that schema, you need to qualify them (i.e. use a prefix that will resolve to the schema target namespace). Here is a link to the QName resolution

Schema Validation problem ...

2002-03-07 Thread Martin Wilson
Hi all, I have a problem validating a document that uses 'TargetNamespace' in the schema and 'schemaLocation' in the document. i get "Line: 3, Column: 154, Error: Type not found in :addressline" from the parser when trying to validate this document. The other version work fine when put through t

Re: Validation problem with restricted doubles/floats with minInclusive

2002-02-27 Thread Schmid, David
Hi PeiYong Thanks for the info! I understand that the Specs don't demand it in any way, but, honestly, everyone knows that 0.00 and 0.0 and 0.00 are all valid representations of zero, and zero is always a valid float/double. Can't the validator be made smart enough to understand this

Re: Validation problem with restricted doubles/floats with minInclusive of 0

2002-02-27 Thread PeiYong PY Zhang
Hi, there, If you run your sample against the latest nightly build, you may have a different error message which reads: Message: Datatype error: type:InvalidDatatypeFacetException, Message: Value '0.0' shall be in the range of '-1.401298...E-45', '+1.401298...

Validation problem with restricted doubles/floats with minInclusive of 0

2002-02-26 Thread Schmid, David
Hello I am having a problem putting range restrictions on elements of types xsd:double and xsd:float when minInclusive is 0. E.g. if my schema is : and I parse an instance doc containing: 0.00 I get an error: Datatype error: Type:InvalidDatatypeFacetException,

Re: Validation problem

2001-08-27 Thread Murray Cumming
with the DOM parser. > > -Original Message- > > From: Alessandro [mailto:[EMAIL PROTECTED]] > > Sent: 24. august 2001 14:31 > > To: [EMAIL PROTECTED] > > Subject: Validation problem > > > > > > Is it possible to validate an XML document (using a sch

RE: Validation problem

2001-08-26 Thread Christoffer Dam Bruun
> Sent: 24. august 2001 14:31 > To: [EMAIL PROTECTED] > Subject: Validation problem > > > Is it possible to validate an XML document (using a schema file, with > Xerces), specifing the path of the schema not in the XML document, but > in

Validation problem

2001-08-24 Thread Alessandro
Is it possible to validate an XML document (using a schema file, with Xerces), specifing the path of the schema not in the XML document, but in the C++ program that parses it? - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi