1
vote
1answer
30 views
Why doesn’t my JavaScript XML processing code work in Safari?
I use the following code to open an XML document. It works in Firefox and IE, but fails in Safari. Any idea why?
function crearObjetoXML(archivoXML){
//--- IE.
if(window.Activ …
1
vote
1answer
20 views
JAXB minOccurs=0. Element exists or not?
I have an XML schema:
<xsd:element name="Person">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string" />
<xsd:element n …
0
votes
2answers
28 views
Why my XPath request to XML file on web doesn’t work?
There is an XML file with exchange rates http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml:
<gesmes:Envelope>
<gesmes:subject>Reference rates</gesmes:s …
0
votes
0answers
21 views
Loading XML File into Javascript
Hi all,
I have an XML file, which can be viewed here,(click "Download File" on the page that the link takes you to, and it will open the XML in your default browser) of data concer …
1
vote
2answers
14 views
Asp website with vbsript functioning differently on different servers
Hi there,
I am currently trying to move a web site from one server to another, one of the asp pages contains some vb script that looks like this:
Dim oSearch 'AS Object
Dim st …
2
votes
1answer
35 views
how to load a XDocument when the xml is in a string variable?
How do I load an XDocument when the xml is in a string variable?
0
votes
1answer
13 views
Deserialize XML to custom Class in Flex?
Is it possible to deserialize an XML file to a class in Flex without manually checking the XML and/or creating the class, with the help of a HttpService?
Edit: Explained a bit mo …
0
votes
1answer
36 views
Script to load contents of my XML file into array in Javascript
Hi all,
I have an XML file, which can be viewed here, of data concerning a series of music albums, which I would like to load into javascript into an array called "mymusic" in this …
0
votes
1answer
7 views
How to create SimpleType enumeration with xmlspy in schema ?
Hi,
I'd like to know how to create a SimpleType that is a enumeration with XMLSpy.
Do you have link or something useful that can help me ?
it's simpletype for country code
enu …
0
votes
4answers
35 views
Generating XML file from SQL Server 2008
Hi,
I am working on an application where I need to get the SQL response as XML into an XML file (and to store it in some physical location, say c:\xyz.xml).
I am able to generate …
0
votes
0answers
4 views
getname on ReadEndElement
When I am calling getname after reading the end element (ReadEndElement) I get wrong value.
eg:
dc302149861088513512481
After calling ReadEndElement for "SESSIONI …
1
vote
6answers
49 views
How can i generate xml from an object hierarchy?
I have object, tree/model/hierarchy, whatever the correct term is. It consists of what could be characterized as a one-to-one mapping of the desired XML.
That is i have the follow …
0
votes
1answer
11 views
Xml in Dot net 3.5:how to load xml document into object of class generated from schema?
I have defined schema for xml in file "packetTemplate.xsd".Using ms tool "xsd.exe" i have generated class "PacketTemplate" corresponding to schema.Does dot net provides api that …
0
votes
2answers
11 views
Can I link maxOccurs in my schema to a value of another attribute in the target xml file?
I'm defining an xml schema for a file that looks something like this:
<data>
<config><segmentcount value="10"/></config>
<foos>
<f …
0
votes
4answers
19 views
Displaying attributes in XML
Hi,
Is displaying these two ways the same and correct?
E.g.
< contents cpid="1" cpnm="1">< /contents >
and
< contents
cpid="1"
cpnm="1">
< /contents>
