The xmlns attribute specifies the xml namespace for a document.

learn more… | top users | synonyms

0
votes
0answers
14 views

xml to xls transformation - when xmlns is an urn and not uri no data is shown

i'm working on an xls that works fine when the xml xmlns is a URI. But when the xmlns is a URN then it doesnt work. Example: //xml file header xmlns="URI": <?xml version="1.0" ...
0
votes
1answer
36 views

Webapi put parameter from body requires xml to contain xmlns

I'm hoping this is an easy question. I haven't made a public api using webapi or a restful service before. So I have noticed that when creating a Put or Post method that use a complex object parameter ...
1
vote
3answers
29 views

Querying XML data types which have xmlns node attributes

I have the following SQL query: DECLARE @XMLDOC XML SET @XMLDOC = '<Feed><Product><Name>Foo</Name></Product></Feed>' SELECT x.u.value('Name[1]', 'varchar(100)') ...
0
votes
0answers
24 views

How can I use multiple namespaces in xsd

<html xmlns:xs="http://www.w3.org/2001/XMLSchema" xs:schemaLocation="http://www.mywebsite.com myschema.xsd" xmlns:foo="http://www.mywebsite.com"> <head> <foo:bar ...
1
vote
1answer
59 views

Cannot query using XPath when data element has attribute **xmlns=“…”**

I have difficulty to query the value of a data element value, when attribute xmlns="..." in it and it's parents element. The following example is part of a SOAP response, and I want to get the value ...
0
votes
0answers
27 views

Adding attributes to Savon (2.2.0) SOAP Headers

I am working against a WSDL service that only seems to return if there is an xmlns attribute set in one of the authentication tags sent in the headers. I am using Savon 2.2.0 and the following will ...
0
votes
1answer
64 views

Update value of attribute with xmlstarlet

I want to modify a value of a xml file using xmlstarlet (I know how to modify the line using grep or sed but I want to learn xmlstarlet). I was looking the official documentation ...
0
votes
2answers
43 views

XML - dual URIs in a single xmlns definition, is it valid?

I have some XML that has an xmlns declaration as follows: <dc:record xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" ...
-1
votes
1answer
43 views

xslt and SOAP namespace: how to add

I have this basic SOAP response: <?xml version="1.0" encoding="WINDOWS-1252" standalone="yes"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
1answer
77 views

User Defined XMLNS in Primefaces (xhtml)

Can we include our own xml file in xmlns tag Example: Consider a file "myxhtmlfile.xhtml ".. in this we could add xml namespaces like, xmlns:h="http://java.sun.com/jsf/html" ...
0
votes
0answers
61 views

PHP SoapServer and namespaces

How to add xmns="http://tempuri.org" to RegisterResponse? I have tried many things, the ideal is SoapVar with SOAP_ENC_OBJECT parameter, but I can't get rid of xsi:type... (even if i set it to null it ...
0
votes
1answer
49 views

Namespace for wsse:security

My problem is i am trying to call a web service which has Wss4jSecurityInterceptor for username password authentication. the request which is generated is like this : <wsse:Security ...
0
votes
1answer
43 views

How to parse this xml using XPath in java?

<?xml version="1.0" encoding="utf-8"?> <double xmlns="http://www.somewebsite.com/">2.0</double> I'm having a bit of trouble parsing this using XPath 1.0. this is what i do: ...
0
votes
2answers
55 views

How to get XSL to ignore xmlns prefix when testing an XML element

I have created a client that talks to web services on various servers, and am trying to format the XML using XSL. The services were all created from the same specification, so the XML they emit has ...
0
votes
0answers
374 views

Using google maps api v2 gives me xmlns error but v1 works

I'm building a app which gets the users location and shows the user where they are. Like the title states I can get the google map v1 to show but when i tried to use v2 it gave me a error in my layout ...
0
votes
0answers
23 views

php parse muiti child xmlns

