Most voted "xml-namespaces" questions
XML namespaces are used to qualify element and attribute names in XML documents allowing their association with namespaces identified by Uris.
Learn more…9 questions
Sort by count of
-
14
votes2
answers1293
viewsXpath with Python
I have the following XML (simplified): <produto refid="cat01" idprod="tv01"> <marca>xxx</marca> <modelo>xxxx</modelo> <genero>xxx</genero> </produto>…
-
9
votes1
answer585
viewsWhat are namespaces in XML?
Well, I understand the concept of namespaces in C#, C++, etc. But I don’t understand the concept of namespaces in WPF (XAML). I’ve been trying to understand the parameters xmlns in a XAML code. I…
-
4
votes1
answer1217
viewsWhat problems can occur when using the "http://tempuri.org/" namespace on our webservices?
When creating a webservice, in my case using ASP.NET, I always change the default namespace to something related to my project, usually using the website URL for this. But lately I have had the need…
asp.net web-service soap namespace xml-namespacesasked 10 years ago Guilherme de Jesus Santos 6,566 -
2
votes3
answers601
viewsRemove: from xml generated by my web service
When I use XML in a Rest web service, it appears like this: <getCnpjParceiroResponse xmlns="http://tempuri.org/"> <getCnpjParceiroResult…
-
2
votes1
answer393
viewsHow to generate an XML schema, where I have some nodes with namespace and others without
I am trying to generate an XML schema, for future validations, where some attributes contain a specific namespace, and others do not: <?xml version="1.0" encoding="UTF-8"?> <root…
-
2
votes0
answers228
viewsParsing an XML and its respective XSD
Precise parse a WADL manually and create an XML with specifications I have here. Example: -> Yahoosearch.wadl file [...] <application * xmlns:yn="urn:yahoo:yn" * > <grammars>…
-
1
votes1
answer157
viewsRemove Xnamespace in Xelement c#
I am in need of removing the Xnamespace that enters as default on an rss return. Follow the code below: static void Main(string[] args) { XNamespace ns = "http://search.yahoo.com/mrss"; var item =…
-
1
votes2
answers981
viewsModify xml in multiple files
Hello, Personal need to modify a value within an xml Node, the problem is that I need to do this in 1300 files at once, the value I look for inside the node can be any one, it does not make any…
-
1
votes1
answer259
viewsDeclare XML namespaces in classes imported by WSDL (Jax-Ws)
I’m developing a Webservice application using Jax-Ws. In this model after importing the WSDL the IDE generates the classes that will be used in the information exchanges. But when creating the…