XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.

learn more… | top users | synonyms

1
vote
1answer
36 views

XML Schema: multiple adjacent xs:documentation elements within xs:annotation

I am looking at an XMLSchema *.xsd file and see forms like the following: <xs:element name="shortName" type="vr:ShortName" minOccurs="0"> <xs:annotation> ...
1
vote
2answers
56 views

Backward compatibility of Webservice operation output messages in case of a xsd choice extension

I have a question about backward compatibility of a Webservice interface in context of choices in output message. Couldn't really find an answer to that. Let's assume I have a Webservice with an ...
2
votes
1answer
24 views

Validate empty string in attribute

I'm writing an XSD schema to validate a document that stores, among other things, a number of result elements. Two of the attributes for this element, clickIndex and timeViewed are optional and use ...
0
votes
0answers
50 views

how to load .xsd file java

I am trying to call this loadworld method down below, but it always return false. i can load regionsFile properly which is a xml file. I tried to debug, it looks like my xsd file(worldSchema) can not ...
1
vote
2answers
43 views

specify type for IDREF in XML schema

I am generating Java objects from and XML schema using xjc. I would like to reference the same element multiple times within the document using IDREF. I would also like to constrain the objects ...
1
vote
1answer
45 views

Error while generating JAXB model from xsd in eclipse

I am trying to generate JAXB model from the following xsd <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://abc.com/mmm/trt" attributeFormDefault="unqualified" ...
3
votes
1answer
70 views

Visual Studio XML Schema annotations (vs:htmlequivalent)

I'm creating an xml schema for a document that will eventually be translated into javascript. It would be really useful to allow the insertion of custom js scripts right within the document. This ...
0
votes
1answer
22 views

XSLT2 Transformation failed

I have a problem in a part of a function that gives me the error XSLT2 Transformation failed: Error in XPath 2.0 expression (Too many items - fn:string) This is the code line that generates the ...
0
votes
1answer
22 views

Producing xsd from doc (DOM object)

Say i use DOM and i have an xml loaded into a Document object. Is it possible to get only the xml scheme data? maybe something like an xsd?
0
votes
2answers
57 views

XSD and XML - Cannot find the declaration of element

Probably this has been asked many times.But I went through all the posts but could not clear my error as I have no knowledge about XML and XSD. Can somebody please find out the error? XML <?xml ...
0
votes
1answer
59 views

WCF request with default empty tags

I'm trying to connect to a SOAP 1.1 webservice, using TLS. The certificate has been set up right, and I am able to communicate with the webservice. However, when I try to do this using a plain C# ...
0
votes
1answer
51 views

XSD: Define element with any type and any name

I have following XML structure: <?xml version="1.0" encoding="utf-8"?> <DataSets> <DataSet> <Parameter id="1"/> <Parameter Description="My Description"/> ...
1
vote
1answer
33 views

Include the same attributes into multiple elements without copy paste

I have such elements as Laptop, PC, Printer. All of them should have the same attributes, for example, price and model. Is it possible to declare attribute list just once and include it into 3 ...
4
votes
0answers
75 views

Using Xerces-j to validate an XML Document

I'm trying to validate an XML document using Xerces-J. I want the validator to pick up and resolve any associated XSD or DTD files (using schemalocation, nonamespaceschemalocationa and DOCTYPE ...
0
votes
1answer
86 views

How to crate web-service from wsdl and xsd files in NetBeans?

My task is to crate web-service in NetBeans (using Tomact) from wsdl and two xsd files. I don't understand what should I do with xsd files? What sequence of steps? I've tried to crate "Web service ...
0
votes
1answer
26 views

XML XSD Valid fail

i put xml and xsd in the free location. http://xixishuile1.kilu.de/ and use the http://www.freeformatter.com/xml-validator-xsd.html to validate the xml, it give me response CATALOG fail. who could ...
0
votes
1answer
25 views

Is it possible to use XSD to define incrementally specified tree structure?

