1
vote
3answers
47 views
A tough table transforming into XML
Hey guys,
I want to transform a Table like this
ColumnA ColumnB
a 11
b &n …
1
vote
3answers
46 views
Open Source Xml Editor
I need to write a XML-based markup language. I'd like to provide an open source IDE for it, but I don't want to write it from scratch. So, I'm looking for an open source XML editor …
0
votes
3answers
15 views
navigating through this xml structure with php
Im trying to loop through and display info from the following xml structure.
<users_list>
−<users type="array">
+<user>
<id>Blah</id>
…
3
votes
2answers
48 views
Viewing large XML files in eclipse?
I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running …
0
votes
3answers
20 views
What impact does the Z Index number have in an RDLC file?
I have been creating rdlc reports from scratch using C# to write xml files. To make sure I do this properly I look at the XML behind other reports I created using the VS 2008 repo …
2
votes
4answers
138 views
Basic LINQ syntax
Lets say you have an XML like like this:
<data>
<messages>
<message name="Person" id="P">
<field name="FirstName" required="Y" />
<field n …
1
vote
3answers
20 views
Creating dynamic RSS feed page in ASP.NET (C#) - do I need to do anything extra?
I wish to create a dynamic RSS feed to represent my site's content. Currently, I have an XML file where each main entry has data for location, date, and summary of a file. If I wer …
1
vote
3answers
31 views
XSLT transformations on very large files
We are using XSLT to generate reports of our data. The data is currently stored in Oracle as XML documents (not using the XML type, but normal CLOB). We select the right XML docume …
1
vote
5answers
87 views
Java Remove empty XML tags
I'm looking for a simple Java snippet to remove empty tags from a (any) XML structure
<xml>
<field1>bla</field1>
<field2></field2>
<fi …
1
vote
2answers
30 views
How can you select a node that’s an unknown number of levels deep from a tag in XPath?
Example, if I have
<form name="blah">
<input name="1"/>
<input name="2"/>
<table>
<tr>
<td>
<unkown number …
3
votes
3answers
45 views
Coldfusion XMLFormat() not converting all characters
I am using XMLFormat() to encode some text for an XML document. However, when I go to read the XML file I created I get an invalid character error. Why does XMLFormat() not properl …
1
vote
1answer
21 views
findViewById() returns null for custom component in layout XML, not for other components
I have a res/layout/main.xml including these elements and others:
<some.package.MyCustomView android:id="@+id/foo" (some other params) />
<TextView android:id="@+id/borin …
4
votes
4answers
49 views
Utilities to generate an XML representation of a Java package/class?
I'm looking to generate an XML representation of the AST for a given java class (by parsing its source). Overall, what I want to do is write XSLT queries to find meta patterns in t …
2
votes
1answer
31 views
PHP DomDocument XML Load with Broken XML Data
Hi,
How do you deal with broken data in XML files? For example, if I had
<text>Some &improper; text here.</text>
I'm trying to do:
$doc = new DOMDocument();
…
0
votes
2answers
44 views
How to Deserialise Xml into a Dictionary<int,string> object?
Is it possible to Deserialize the following piece of XML into a Dictionary<int,string> object?
XML:
<Config>
<DatabaseConnections>
<Connection Name="So …
