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
5 views
lost google traffic after replacing sitemap, what am I doing wrong?
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
16 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
15 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
17 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
0answers
10 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
0answers
23 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
10 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
31 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
16 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
20 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
27 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
31 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
13 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
69 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
18 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 ...