Tagged Questions
The simpletype tag has no wiki summary.
4
votes
1answer
494 views
XSD: How to redefine the data type of a simpleType eg. from xs:string to xs:integer
I am trying to extend and tailor an external xsd schema (of the fixml standard). I need to change the data type of some of the elements, without touching the original schema, but by redefining it; but ...
2
votes
3answers
116 views
Are simple type variables objects in C++?
Are simple type variables objects in C++?
int x = 0;
Obviously, that depends on the definition of the object. So would x be object in this case? It may not be defined by the standard in any way, ...
2
votes
1answer
236 views
XML Schema: How to specify an attribute with a custom 'simpleType' type?
In my XML schema definition, I'm trying to restrict the value of an attribute to be an integer between 0 and 100.
With reference to the sample schema below, I want attribute 'attr' on element 'root' ...
1
vote
1answer
95 views
xsd:simpleType: Can xsd:pattern and xsd:maxLength work together?
Let's say I am dealing with an xsd:simpleType that is a string, needs to be of a certain character set and of a specific maximum length, similar to the below code:
<xsd:simpleType ...
1
vote
1answer
81 views
How to reuse simpleType redefinition in XSD
Imagine there is a defined simple type in definition.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="myType">
<xs:restriction ...
1
vote
1answer
86 views
Is there a reasonable way to leverage Spring binding when my model can be represented by a simple type, rather than a custom bean?
Spring binding works nicely when your model is complex enough to warrant a custom domain object, but sometimes the application needs only to receive a simple piece of data from the user that doesn't ...
1
vote
2answers
2k views
XML Schema Case Insensitive Enumeration of Simple Type String
I am in need of a case insensitive string enumeration type in my XML schema (.xsd) file. I can get case insensitive by doing the following.
<xs:simpleType name="setDigitalPointType">
...
0
votes
1answer
27 views
Restricting xsd string after importing
Imagine I have a basic.xsd file defining some attribute myAttribute in some element myElement as a xsd:string.
Now I would like to import this basic.xsd in my special.xsd and make the definition of ...
0
votes
1answer
272 views
WSDL: How to create an enum with C# FlagsAttribute?
Basically, I created my WSDL and added a SimpleType with enum values: A, B, C. When I build my service with this wsdl I want the enum to be constructed with the FlagsAttribute, but how do I specify ...
0
votes
1answer
53 views
Is it possible to generate an xml for an xsd simple type?
I've got the following simple type coming from a Corba IDL translated to xsd:
<xs:simpleType name="fooType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:restriction ...