Tagged Questions
8
votes
3answers
4k views
What is the best way to parse an XML boolean attribute (in .NET)?
An XML attribute declared as xs:boolean can acceptable be "true", "false", "0" or "1". However, in .NET, Boolean.Parse() will only accept "true" or "false". If it sees a "0" or "1", it throws a "Bad ...
7
votes
1answer
358 views
How make Android self components and use it from a jar library?
I'm trying to create an android component that can be easily added to android projects as a jar library.
For this, I had to create new xml attributes in "res/values/attr.xml" that I add to my graphic ...
2
votes
3answers
822 views
XML: attributes or children?
In XSD, SOAP and other XML conventions you'll often see things like:
<book>
<title>Harry Potter</title>
<author>J.K. Rowling</author>
</book>
Now I'm ...
1
vote
1answer
41 views
XML attribute space separated character list cannot contain both single and double quotes
I am using deltaxml (www.deltaxml.com) to compare 2 XML files.
I need to modify define-punctuation.xsl (XSLT) file.
To change the characters that should be treated as punctuation, the ...
1
vote
1answer
124 views
Select XML Node value by Attribute Value with multiple levels
I've been searching for an answer for a few days now but don't seem to be getting anywhere.
I'm looking to get to value further in the XML code than I've seen examples for and with more attributes to ...
1
vote
2answers
173 views
XmlDocument and getting specific Attributes using xPath
I have seen a couple of examples on here where Xpath is used in conjunction with XmlDocument to get a specific attribute from an XmlDocument Node.... Example
...
1
vote
1answer
182 views
How to use XmlElementAttribute for List<T>?
I have a class like this:
public class Level
{
[XmlAttribute]
public string Guid { get; set; }
}
public class LevelList : List<Level>
{
}
public class Test
{
public LevelList ...
1
vote
1answer
102 views
PHP, XML, Accessing Attributes
I'm having a some trouble accessing attributes in my XML. My code is below. Initially I had two loops and this was working with no problems.
I would first get the image names and then use the second ...
1
vote
1answer
297 views
How to preserve whitespace within an element's opening tag in XSLT
In order to avoid committing sensitive information to an SCM repository, I wrote an XSL stylesheet that removes connection string passwords from ASP.NET Web.config files. It achieves my goal of ...
0
votes
2answers
22 views
RegEx for specified string length range : XSD attribute element
I'm trying to restrict an attribute element of a schema to be between 3 and 20 characters long, but I'm getting an error saying my RegEx is invalid:
<xs:attribute name="name" use="required">
...
0
votes
1answer
15 views
using restriction base in XML Schemas on attributes
I need to put a restriction onto an attribute of "yes or no" - but not too sure of how to structure it - I'm trying the below but not sure how right or wrong it is: (advice would be appreciated) ...
0
votes
1answer
20 views
XSLT 2.0 template matching - strip all attributes which are not in the desired namespace
I have an XML with differently namespaced attributes - it's basicly a kind of extended XHTML. I want to dump all the non-xhtml namespaced attributes.
Examplary source XML:
<html>
...
0
votes
1answer
37 views
Reading xml and lookup in controller?
I have a sample xml
<Lookup>
<Controller Name="Activity1" >
<action Name="Editactivity1" appgroup="Something" productcode="SomethingElse"/>
</Controller>
...
0
votes
1answer
38 views
Why is an XML attribute without XMLNS prefix not equal to a prefixed attribute with same local name?
When the default namespace and a prefixed namespace resolves to the same namespace URI, why is an attribute with no prefix not equal to a prefixed attribute, when both have the same local name?
The ...
0
votes
1answer
10 views
specify allowed attributes as delimited string in another attribute in XSD
I am confused about how to design xml schema when attributes of an element must have names from those listed in an attribute of another element.
a valid example:
<A ...
0
votes
2answers
68 views
Is it possible to combine explicit attributes validation and anyAttribute
Is it possible to define in XML schema that there must be some certain XML attributes, and at the same time I want to allow to extend this list in future?
Here, if we have the following hypothetical ...
0
votes
0answers
73 views
How to properly parse an attribute? Stuck on logic
I'm very new to XML logic and fairly new to php so I'm not sure if I am using the correct words...
I'm trying to parse an xml file into a WP ready format using an old decoding plugin I have. ...
0
votes
3answers
148 views
problem wih including '&', <, > etc in xml attribute values
I want to create an xml file which will be used to store the structure of a java program. I am able to sucessfully parse the java program and create the tags as required..the problem arriseswhen I try ...
0
votes
2answers
106 views
How do I retrieve an XML Element where an attribute is either X or Y?
Consider this xml:
<parent>
<child name="alpha" />
</parent>
and also this xml
<parent>
<child name="beta" />
</parent>
There should be only a sinlge ...