Let's say we have an element which is either a leaf (containing some value) or a composite (a usual composite pattern). I want to model tree instances which are expected to be refined by other ...
1
vote
1answer
53 views

Marshalling classes into XSD:Anytype xml

My problem is that I have a class of type MessageList, which contains Message items, defined as such: <xsd:complexType name="MessageType"> <xsd:sequence> <xsd:any/> ...
1
vote
1answer
30 views

Store XSDs in a table versus XML SCHEMA COLLECTION

I'm doing some maintenance work on an application that stores its XML data in SQL Server. Currently, the application uses another table to store associated XSDs. My question: since all XSD ...
0
votes
1answer
22 views

Relating XML data using a custom schema to RDF/OWL ontology

I have a schema which is designed to permit the description of certain types of electronic devices. XML files compliant to the schema describe the interface to the device. The schema permits the way ...
0
votes
0answers
83 views

XML/XSD White spaces are required between publicId and systemId

I've got a PHP project in Eclipse with a lot of XML files. Right now, all my XML files are failing validation, with the following error message: White spaces are required between publicId and ...
1
vote
0answers
43 views

translate an XML file at compile time into the dataobject model generated by CodeSynthesis XSD

With the help of CodeSynthesis XSD a C++ dataobject model can be generated from an XML Schema (XSD). A valid XML file can then at runtime be read into this dataobject model with the help of the ...
-1
votes
1answer
38 views

Exception using the SchemaFilter in WSO2 GREG

I get this exception at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisO peration.java:413) ~[axis2_1.6.1-wso2v7.jar:na] at ...
0
votes
1answer
32 views

How to use <include> element to reuse the schema defined in another schema?

I have an xsd which contains UserDetails (UserDetails.xsd). I have another Xsd which contains a list of UserDetails (UserDetailsList.xsd). How to use element (or something similar) to reuse the ...
0
votes
0answers
29 views

Disable XSD replacement while importing WSDL as zip file in WSO2 GREG?

When importing a zip file with WSDLs and XSDs to WSO2 GREG previously imported XML schema artifacts are replaced by XML schemas having the same name and namespace. That results in loosing of ...
0
votes
2answers
26 views

How Can I See the XML Schema Associated with an XML Namespace?

I have created a ovf file using vmware ovftool: <Envelope vmw:buildId="build-931074" xmlns="http://schemas.dmtf.org/ovf/envelope/1" ...
0
votes
0answers
15 views

Schema included in WSDL behind ISA server

I have a WSDL behind ISA server. The WSDL includes a schema <xsd:include schemaLocation="myschema.xsd"/> However, when accessed through ISA it resolves as <xsd:include ...
2
votes
1answer
33 views

XSD: Specifying a name for a text node property

I am using an XML schema and xjc to generate java classes. I would like to define an XML structure that looks like this: <unicorn color="white" ...
0
votes
1answer
153 views

cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'util:properties'

my spring config file goes like this <beans xmlns="http://www.springframework.org/schema/beans" xmlns:util="http://www.springframework.org/schema/util" ...
0
votes
0answers
45 views

Generate WADL file in RESTeasy: how do I change the default name xsd0.xsd

I am using RESTEasy to implement some jax-rs services. The /src/main/doc/application-grammars.xml file I have is: <grammars xmlns="http://wadl.dev.java.net/2009/02" ...
9
votes
3answers
219 views

Sharing WSDL types without XSD

I can't seem to find an example of generating proxies from WSDLs with shared types but without having any XSDs to go along with them. Can anyone please mark this as duplicate and point me to an ...
-2
votes
2answers
37 views

Java jaxb xsd how to allow maxOccurence

I want following xml output and have following xsd <msgBody> <Contato> <cd_id>11</cd_id> <property key="name" value="Adde" /> <property key="Phone" ...
0
votes
1answer
47 views

XML - Schema Element with attribute and sequence of sub-elements

I have a XML schema as follows: <?xml version="1.0" encoding="ISO-8859-1"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> ...
0
votes
1answer
46 views

Using XJC to compile a XSD with mutiple schema

