6
votes
2answers
91 views
Import huge XML data (> 1Gb) into SQL Server 2008 daily
Dear all:
I have encountered a problem that I need to import a huge XML (> 1Gb) into SQL Server 2008 daily. What I have now is a sample XML file and the XML schema of it. The XML …
0
votes
0answers
11 views
Validating XML using multiple XSD’s in Ruby
Hi
I'm generating a lot of XMPP stanzas, and want to validate them against the specs available here in my unit tests.
At the moment I am using Nokogiri to achieve this with somet …
0
votes
3answers
53 views
How to display XSD validated XML using XSLT
I've been fighting with this for some time now, and haven't been able to find a clear answer to this yet.
As I understand correctly I can store data in an XML file, validate it us …
0
votes
1answer
17 views
Is it possible to generate an xml for an xsd simple type?
Hi,
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:rest …
0
votes
1answer
14 views
Any benefit to using default attribute when minOccurs attribrute is > 1?
I came across a legacy XSD that has a bunch of lines like...
<xs:element minOccurs="1"
maxOccurs="1"
default="true"
…
0
votes
4answers
53 views
Why do people accept XSD requiring elements in a particular order?
In a recent task at work, I've been building the PHP end (using SimpleXMLElement) of an XML interaction with a .NET app. I've been encountering differences in conceptual thinking w …
0
votes
5answers
73 views
Getting an object representation of an .XSD file in Java
What is the easiest way to obtain a statically typed representation of an XML schema (.XSD) in Java?
More specifically I want to be able to programatically traverse all defined si …
0
votes
3answers
34 views
XSD: difference between Element and Attribute
I'm new to XSD, and I'm quite confused as to when to use attribute, and when to use element?
Why cant we specify minOccurs and maxOccurs in attribute?
Also, why is it we cannot s …
0
votes
1answer
28 views
SPField custom attributes in schema
I'm trying to decide whether it is possible to store custom attributes in a SPField's schema XML.
If you look at the .xsd for the 'Field' element in SharePoint, there are a slew …
3
votes
1answer
57 views
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?
I have a JAXB class like this:
public class Game {
private Date startTime;
@XmlElement
public Date getStartTime() {
return startTime;
}
public void s …
0
votes
1answer
31 views
Converting XML with mixed complex type elements into DataSets, and other DataSet limitations
This is a two part question. The first is a specific question about DataSets and XML. The second is a more general "am I taking the right approach" type question. While I'd certain …
0
votes
2answers
34 views
Add a record to relational XML with C#
I have a XML and XSD I want to add a record to trck table with Dataset i'm also write that code but need trackListrow...
how can i handle that?
playListDS rec = new playListDS();
…
1
vote
2answers
30 views
How to get the array cell position when using foreach across an array?
I'm still stuck with using arrays in XSD generated classes, as my XML schema is too complex for xsd2code, which created generics-based generated classes.
Is their any way to tell …
0
votes
1answer
15 views
XSD: specifying element with 12 characters and area code is digit
What is the XSD syntax, given
<xs:element name="PhoneNumber" type="xs:string" ...? >
, to specify the following format for a phone number:
12 characters and area code is …
0
votes
5answers
55 views
Toolkits or Applications That Build UI From Xsd
I need to build a user interface to edit and create xml documents that confirm to a given xsd. What I'd like to do is, as far as possible, generate my user interface based upon tha …
