RE: Spam:RE: Validating XML against Schema

2005-02-04 Thread Jesse Pelton
2005 12:34 PMTo: [email protected]: Spam:RE: Validating XML against Schema I am investigating how Xerces-C++ can be used to parse a XML and validate it against a XML schema.   Greatly appreciate code snippets that show how this is done.   Many Thanks

RE: Validating XML against Schema

2005-02-04 Thread ebi.khazaneh
I am investigating how Xerces-C++ can be used to parse a XML and validate it against a XML schema.   Greatly appreciate code snippets that show how this is done.   Many Thanks Ebs PLEASE READ: The information contained in this email is confidential and intended for the named recipient(s)

[jira] Updated: (XERCESC-873) Takes 10times time when validating xml file with schema having x-path validations like uniqueness, references

2004-11-02 Thread Alberto Massari (JIRA)
[ http://nagoya.apache.org/jira/browse/XERCESC-873?page=history ] Alberto Massari updated XERCESC-873: Priority: Major > Takes 10times time when validating xml file with schema having x-path validations > like uniqueness, refe

Re: Validating XML Schema instance against XMLSchema.xsd

2004-06-25 Thread Neil Graham
TED] nworld.com> cc: Subject: Re: Validating XML Schema instance against XMLSche

Re: Validating XML Schema instance against XMLSchema.xsd

2004-06-25 Thread Andrew Wilson
I have a similar problem. Any pointers on where SQC can be obtained? D ^ DAndrew E Wilson < A > AV technology consultant (UK) D v D Tel +44 7710 727636, or +44 1753 885549 Hi, So it seems that according to xerces-c 2.5.0 W3's XMLSchema.xsd is not a valid XML Schema instance. An

Re: Validating XML Schema instance against XMLSchema.xsd

2004-06-25 Thread Gareth Reakes
Hi, So it seems that according to xerces-c 2.5.0 W3's XMLSchema.xsd is not a valid XML Schema instance. Any clues are appreciated. It is not a valid schema in the general sense. There are explicit allowances the the specs make for the schema for schema . As Alby says, there are also many many mo

Re: Validating XML Schema instance against XMLSchema.xsd

2004-06-24 Thread Alberto Massari
At 19.39 24/06/2004 +, Boris Kolpackov wrote: Good day, I am trying to validating XML Schema instance against W3's XML Schema schema. Here is what I have: [..] So it seems that according to xerces-c 2.5.0 W3's XMLSchema.xsd is not a valid XML Schema instance. Any clues are appreciat

Validating XML Schema instance against XMLSchema.xsd

2004-06-24 Thread Boris Kolpackov
Good day, I am trying to validating XML Schema instance against W3's XML Schema schema. Here is what I have: (1) test.xsd with the following content: http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:

RE: validating XML without DOCTYPE

2003-09-05 Thread Yves Monier
y, September 04, 2003 5:10 PM > To: [EMAIL PROTECTED] > Subject: RE: validating XML without DOCTYPE > > > Hello, > > I had the same problem 2 days ago! > (http://marc.theaimsgroup.com/?l=xerces-c-dev&m=106246309804928&w=2) > And the answer is: you can't :-( > >

RE: validating XML without DOCTYPE

2003-09-04 Thread Yves Monier
--- > From: Christian Brock [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 04, 2003 4:28 PM > To: [EMAIL PROTECTED] > Subject: validating XML without DOCTYPE > > > Hello everybody: > > I receive an XML document without a tag. > > I still want to validate th

Re: validating XML without DOCTYPE

2003-09-04 Thread Gareth Reakes
Hi, you can't currently do this. Gareth On Thu, 4 Sep 2003, Christian Brock wrote: > Hello everybody: > > I receive an XML document without a tag. > > I still want to validate the message against an existing DTD. > > How? > > Thanks --Chr. > > --

validating XML without DOCTYPE

2003-09-04 Thread Christian Brock
Hello everybody: I receive an XML document without a tag. I still want to validate the message against an existing DTD. How? Thanks --Chr. -- Christian Brock - To unsubscribe, e-mail: [E

RE: Validating XML docs against a Schema

2003-07-16 Thread Erik Rydgren
ilto:[EMAIL PROTECTED] > Sent: den 15 juli 2003 06:50 > To: [EMAIL PROTECTED] > Subject: Validating XML docs against a Schema > > Hi, > >I wrote my own errorhandler class to catch the errors that occur if the > XML file is not valid. > >For some reason it ne

Validating XML docs against a Schema

2003-07-14 Thread Suchit Batheja
Hi, I wrote my own errorhandler class to catch the errors that occur if the XML file is not valid. For some reason it never throws out any errors, no matter even if the schema does not exists and the XML file is invalid. I have attached the code. Could use some help. Thanks Suchi

Re: Validating XML with embedded schema using Xerces C++

2002-12-04 Thread Gareth Reakes
Hi, there is no direct way of doing what you want. You could adjust the xerces code base to make this possible, but I suspect the easier (much) way of doing this is to create a simple stylesheet the reprocesses the doc as you describe. Gareth On Wed, 4 Dec 2002, Simon Keary wrote: >

Validating XML with embedded schema using Xerces C++

2002-12-03 Thread Simon Keary
Hi, Given a XML document that contains an embedded schema (in this case WSDL) has anyone any idea if there is a simple way to validate it using Xerces-C 2.1? I have a simple (and valid) WSDL document that I'm trying to validate with Xerces but so far haven't had much luck. After much trial and

RE: Validating XML.

2001-12-18 Thread SidY
Hi, To validate you need a DTD... Usually you enable validation via a setMethod() of the relevant parser. Sid -Original Message- From: Shantanu Dutta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 18 December 2001 9:12 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Validating XML

RE: Validating XML.

2001-12-18 Thread Avula, Raj
SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, December 18, 2001 3:12 AM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Validating XML. > > Hi, > > I have been looking to validate and XML, without > having a reference of the DTD in the XML file. I am > not

Validating XML.

2001-12-18 Thread Shantanu Dutta
Hi, I have been looking to validate and XML, without having a reference of the DTD in the XML file. I am not so sure if this is possible. At present, I have an XML string as a return value of a function and cannot have information regarding the DTD in the string itself. So, I want to know if the