I have a XSD of the format: <?xml version="1.0" encoding="utf-16"?> <root> <xs:schema ---> .. .. </xs:schema> <xs:schema --> .. ...
0
votes
0answers
61 views

Unable to read WSDL/schema; the operation null and/or the namespace is invalid

The schema is: <xsd:element name="ImportCPCContentResponse"> <xsd:complexType> <xsd:sequence> <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="skip" ...
0
votes
2answers
72 views

Xsd.exe generating wrong C# classes when inheriting enumeration

Is this a bug? <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:simpleType name="sbrSexItemType"> <xsd:restriction base="xsd:string"> ...
0
votes
1answer
29 views

Reference elements in XML Schema

The W3Schools site describes an improvement to a basic XML Schema layout by defining the types at the start of a schema definition and referencing these types later within other complexTypes. Here is ...
-1
votes
0answers
21 views

XML Not Validating against XSD

I have to generate an XML that is not validating against the given XSD. This is the XSD <xs:element name="Students" nillable="true"> <xs:complexType> <xs:sequence ...
0
votes
2answers
28 views

XSD - Validate element which is a value of an attribute

I have following xml. <a> <thing tag="song1"> <name>john doe</name> <email>john@example.com</email> </thing> <owner ...
0
votes
2answers
52 views

XML / XSD how to create a key

I am having problems defining a key in XML Schema. CODE: XSD: <xsd:element name="players"> <xsd:complexType> <xsd:sequence> <xsd:element name="player" ...
0
votes
1answer
36 views

How to avoid svcutil to produce XmlSerializerFormatAttribute for collection type?

Using svcutil to generate C# code from WSDL; I want to avoid XmlSerializerFormatAttribute attribute; I know why its producing, don't know how to use it correctly to avoid it? lets do some research; ...
1
vote
1answer
59 views

Android's resource “@id” mechanism to assign id in custom XML file

Is it possible to use the @id/name and @+id/name mechanism used in Android XML files on my own custom defined XML files? Inside an Android project I have an XSD schema file and several custom XMLs ...
1
vote
1answer
23 views

Eclipse XML Schema Editor cannot handle links during validation?

I have modules with XSD-files and want to include the XSD of module-A (e.g. a.xsd) at module-B (e.g. b.xsd) using no relative or absolute path at import statement, but only the name of the file to ...
1
vote
3answers
75 views

Difference between <xsd:all> and <xsd:sequence> in schema definition?

Hi all I am new to schema definition Right now I am using xsd:all in complex type..When I missed any mandatory elements while validating it will show all the elements It will not display exact missed ...
1
vote
1answer
45 views

XSD Choice, not the same element again

How is it possible to use choice and set that in the group you have to choice minimum 2 elements, but not twice the same element???? Example code: xs:group name="Ports"> <xs:sequence> ...
0
votes
0answers
59 views

Xsd.exe generating unusable code with SubstitutionGroup/anytype

Ok. I'm trying to generate c# classes from: http://www.xbrl.org/2003/xbrl-instance-2003-12-31.xsd (The xbrl schema basically). I am having problem with the tuple and the item. Here's what the xsd ...
0
votes
2answers
32 views

How do I define recursive types in XSD?

I'm fighting with XSD at the moment and it's kind of winning. I'm trying to define a type as follows: <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" ...
0
votes
0answers
78 views

WSDL to Objective-C classes tool not generating the right structure

I am using a WSDL to objective-c tool. I don't know much about WSDL neither XSD so please bear with me. Here is my question. In the WSDL file I encountered something like this: ...
1
vote
2answers
79 views

Why is the public property not being serialized?

We have a WCF service which includes Serializable classes in a contract that has DataContract and DataMember at the root level of the service. While trying to build a solution to isolate the problem, ...
0
votes
0answers
51 views

Difference between using ID+IDREF and direct Type in XML Schema?

I am new to XSD and have a question about the difference between the following two schemas? 1) Direct use of IDREF and ID to limit the selection to another element within the file: <xsd:element ...

1 2 3 4 5 78