Hi, I am new to XML and am having a small problem in Flash. I have a number of buttons. Each of these buttons need to open up a different URL which is in a xml file (I have added only one button for now (banstead), as I wasn´t sure how to add more).
My XML:
<?xml version="1.0" encoding="utf-8"?>
<banstead targ="_self" href="http://www....
I'm trying to access an XML file using DOM. One node is already commented out. How do I uncomment it using java code?
...
I have three files of xml
<step>
<Products>
<Product UserTypeID="Country">
<Name>Cyprus</Name>
<Product UserTypeID="Resort">
<Name>Argaka</Name>
<Product UserTypeID="Property">
<Name>Villa Tester</Name>
</Product>
</Product>
<Product UserTypeID="Reso...
I want to be able to do a 3-way merge of XHTML documents:
Start with some original copy of the document
One user edits a copy of the original document
Another user edits a separate copy of the original document
Need a tool to merge (automatically and/or visually) the changes made by the two users.
Note:
I want to include this funct...
Please see PL/SQL snippets below:
create table t23 (
field01 number,
field02 number,
field03 char(1)
);
Example Snippet #1
declare x varchar2(2000) := '
<ArrayOfRecords>
<Record>
<Field01>130</Field01>
<Field02>1700</Field02>
<Field03>C</Field03>
</Record>
<Record>
<Field01>131</Field01>
<Field02>1701</Field02>
<...
I am trying to dynamically create an xml list.. however when I add in cdata tags it give me an error saying tags must be terminated, even though I'm not using those. It seems like it is trying to read the cdata tags as tags.
var addList:XMLList = new XMLList(
"" +
"" + personName + "" +
"" + personTitle + "" +
"" +...
Im having a hard time putting in my head on how would i go at making flash read a xml file (this part I have it going smooth) and then fromt hat elements put on the stage a sprite or a movieclip that is interactive.
To make it clear I want to load and display an image that when you press it it just creates another square beneath it with...
hi,
i'm working with a shapefile (.shp, .dbf, etc) and would like to convert it to xml. i'm on a mac, and am having trouble finding an application that will help me with the conversion. does anyone know of a method for converting this file format into an xml file?
thanks
...
Our system stores XML strings in a database. I've recently had to change the Properties on a Class, and now when an XML string gets deserialized it will throw an exception. What is the best way to handle this change? Look for the Node in the application code using XPATH or LINQ, or change the xml string in sql database (ie do a mass u...
I am parsing xml using the SAXParser and want to know if this is the right way to implement the characters method.
Assume there's a class-level String variable named elementValue and it is initialized to "" in the startElement method.
Here is the characters method:
@Override
public void characters(char[] ch, int start, int length)
{
...
I know individual attributes can be retrieved with the attr() method, but I'm trying to iterate over all of the attributes for an element. For context, I'm using jQuery on some XML...
<items>
<item id="id123" name="Fizz" value="Buzz" type="xyz">
<subitem name="foo">
<subitem name="bar">
</item>
<item id="id456" name="Bizz...
hello,
After running fitnesse test using testrunner, I get an xml file containing all the results.
Now I can't figure out how to display those results within the hudson GUI for a specific job.
I've surfed the web, and what I found is a couple people modifying the xsd file from CruiseControl.NET, but nobody is actually showing it workin...
My company is currently looking into bringing a new piece of third party software in for online ordering. The software does not handle pricing so they are requesting the pricing information from a web service. Their software is passing an XML file as a parameter, and expecting an XML file as a response. I would think that returning an XM...
I'm aware there are several XML libaries out there, but unfortunately, I am unable to use them for a school project I am working on.
I have a program that created this XML file.
<theKey>
<theValue>23432</theValue>
</theKey>
What I am trying to do is parse out "23432" between the tags. However, there are random tags in the file so ...
I've defined a custom list template with the following fields:
<Fields>
<Field Type="Text" DisplayName="Sub-Title" Name="SubTitle" StaticName="SubTitle" ShowInNewForm="TRUE"
ShowInEditForm="TRUE" ShowInViewForms="TRUE">
</Field>
<Field Type="URL" DisplayName="Header Image" Name="HeaderPicUrl" Stat...
I'm having trouble using values from an XML file as parameters for a web service request.
I'm using an HTTPService to load the config file:
<mx:HTTPService id="configService" url="config.xml" resultFormat="e4x" result="configLoaded(event)"/>
The XML file looks something like this:
<root>
<data>
<wsdl>https://WEBSERVICEURL.foo/ws...
From some xml I want to find items that have a specific attribute and value.
Here is example xml:
<node>
<node>
<node>
<special NAME="thisone"></special>
</node>
<node>
<special>dont want this one</special>
</node>
</node>
</node>
(nodes can contain nodes...)
I need to find the first based on it has an attribute nam...
Hello all. I have the following XML schema:
<lyrics>
<response code="0">SUCCESS</response>
<searchResults>
<result id="120745" hid="gXTQx5ywE0M=" exactMatch="true">
<title>Opera Singer</title>
<artist>
<name>Cake</name>
</artist>
</re...
Is there a way to verify / validate a remote XML (or download it first and store it locally) before processing it and store the info into CoreData or DB with iPhone SDK 3?
...
Hi,
I have an xml data file and I want to populate a listview in asp.net with this file. Can you show me how to generate an xslt and make a xml data file for this ?
Thanks
<Projects>
<Project Name="" Category="" Subcategory="">
<Subheader></Subheader>
<Thumbnail></Thumbnail>
<CreateDate></CreateDate>
<Explanation></...