Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
361 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 ...
6
votes
3answers
59 views

How do I give an array an attribute during serialization in C#?

I'm trying to generate C# that creates a fragment of XML like this. <device_list type="list"> <item type="MAC">11:22:33:44:55:66:77:88</item> <item ...
2
votes
2answers
311 views

How to change the attribute value of svg file

In samplexml.svg there is a node <image width="744" height="1052" xlink:href="image1.png"/> I need to replace "image1.png" with another value like "image2.png". Please guide me with sample ...
2
votes
2answers
588 views

get xml attribute named xlink:href using xsl

How can I get the value of an attribute called xlink:href of an xml node in xsl template? I have this xml node: <DCPType> <HTTP> <Get> <OnlineResource test="hello" ...
2
votes
1answer
63 views

Is there a way to make a serialized member to serialize as an attribute?

Is there a way to make a serialized member to serialize as an attribute: <Serializable> Public Class Person Public Property Name As String End Class I want than when this class is ...
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
2answers
26 views

How to get all results if there are multiple matches : XSL

I'm practicing some XSL and using this XML document as a simple example: <?xml version="1.1" encoding="UTF-8"?> <zoo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
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
127 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
174 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
184 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
103 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
2answers
132 views

XML parsing with attributes

I want know the xml parsing if the data have attributes at the middle of the tag.. that means, <quran> <sura index="1" name="الفاتحة"> <aya index="1" text="بسم الله الرحمن الرحيم" ...
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
25 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
3answers
69 views

XML schema; multiple from a list of valid attribute values

I'm reasonably new to working with XML schemas, so excuse my incompetence if this is more trivial than I myself believe it must be. I'm trying to create a required attribute that must contain 1 or ...
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
38 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
2answers
30 views

Instruct XmlSerializer to process serialized/deserialized data?

I have an enum property. I want the serialized XML for this property to be the splitted camel-case string of the enum and vice versa. I have two functions, one is ConcatCamelCase and the other is ...
0
votes
1answer
109 views

TypedArray not working

I'm learning about custom components and i'm having some trouble with custom xml attributes.My custom component extends LinearLayout and in the constructor(public Custom(Context context, AttributeSet ...
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
0answers
55 views

ConfigurationElement.DeserializeElement doesn't operate on a XmlNode

I use this object using System.Configuration; using System.Xml; public class MyConfigElement : ConfigurationElement { /* ... some code for accessing the attributes */ public static ...
0
votes
0answers
50 views

Create xml path to filter by multiple attributes for MSXML

I'm parsing a document in c++ using MSXML, and I'm trying to filter a set of child nodes based on attribute. When creating my xml path, I'm using char xmlPath[64]; sprintf(xmlPath, ...
0
votes
1answer
53 views

xmlserializer deserialize list containig attributes

I have xml that part of structure looks like this: <IDList> <ValuesList ID="1"> <Value>1</Value> <Value>2</Value> ...
0
votes
0answers
110 views

.net service reference xmlAttribute problem

Anyone got a solution for this problem? Background info: We have a .asmx webservice exposed to many customers. To satisfy these customers we expanded our webservice by adding some new properties to ...
0
votes
1answer
88 views

Removing xml:space attributes when using copy-of in xslt

The following is part of the code in my input.xml file: <info> <name> <surname>Sachin</surname> <x> </x> <given-names>J</given-names> </name> ...
0
votes
1answer
142 views

IPAD xml parsing with attributes deal

<category name="Local"> … … … <category name="business"> … … … <category name="politics"> … … … This is my xml file, I'm not sure how to deal with attribute i am using ...
0
votes
0answers
64 views

XmlAttribute Arguments- XmlElementAttributeName based on a type parameter

I am trying to decorate a generic class member with an XmlElement. To name the element, I want it to gain the name of the runtime type that is passed as a type parameter as shown below: public class ...
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
0answers
197 views

Validating a Cocoa NSXMLDocument with xml:space attributes

I have the following document: <root xmlns="http://example.com/root" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://example.com/root root.xsd"> <foo ...
0
votes
1answer
583 views

Visual Studio 2008 web reference proxy class doesn't decode xml attribute

I have a following issue: I am writing client code for consumation of a web service. Here is the answer from the web service: HTTP/1.0 200 OK Content-Type: text/xml; charset=utf-8 Connection: close ...
0
votes
2answers
2k views

How to Parse through nsXml Parser

i am very new to iphone Development and i am asked to use nsxml parser to parse xml from a google api. i have parsed another url which has xml but i am not able to parse google's because it is using ...
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 ...