0
votes
1answer
47 views
XML attribute access in AS3
Hi,
I have an xml file (loaded in with URLLoader) that looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<localizations>
<words>
<Brand …
0
votes
1answer
31 views
Mirth: overwriting msg object with contents in an XML object
The task is to send an XML object from Channel-A to Channel-B
<MyMessage>
<ID>42</ID>
<hl7v2>
MSH|^~\&|LAB|....
PID|1|....
</hl7v2>
</MyMessage>
The …
0
votes
2answers
68 views
Problem parsing XML using e4X & Flex 3
I am having difficultly parsing an XML file using e4X. I can acquire information from the 'version' tag, but I cannot from any nested tags.
Could someone please point out what I am doing wrong?
…
0
votes
1answer
26 views
Anything similar to E4X to find in/traverse JSON?
When for example returning JSON from a Google Spreadsheet, the object returned contains an array of entry objects (corresponding to rows in the spreadsheet).
An entry can have a name like so:
…
1
vote
3answers
62 views
Use Javascript E4X to selectively rename XML tags
I am using javascript to manipulate XML in a non-browser context (no DOM), and am looking for an E4X expression to rename a list of tags. For any given tag, I don't necessarily know ahead of time what …
0
votes
1answer
70 views
Creating a DOM NodeList
I'm implementing all of the optional E4X features described in ECMA-357 Annex A and I'm having trouble implementing domNodeList (§A.1.2 and §A.2.2). How would I create my own NodeList object?
Even if …
0
votes
2answers
32 views
Parsing AS3 XML objects
I am getting an object back from ASP.NET, and when tracing the XML it as follows:
var xml:XML = new XML(event.message.body);
trace(xml);
I get the following output:
<ArrayOfString …
0
votes
1answer
105 views
How to check if an XMLList is empty in Flex
If I have an XMLList object in Flex, what is the proper way to check to see if the list is empty? Should I just compare the result of myList.length() > 0, myList.toString() != "" or try another …
1
vote
2answers
51 views
Not adding a namespace when using xml.setNamespace()
Whenever I call xml.setNamespace(ns), the namespace of the element is set to ns, but ns is also added as another namespace with it's own prefix to the element. I would like to know how to stop the …
1
vote
3answers
109 views
JavaScript / Rhino: Can I use a regular expression in an E4X query to select certain nodes only?
Hi!
I'm working on Rhino (Mirth), and I've got to process / parse an XML with the following structure:
<root>
<row>
<foo-1 />
<foo-2 />
<foo-3 />
<foo-4 />
...
…
0
votes
1answer
22 views
How to close elements the HTML-way with e4x-generated XML?
Hi all. I'm using e4x to generate a HTML-snippet for my users which they can copy & paste into their blogs or web sites:
var xml: XML = <object>
<param …
1
vote
3answers
576 views
Count the number of nodes in an XML snippet using Javascript/E4X
Consider this problem:
Using Javascript/E4X, in a non-browser usage scenario (a Javascript HL7 integration engine), there is a variable holding an XML snippet that could have multiple repeating …
1
vote
4answers
621 views
Load xml file in flex before application start/intialises
Hi,
I've got a configuration xml file that I need to parse for values before a flex application laods.
I've created a static class that allows for the values in the xml config file to be retrieved.
…
0
votes
1answer
55 views
Is there a way to select a certain number of nodes using e4x in Flex?
Say for example, I have an XML file with 100 "person" nodes, and I want the first 30. Or possibly 51 - 100. Is there any way to do this with e4x syntax to return an XMLList?
0
votes
1answer
53 views
get the index of first element to mach a condition in an XMLListCollection Object.
I have an XMLListCollection object that contains items with an ID property. I want to find one particular item by id and then get it's index in the collection.
This is done to be able to tell the …
