An XML schema is a description of a type of XML document. Common XML schema formats are DTD, XML Schema (with a capital S, also XSD, also WXS) and RELAX NG.
0
votes
0answers
30 views
C# LINQ to XML - Not Finding Elements or Descendants
I'm having trouble using LINQ to XML to read my xml file. I have attached a portion of the xml schema.
<?xml version="1.0" encoding="UTF-8"?>
-<xs:schema ...
0
votes
0answers
14 views
Create multiple elements with the same name
I have two xml schemas that both use elements called ROW and ROWSET. But ROW and ROWSET are defined differently in each and I am using JAXB to convert those schemas into Java objects but it won't let ...
0
votes
0answers
16 views
Binding rules for instantiating default XML content to an XSD
Consider the following XSD fragment:
<xs:element name="Persons">
<xs:sequence>
<xs:element name="Person" type="personType" minOccurs="0" maxOccurs="unbounded"/>
...
0
votes
0answers
10 views
how to deal with maps in BPEL
I have a map structure for example like this :
"A" : "C:\Documents\file1.txt"
"B" : "C:\Documents\ProjectFiles\file2.txt"
"E" : "D:\Input\file3.txt"
:
:
where A, B and E .... are identifiers ...
0
votes
1answer
18 views
XML Schema: restricting an element from another namespace
I'm writing an XML Schema for a document type that includes tags from other namespaces. (Atom and GML, to be specific: well-known standards.) Requiring a particular tag from another namespace seems ...
0
votes
0answers
22 views
Multiples Project Persist Spring Data
I'm Having a Weird problem with Spring Data.
I Have 2 different projects, witch one have your schema on postgres.
on the first project i can do the CRUD in any entity and everything work's fine.
...
0
votes
0answers
19 views
SQL XML Bulk Load Error when I try to create and populate database table
I´m working with XML data which have lot of XSD files. To load this data to database (I need to create tables from XSDs) I cannot use, xsd2DB (because the XSDs contain union and list), neither SSID ...
0
votes
1answer
20 views
Build XML schema that requires element or attribute, but not both
I would like to create an XML schema with the following constraints:
The root element shall be list.
list contains a set of node elements.
a node element can have a value attribute.
a node element ...
-1
votes
1answer
22 views
Error: “schemaLocation value *** must have even number of URI's.” on namespaces in spring dispatcher
I was getting following error
<Ignored XML validation warning> org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 55;
SchemaLocation: schemaLocation value = ...
0
votes
0answers
11 views
XSD documentation with Nokogiri
I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
1
vote
1answer
30 views
xml against xsd in c#
The below are the xml files I need to validate against an xsd file.
XML File 1
<ROOT ElementType="1" >
<ELEMENT_ONE>
.
.
.
</ELEMENT_ONE>
...
0
votes
1answer
34 views
Spring/Mule schema issue
I am experiencing the following exception when launching my mule application:
SEVERE: Line 6 in XML document from mule-spring-config.xml is invalid; nested exception is org.xml.sax.SAXParseException; ...
0
votes
1answer
50 views
how to create data fields in xml for windows8 (c#-xaml) metro app ? how to access and parse that data ? and how to import that xml data in xaml UI?
I'am programming a Windows 8 Store App (Metro Design) with C# and XAML using Visual Studio 2012. There is no need for a database server with multi user support etc.my application is like reminder and ...
0
votes
1answer
9 views
S1000D Conditional Documentation Workflow
Fellow Forum Members,
My ojective is to setup a S1000D Conditional Documenation workflow using the suite of PTC apps shown below:
CSDB for S1000D (Control Station)
CSDB for S1000D (Task Station)
...
0
votes
2answers
20 views
xml schema : how to create element with string pcdata and one attribute
I am trying to create a very simple element and am not able to define it the way I had wanted in my schema. (I'm using oXygen to edit the schema, and am going by the fact that it is giving me errors ...
0
votes
2answers
45 views
How to generate an XML file dynamically using XDocument?
As I wrote in the subject itself , how can I do that?
Note that solution like this are not appropriate as I want to create child nodes dynamically through running..
new XDocument(
new ...
-1
votes
0answers
27 views
Jaxb marshelling is changing the xml format
I have written a jaxb parser to convert xml to object and object to xml.
I just tried converting an xml input to object and tried converting it back to xml string and I could see the xml is getting ...
0
votes
2answers
24 views
Understanding solr's schema.xml
I'm a total beginner in solr. I've installed it and started working on its schema.xml file. One particular code snippet is as follow:
[schema.xml comes in the example/solr/collection1/conf directory]
...
0
votes
1answer
16 views
Test structure XML in PHPUnit
I see assertEqualXMLStructure able to use test structure XML in PHPUnit. But I have problem with case: when 2 structure XML have different the number of children tags it failed although the structures ...
1
vote
2answers
53 views
axis2 fails to generate java from wsdl with inline schema
I want to generate Java classes from a WSDL. I'm invoking wsdl2java from within an ant task. The commandline would look like this:
java -cp ... org.apache.axis2.wsdl.WSDL2Java -o generated_dir -S . ...
0
votes
1answer
11 views
What should be targetNamespace in API that is being versioned?
Our team is developing an API which is being versioned. We have following naming schema:
http://example.com/remote/soap/vX.Y/wsdl
where X.Y is version number. My question is: should ...
0
votes
0answers
19 views
Error in XML file: cvc-elt.1.a Cannot find the declaration of element?
Got this XML from PHP_Parser, but it's corrupted, when validating, got error: cvc-elt.1.a: Cannot find the declaration of element 'AST'.
What should i append to it?
<?xml version="1.0" ...
1
vote
1answer
36 views
Jaxb Marshalling for newbies
All I'm trying to achieve is simply to marshal to a xml file
Contacto.java
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public ...
0
votes
2answers
41 views
How to parametrize type in XSD?
I have a type named AdapterInputDataType that defines a format of some kind of input data:
<schema xmlns="http://www.w3.org/2001/XMLSchema"
...
0
votes
0answers
24 views
Is there is a way to validate xml with xsd schema element with minoccour='1'
I have an Xsd file
<?xml version="1.0"?>
<xs:schema id="Peoples" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element ...
0
votes
1answer
24 views
What is the proper way in xsd to define a set of elements that may be child elements and may repeat?
I am trying to determine the proper way using an xsd schema to define an element that may contain any of a set of child elements including possible repeat child elements.
For example, given the ...
0
votes
2answers
25 views
Where does Mozilla host their XUL XSD Schema?
I'm trying to find the official schema (XSD or DTD) for Mozilla XUL.
Nothing except this weird link crop up in Google searches.
What gives?
1
vote
1answer
15 views
Validate an Xml with promiscuous child elements against Xsd
I have an XML file looking like the one below. I am using it to give a series of commands to a robot:
<Task StartPosition="100,100">
<GoTo>
<X>100</X>
...
1
vote
1answer
55 views
XML Validation of DTD Elements
Hey guys i've got a XML DTD code that is external but when i try and validate it, i seem to get an error. The code i have is below:
<!DOCTYPE catalog [
<!ELEMENT catalog (book)+>
...
0
votes
1answer
22 views
How do I add namespaces to an XSD?
The following is my XML and its associated XSD:
XML
<?xml version="1.0" encoding="UTF-8" ?>
<!-- <!DOCTYPE people SYSTEM "validator.dtd"> -->
<people ...
0
votes
1answer
16 views
Is it preferred to define a separate plural complexType for multiple singular elements
Is there any established standard for inlining trivial plural complexTypes vs. defining them separately?
In detail: When defining some XML schemas I frequently encounter cases where I want one ...
-1
votes
0answers
35 views
lost google traffic after replacing sitemap, what am I doing wrong? [closed]
Several months ago, I hand-coded a detailed set of sitemaps (& sitemap index) for my website. Previous to this, I used a basic online-generated sitemap (www.xml-sitemaps.com) for my site. My new ...
0
votes
1answer
20 views
why can't I have an xs:element using ref as a global element in a XSD?
I am experimenting with ref attributes in <xsd:element> and don't get the following:
while an <xsd:element> with a ref attribute can be defined in the non-global scope (i.e. not directly below ...
1
vote
1answer
16 views
retrieve 10 records in linq with join
i have a function in my webservice to retrive All posted from the database , and my code work fine :
[WebMethod]
public XmlDataDocument return_FanWall_Posts()
{
var reportXmlItems = ...
0
votes
1answer
27 views
Error with XSD restriction for Phone Number
Here is my schema. I make it for an attribute in XML Doc.
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://xml.netbeans.org/schema/ThueBao"
...
0
votes
1answer
41 views
Where to find Office 2007/2010/2013 Open XML Schemas
I am looking to pull together all of the XML schemas that Office 2007/2010/2013 documents abide by. I have found a number from the ISO/IEC 29500:2012 spec and ECMA-376 spec. I have also located a few ...
0
votes
1answer
34 views
HTML documentation tool
I have HTML part of code and I need to document it.
As output I want to see syntax highlight code where I can click even for attributes and see documentation for it.
Also I want to colorize some tags, ...
0
votes
0answers
16 views
How to find xml tags using VB
I have created xsd file which has xml tags(only elements).
And attached that xsd file to word document.
xsd file path(screen shot) :(after adding to word document)
http://sdrv.ms/12P9GLZ
...
0
votes
2answers
75 views
Parsing nested vs flat XML element using Java in generic way
Hi I had written a generic code in Java that parses XML input file without knowing its structure and outputs value in comma separated value. So lets say I have following in my XML document:
...
0
votes
1answer
27 views
XML Schema - Validate one attribute, based on the value of another
I want to be able to validate an attribute in an element, based on the value of another attribute. Something like this.
<Root>
<Vehicle type="Unicycle" numWheels="1" />
...
0
votes
1answer
32 views
Rails Sunspot Solr data source
Thank you in advance for bearing with me. I am new to Solr and looking to integrate into Rails. Although Postgres can text search, Solr seems to be faster..
I understand the modifications that need ...
0
votes
2answers
48 views
how to get / download multiple online xsd schema files to validate one xml
I have an xml file with about 300 lines and 10 namespaces. I have also the schemaLocation of the "beginning" xsd file of my xml document. It is somewhere online. That one schema file ...
1
vote
1answer
48 views
XML schema xs:choice inside xs:sequence
I'm trying to use a xs:choice element, but while validating the XSD file, I'm getting an error which I suppose it's related to the xs:choice element. I've searched for this problem for quite a bit, ...
1
vote
1answer
15 views
I am finding difficult to write a regular expression for a location element in xml schema
Location element needs to accept "city, state" data(for exampler: Topsail Beach, NC), but ending up with errors. could someone help me?
Here is the code snippet.
<xs:element name="Location" ...
0
votes
1answer
138 views
How to create table set from several XSD in SQL Server 2012 or with VS 2012
is there any solution in T-SQL or in C# how to create XML schema collection in T-SQL or C#.
Problem is I cannot use:
USE Database_test
GO
CREATE XML SCHEMA COLLECTION Collection_from_XSD AS
N'
...
0
votes
0answers
24 views
ways to validate XML Schema
Please advise the best approach to validate the XML schema. As per my knowledge, XML can be validated against XSD rules using Xerces parser.
Also, let me know like similar to XML schema structure do ...
0
votes
2answers
34 views
Expose and access static XSD schema in Spring WS 2
I can't reach XSD schema. Here is my configuration:
web.xml
<servlet>
<servlet-name>spring-ws</servlet-name>
...
0
votes
1answer
18 views
Order of unbounded elements in xmlschema sequence
I'm currently developing an application that uses webservices (SOAP 1.2). I'm interested in knowing if I can rely on the order of unbounded elements in a xmlschema sequence. Here is my definition of ...
0
votes
1answer
32 views
Difference between Default Namespace and targetnamespace? null namespace?
I've read through several posts found over google and the wiki article about namespace and xml scheme, and i dont know.. i just cant quite understand the difference between the default namespace and ...
0
votes
0answers
15 views
Need xml format of data using php
Hello Friends,
I need this form of data using php in xml format.I am not getting
any clue to retrieve the value of this type
<VFPData>
<xsd:schema id="VFPData" ...





