0
votes
1answer
39 views
Why doesn’t Nokogiri xpath like xmlns declarations
I'm using Nokogiri::XML to parse responses from Amazon SimpleDB. The response is something like:
<SelectResponse xmlns="http://sdb.amazonaws.com/doc/2007-11-07/">
<Sele …
0
votes
1answer
33 views
atom namespace using linq
I have the following xml
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<entry> …
1
vote
3answers
77 views
Scala XML \\ copies xmlns attribute. Why and how can I stop it?
In Scala REPL:
val input = <outerTag xmlns="http://xyz"> <innerTag> </innerTag> </outerTag>
input\\@"innerTag"
=>
<innerTag xmlns="http://xyz"> & …
1
vote
2answers
45 views
How to create XML containing namespace declarations and prefixed names with an XmlDocument?
I am struggling to output the following XML using the XmlDocument object in .NET. Any suggestions?
This is what I would like to output...
<l:config
xmlns:l="urn:LonminFRCo …
0
votes
3answers
158 views
What is xmlns in my xml file?
First of all please don't close this question as duplicate of http://stackoverflow.com/questions/1181888/what-does-xmlns-in-xml-mean, Actually, i am having an entry in my servlet.x …
0
votes
4answers
86 views
Adding XMLNS causes VS seize up
Currently in my XAML editor view I am experiencing frequent seizing episodes of around 3 seconds each. I've been able to narrow down the reason for it to custom namespaces.
By def …
0
votes
2answers
271 views
Java DOM XML is skipping xmlns properties
Hi there, I need to generate an xml file in Java, so I chose to use DOM (until there everything is ok), here is the root tag of what i need to create
<?xml version="1.0" encodi …
-1
votes
3answers
365 views
Facebook Connect Won’t Validate
I'm trying to get my Facebook Connect code to validate, but it won't. I think the problem is that their xmlns page isn't loading. I have the code:
<html xmlns="http://www.w3. …
1
vote
1answer
156 views
XSLT applied to XML doc with xmlns attribute
I'm applying an XSLT stylesheet to the following XML file:
<top xmlns="http://www.foo.com/bar">
<elementA />
<elementB />
<contents>
&l …
1
vote
3answers
359 views
Parse and query SOAP in C#
I am trying to parse a heavily namespaced SOAP message (source can be found also here):
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://sch …
0
votes
0answers
40 views
XPath Transform messes up with xmlns
Hi, I'm making a tool to create some xml files signed, and I need to use an XPath so my sign doesn't sign itself :
<ds:Transforms>
<ds:Transform Algorithm="http://w …
0
votes
1answer
83 views
How can one find unknown XML namespaces in a document?
Specifically (taking a deep breath): How would you go about finding all the XML name spaces within a C#/.NET XmlDocument for which there are no applicable schemas in the instance's …
0
votes
1answer
181 views
XPath query for empty namespace xmlns=””
What XPath do I use to query the info node in the xml below? I've tried different expressions in XMLSpy but nothing works.
<root xmlns="tempuri.org" xmlns:p="http://nonamespac …
0
votes
1answer
306 views
Where can I find the Dojo XMLNS DTD?
I want to add some Dojo widgets to my XHTML pages, but Dojo uses some attributes that aren't part of the XHTML spec. For example:
<input dojoType="ComboBox" type="text" dataUr …
0
votes
2answers
295 views
Facebook Connect and HTML5, xmlns available?
Facebook Connect and their "Social Widgets" documentation mention that you need to add an xmlns attribute to your <html> tag on the page where it will be used.
I understand …