Calling an api in php returns an xml reponse like so https://dl.dropbox.com/u/40331447/samplereturn.xml I can't parse it with SimpleXMLElement. It returns empty array, after reading I believe because ...
0
votes
1answer
89 views

PHP change xmlns in XML file

I have xml with the following structure: <?xml version="1.0"?> <ONIXMessage xmlns="http://test.com/test"> ...data... </ONIXMessage> I need to change xmlns attribute with my own ...
0
votes
2answers
138 views

Do I need two xmlns:local=“clr-namespace”?

Here's the setup I'd like to have for my Windows Phone app, using c# in visual studio 2010: **MainPage.xaml** contains elements that have an attached property, whose values will be modifiable/savable ...
0
votes
1answer
50 views

Avoid random adding of xmlns attribute

I have two copies of a Java project. After running this method: private void editArtifactWSDL() { try { File outputfile = new File( ...
1
vote
1answer
146 views

Jaxb order of the xmlns:xsi and xsi:noNamespaceSchemaLocation

I am using JAXB to create an xml. Used marshaller.setProperty( Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION, "bla-bla.xsd"); the xml being ...
0
votes
2answers
142 views

Using XmlDocument() with Nodes that have xmlns attributes? [duplicate]

I'm trying to use XmlDocument() to read an XML file node by node an output each element. After much trial-and-error, I determined that having an xmlns attribute on my node causes no nodes to be ...
0
votes
1answer
178 views

sitemap xmlns and “charset” attribute

my first 2 lines of sitemap.xml are: <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> what does keyword xmlns do? What is it for? ...
0
votes
1answer
186 views

Adding xmlns protocols to xml namespace in HTML 5

So as an example, we have this head taken from Facebook's open graph protocol <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" ...
0
votes
1answer
136 views

JDOM2 and xmlns attribute

I'm generating sitemaps and their index with JDOM2. what I'd like to obtain is this: <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>http:// so I ...
2
votes
2answers
113 views

Incorrect xmlns in a WSDL

I am trying to import a WSDL into a SOAP-UI project - which is a simple tool for testing SOAP calls. When I try and import the wsdl I get the following error: WSDLException (at ...
1
vote
1answer
49 views

Defining custom xmlns in Nancy

In a Nancy .Net REST web-service I need to be able to specify a custom xmlns:xsd for the root element of the xml-tree that is produced when I use the code below - is this possible?: public class ...
0
votes
2answers
84 views

Deserialize <table> nodes to double[][] from XML

I have an XML file (from somewhere) containing matrix values, which I wish to get into my code as double[][] objects. The XML contains table nodes, which look like standard serialized double[][] ...
1
vote
1answer
257 views

Intellisense not working when trying to define an xmlns in VS2012

I am trying to add a namespace to one of my usercontrols in xaml. In visual studio 2010 I could just type xmlns:blahblah= and it would add the quotations and offer me a whole list of suggestions of ...
1
vote
0answers
49 views

how to find xmlns definition?

I see xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr' xmlns definition in Blogger template,but I ...
3
votes
1answer
251 views

ResponseStatus xmlns d2p1

The question is: how to use one namespace for response, when using IHasResponseStatus and public ResponseStatus ResponseStatus { get; set; } property, and remove the prefix d2p1 on ResponseStatus. I ...
0
votes
3answers
456 views

Error parsing XML unbound prefix using xmlns:sliding

I'm trying to use the jfeinstein sliding menu, that imho, looks promising. I like the idea of work with it using the layout config, rather than code. I've the following very simple layout ...
3
votes
2answers
229 views

Removing xmlns attribute from random HTML elements

I've been having a heck of a time getting rid of an XSL problem that I have. Basically, I have a matched template that calls a named template in another XSL file. <?xml version="1.0" ...
1
vote
2answers
205 views

Process namespaces using XmlReader

I have a complex XML file with structure as follows: <?xml version="1.0" encoding="UTF-8"?> <Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
64 views

xmlns format confusion

<linkbase xsi:schemaLocation="http://www.w3.org/1998/linkbase http://www.xbrl.org/2003/schema.xml" xmlns="http://www.noprefix.org/2003/linkbase" xmlns:xlink="http://www.w3.org/2005/xlink" ...
1
vote
1answer
95 views

Python: Which XML parser supports DTD internal subset?

I have the below XML file, currently I am using minidom and I get for the example the documentElement's tagName as being xyz:widget that tells me that it ignores the !ENTITY definitions and ...
1
vote
0answers
197 views

Where can i find the xmlns declarations in a wcf generated wsdl?

I tried generating a simple WCF test SOAP application. Once i start it up in the debugger, it opens a browser to the service page. On that page is a link to the wsdl (http://.../MyService?wsdl). ...
0
votes
1answer
152 views

how can I find text in xmlns with elementtree

I have this xml: <office:body> <office:text> <text:sequence-decls> <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/> <text:sequence-decl ...
0
votes
1answer
180 views

xsi:schemaLocation and pom.xml

I was going thru maven pom.xml which starts with... <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
732 views

Where to find XAML namespace d=“http://schemas.microsoft.com/expression/blend/2008” mapping library?

In every default WPF window as below, there are four namespaces are referenced. I know xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" and ...
1
vote
1answer
59 views

XMLNS : a way to set them once for all?

We have multiple namespaces and assemblies in my project, and so many xmlns to declare in each control we make (at least 7, without system ones like x: or d:). It's so tedious. Is there a way to ...
1
vote
0answers
351 views

Facebook Like Button not showing in IE even though xmlns in html tag

My Facebook Like Button works in all browsers except in IE. I've checked stackoverflow and the presented solution was to put some xmlns in the html tag, like this: <html ...
0
votes
2answers
399 views

xsl template - empty xmlns attribute appears for some nodes

I have a problem with a xsl template that outputs nodes with am empty xmlns attribute. The template is: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> ...
1
vote
5answers
648 views

Create xmlns attribute in the XML using XSLT Transformation

I am trying to add the xmlns attribute to the resulting XML with a value passed by parameter during XSLT transformation using JDK Transformer (Oracle XML v2 Parser or JAXP) but it always defaults to ...
1
vote
0answers
119 views

how to set xmlns as first xml attribute

I was very confused about the how to set xmlns to be the first attribute, I used below code to generate a xml file XNamespace ns = "http://www.openarchives.org/OAI/2.0/"; XNamespace xsiNs = ...
0
votes
1answer
62 views

Ad xmlns attributes in java

I am currently converting an xml file to java coding, but I have met a problem. In my xml file I have a View with two xmlns attributes like this : ...
0
votes
0answers
90 views

Namespaces in custom control assembly

I am building sort of a toolbox, for my most commonly used WPF UserControls. This is output as an assembly, that I can then reference from other projects (In fact I have set up a NuGet package feed ...
0
votes
1answer
122 views

Could not resolve <local:chatters> to a component implementation

My flex source folder 'src' has these files: src/ chatters.as chatters.mxml main.as main.mxml This is the source of 'chatters.mxml': <?xml version="1.0" encoding="utf-8"?> ...
0
votes
1answer
125 views

Create xmlns using tinyxml

I am new to tinyxml, I would like to generate the following xml file using tinyxml library. Could you please help me out with this many thanks <?xml version="1.0" encoding="utf-8" ?> ...
0
votes
2answers
291 views

Validating Twitter cards?

A client is trying to use the w3 validator on his site. He implemented Twitter Cards this weekend using this post: http://yoast.com/twitter-cards/ However, this is causing the site to fail ...
0
votes
1answer
66 views

xml with namespace unable to apply xsl

I am trying to apply xsl(using apply-template) to a xml, here is the xml, <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...

1 2 3 4 5