xsd

How to verify XML attributes using XSD enumeration?

I have the following XML sequence <property name="a" value="x" /> <property name="b" value="xx" /> I want to limit "a" to a list of values, like [ x, y, z] and "b" to another list like [xx, yy, zz] Is it possible to do this using XSD, and if it is how? If this is not possible, how do you recommend to change the XML format in order...

XSD traversal in VIM

I use VIM as my text editor and I edit a lot of XML and WSDL files. WSDL files have an XSD section. Is there some VIM plugin I can use to traverse the XSD types? i.e., if I have the following line and the caret is where the '|' sign is: <xsd:element minOccurs="0" name="FooName" type="Magic|FooType"/> and I press Ctrl+Alt+Foo (or some...

Generating Java Objects with Ant (&xjc) - java packages

I am generating multiple XSD schemas into java objects, and i need to specify the root package. but the package attribute is not recognized by Ant... (don't know why...) what should i do? thanks! ...

Generate xml from dataset using xsd in C# at runtime

Hello, I want to generate an XML file according to the xsd given at runtime. I have dataset which would be used to fill up the values. Can anyone tell me a simple solution? Also, my xsd file is very big and has complex types in it. and I dont want to try any third party tools. Its urgent. Please help. ...

Obtaining the SQL Server 2005 Report Builder XSD

I've managed to obtain the report definition schema for SQL Server 2005, but cannot find the xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" schema anywhere. Is it part of the 2005 install buried somewhere? The reason I ask is because I've recently started writing RDL files for SQL Reporting Services. I'd lik...

How to specify read only text or label in an XML data schema

I am referring to XML data schema as detailed here: http://www.w3schools.com/schema/default.asp. When I retrieve data from the database and submit it to the client, there are text fields which I wish to retain as uneditable display/read only fields. For example, hypothetically in the following sequence, <xsd:element .... <xsd:element ...

Cannot validate xml doc againest a xsd schema (Cannot find the declaration of element 'replyMessage')

Hi Guyz, I am using the following code to validate an an XML file against a XSD schema package com.forat.xsd; import java.io.IOException; import java.net.URL; import javax.xml.XMLConstants; import javax.xml.transform.Source; import javax.xml.transform.stream.StreamSource; import javax.xml.validation.Schema; import javax.xml.validatio...

XML Meta Schema

Since XML schemata (XSD) are themselves XML files, it should be possible to build a schema of a schema (meta-schema), right? I'm struggling to accomplish that feat. I would like to create a schema that describes a schema with one root complexType containing a sequence of simpleTypes. ...

XML File with local copy of XML Schema

Hi, I am trying out some XML Schema examples and have to validate them with a sample XML File. The schema is a local file (someFile.xsd). I am using eclipse and want to include a reference in the XML file to point to this local xsd file so that eclipse can suggest the elements to me. Am finding it hard to come up with the syntax to inc...

Error when generating a class from xsd schema file

Hi, I'm trying to generate a class from an xsd schema but I obtain the following error message: Warning: cannot generate classes because no top-level elements with complex type were found. My xsd file looks like that: <?xml version="1.0" encoding="utf-8"?> <xs:schema id="MonitoringConfiguration" targetNamespace="urn:MonitoringCo...

xsd:any question

Hi ppl, I need a clarification on one of scenarios of <xsd:any>. What if namespace attribute's value is ##any and the attribute processContents doesn't exist (the default value is strict)? What will be the case here, Should the processor validate the elements against any schemes!? Ex for clarification: Here's XSD section: ...... <xs...

JAXB code generation: restricted type -> how to remove a zero occurrence field?

Hi all, I use JAXB 2.1 to generate Java classes from several XSD files that I cannot modify (coming from a WSDL file actually), and I have a problem related to complex type restriction. On of the restrictions modifies the occurence configuration from minOccurs="0" maxOccurs="unbounded" to minOccurs="0" maxOccurs="0". Thus this field is ...

XML Schema - how to define that element contains a string or child elements

Hi everybody, I need to define a XML schema. The result should looks like this: <option value="priority">4</option> <option value="values"> <value name="x86-32" lang="en-GB" group="root">x86 32-Bit</value> <value name="x86-64" lang="en-GB" group="root">x86 64-Bit</value> <value name="ARM" lang="en-GB" group="root">ARM</valu...

XSD - problem with schema generation

Hello I'm tring to generate schema for some type from assembly with xsd.exe here is command line : xsd.exe TestAssemby.dll /t:TestType Here is error I got Error: There was an error processing 'TestAssemby.dll'. - Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information I copied ...

Merge two xsd file in one xsd with c#

Hi, i want to merge two xsd files to one xsd using c#. how can i do it with c#? can anyone help me? ...

How to validate, on run time, xml against xsd without save the file on local folder?

I need to validate XMLs files against XSDs. The XML will be downloaded from URL and I will keep it as StremReader or XmlDocument. The XSD will return from DataBase as nvarchar(max). I am prohibited to save the files locally. Has anybody an example how to deal with this situation? I am trying this way but I am getting the XmlException "Ro...

XSD with for elements with same name

I am trying to create a Xml schema for a xml file that looks like following <attributes> <attribute name="article_artextref">123213213</attribute> <attribute name="ProviderID">ABC</attribute> </attributes> What I am trying to accomplish is check if an attribute named "article_artextref" exist and make sure the lenght of its value is...

Can I convert RELAX NG to the XSD?

Hello, Subject. And If I Can that second question How? I tried to use "trang" java library and nothing happened :( ...

Custom attributes in an xsd-schema

I'm trying to make a simple xml-editor for some basic but specific needs, the thing that I'm not sure how to handle is that I want to be able to have own custom attributes (or something) in the xsd-schema itself. Something like this is what I had in mind: <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; <xsd:element name...

How to validate, on runtime, xml against xsd without save the xsd file on local folder?

Hello. My objective is to validade a xml file against the xsd whitch is in a string variable. Ps.: I already wrote a question numbered 3072697 on Friday. But I couldn't add this code today. book.xml: <?xml version="1.0" encoding="utf-8"?> <author xmlns='urn:bookstore-schema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'&gt; ...