XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Conferences Close Tree View
+ Stylus Studio Feature Requests (1192)
- Stylus Studio Technical Forum (14621)
-> - Stylus Studio - Registrar en o... (1)
-> + Stylus Studio - Registrar en o... (2)
-> + Can a pipeline send a file by ... (2)
-> + After Updateing WIN10 to WIN11... (12)
-> + Where do I add the custom java... (3)
-> + Where is the Diagram tab? (5)
-> + Applying XSLT to Word DOCX/XML (2)
-> - CSV conversion via ConvertToXM... (1)
-> + Text symbols in SS not same as... (4)
-> + Exposing xquery as webservice ... (6)
-> + Syntax Identifier (2)
-> + Saving a Converted XML as an X... (5)
-> + Output document cannot be pars... (4)
-> - Archiving output from conversi... (1)
-> + EDIFACT guideline from Stylus ... (3)
-> + CSV file putting all the data ... (5)
-> + Can't install Home version 64b... (5)
-> + presale - Can I covers this sc... (5)
-> + Problem with UNB (5)
-> + Splitting EDIFACT files pipeli... (4)
-- [1-20] [21-40] [41-60] Next
+ Website Feedback (249)
+ XSLT Help and Discussion (7625)
+ XQuery Help and Discussion (2016)
+ Stylus Studio FAQs (159)
+ Stylus Studio Code Samples & Utilities (364)
+ Stylus Studio Announcements (113)
Topic  
Postnext
(Deleted User) Subject: Stylus doesn't know XSD types.
Author: (Deleted User)
Date: 11 Sep 2001 07:23 AM
Using the following simple XML and XSD, the Stylus studio does not recognize a legal XSD type ("date or dateTime"). It gives me the following error: "Type not found in http://www.w3.org/2001/XMLSchema:date"

This works fine when I run it through the Xerces SAXWriter sample parser using Xerces 1.4.2


DocumentBookStore.xsd


Documentbooks(2).xml

Postnext
(Deleted User) Subject: Stylus doesn't know XSD types.
Author: (Deleted User)
Date: 11 Sep 2001 07:32 AM
Sorry, the version info is:
Stylus v 3.1 beta build 59
O/S: Windows 2000 Pro


Bart Jenkins,CTO
Globeflow SA

Postnext
(Deleted User) Subject: Re: Stylus doesn't know XSD types.
Author: (Deleted User)
Date: 11 Sep 2001 09:11 AM
--=====================_15209169==_.ALT
Content-Type: text/plain; charset="iso-8859-1"; format=flowed
Content-Transfer-Encoding: quoted-printable

At 07.29 11/09/2001 -0400, you wrote:
>From: "Bart Jenkins"
>
>Using the following simple XML and XSD, the Stylus studio does not
>recognize a legal XSD type ("date or dateTime"). It gives me the
>following error: "Type not found in http://www.w3.org/2001/XMLSchema:date"

This is the expected behavior; Xerces 1.5.1 (that we are using to perform
XMLSchema validation) currently supports only a subset of the XMLSchema
specs (see the document at http://xml.apache.org/xerces-c/schema.html).
What you are hitting is explained in this paragraph:

Features/Datatypes Supported
....
Subset of Built-in Datatypes
· Primitive Datatypes
string
boolean
decimal
hexbinary
base64binary
· Derived Datatypes
integer

So, no support for xsd:date and xsd:dateTime yet

>This works fine when I run it through the Xerces SAXWriter sample parser
>using Xerces 1.4.2

You can parse it fine using Xerces 1.4.2 (and 1.5.1 too) but simply because=
SAXWriter is not enabling XMLSchema validation (so, you are not validating=
your file at all) and the error comes up only when you follow the
xsi:namespaceLocation directive and load the BookStore.xsd file

Alberto
--=====================_15209169==_.ALT
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable


At 07.29 11/09/2001 -0400, you wrote:

From: "Bart Jenkins"
<bjenkins@globeflow.com>


Using the following simple XML and XSD, the Stylus studio does not
recognize a legal XSD type ("date or dateTime").  It gives
me the following error: "Type not found in
http://www.w3.org/2001/XMLSchema:date"



This is the expected behavior; Xerces 1.5.1 (that we are using to perform
XMLSchema validation) currently supports only a subset of the XMLSchema
specs (see the document at http://xml.apache.org/xerces-c/schema.html).
What you are hitting is explained in this paragraph:


Features/Datatypes Supported

...

Subset of Built-in Datatypes

·       Primitive
Datatypes


string
boolean
decimal
hexbinary
base64binary

·      &nb=sp;Derived
Datatypes


integer




So, no support for xsd:date and xsd:dateTime yet


This works fine when I run it
through the Xerces SAXWriter sample parser using Xerces
1.4.2


You can parse it fine using Xerces 1.4.2 (and 1.5.1 too) but simply
because SAXWriter is not enabling XMLSchema validation (so, you are not
validating your file at all) and the error comes up only when you follow
the xsi:namespaceLocation directive and load the BookStore.xsd
file


Alberto

--=====================_15209169==_.ALT--

Postnext
(Deleted User) Subject: Stylus doesn't know XSD types.
Author: (Deleted User)
Date: 14 Sep 2001 06:53 AM
NO. An important point is I was using the JAVA version of the Xerces parser which must be further along in terms of compliance than the C or C++ version. I EXPLICITLY enabled validation with the Xerces 1.4.2 parser (and in fact tested validation of date by putting in a 13th month and it correctly flagged it as an error).

Since you provide a mechanism for using an external parser (which we use instead of the built-in), have you thought of extending that external usage to Schema validation?

Bart Jenkins, CTO
Globeflow SA

Postnext
(Deleted User) Subject: Re: Stylus doesn't know XSD types.
Author: (Deleted User)
Date: 14 Sep 2001 07:29 AM
At 07.00 14/09/2001 -0400, you wrote:
>From: "Bart Jenkins"
>
>NO. An important point is I was using the JAVA version of the Xerces
>parser which must be further along in terms of compliance than the C or
>C++ version. I EXPLICITLY enabled validation with the Xerces 1.4.2 parser
>(and in fact tested validation of date by putting in a 13th month and it
>correctly flagged it as an error).

Sorry, I didn't get that you were referring to Xerces-J. Yes, the Java
version is already providing a pretty much complete support of XMLSchema,
while the C++ version is scheduled to be complete by the end of the year.


>Since you provide a mechanism for using an external parser (which we use
>instead of the built-in), have you thought of extending that external
>usage to Schema validation?

Not yet; we will think about it...

Alberto

Posttop
Minollo I.Subject: Re: Stylus doesn't know XSD types.
Author: Minollo I.
Date: 14 Sep 2001 09:29 AM

>...
>Since you provide a mechanism for using an external parser (which we use
>instead of the built-in), have you thought of extending that external
>usage to Schema validation?

Stylus Studio has a mechanism for external XSLT processing, not XML parsing.
Minollo

   
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.