Tagged Questions
The xmlelement tag has no wiki summary.
8
votes
3answers
520 views
Serialization of generic properties
Can someone explain to me why this first example will serialize into XML, and the second will throw runtime errors about trying to convert all of the types to each other? If I remove the XmlElement ...
4
votes
5answers
881 views
How can I rename class-names via Xml attributes?
Suppose I have an XML-serializable class called Song:
[Serializable]
class Song
{
public string Artist;
public string SongTitle;
}
In order to save space (and also semi-obfuscate the XML ...
3
votes
1answer
77 views
c# xml serialization custom elementName
I am trying to serialize an class object into xml that looks like this:
<Colors>
<Blue>
<R>0,000</R>
<G>0,000</G>
<B>1,000</B>
...
3
votes
1answer
545 views
Help needed in adding a prefix to an xml node
Current File Format
<Folio>
<Node1>Value1</Node1>
<Node2>Value2</Node2>
<Node3>Value3</Node3>
</Folio>
Desired Output
<vs:Folio>
...
3
votes
2answers
713 views
Create XPathDocument from XmlElement
I'm using a webservice which returns an XmlElement object to my c# program. I would like to read information from the XmlElement using Xpath. What is the best way to create an XPathDocument from the ...
2
votes
1answer
18 views
Serialze class as single attribute-less element with its content set to one property
I want to serialize/deserialize the following types:
// The "NameEntity" element shouldn't appear in the XML
public class NameEntity
{
[XmlElement("name")]
public string Name { get; set; }
}
...
2
votes
0answers
411 views
@XmlElement(required=true) for @WebParam does not work
I'm building web service using JAX-WS. I have a strange problem that the annotation @XmlElement(required=true) for @WebParam works in some @WebService class, but doesn't work in some others.
I have ...
2
votes
1answer
78 views
How to get maven to use a different JAXB library to one in JDK
I'm using java 1.6.0_14 which includes an implementation of the annotation javax.xml.bind.annotation.XmlElement. However the one in the JDK only applies to Method and Field.
I've found jaxb-api.jar ...
2
votes
1answer
105 views
How to get the character location of a XmlElement?
Let's say in my C# code I have retrieved a XmlElement (or XElement) from a XmlDocument (or XDocument). How do I get the character location of this XmlElement in the XML file?
In other words, I want ...
2
votes
1answer
163 views
is there a GetElementByTagName that handles if the tag isn't there
i have the following code below but sometime the "serving_description" tag isn't there. Right now i just put a try catch around it but i wanted to find out if there was a cleaner way to handle this ...
2
votes
2answers
3k views
Creating an XML Element object from an XML Writer in C#
I'm writing a Windows service in C#. I've got an XmlWriter which is contains the output of an XSLT transformation. I need to get the XML into an XMLElement object to pass to a web service. What is the ...
1
vote
1answer
27 views
Jquery Ajax and WCF Webservice nightmare
I created a WCF Webservice method that receives two parameters, string, and return an XmlElement.
I have an ASP.NET page with a JQuery AJAX call to that method. It is not working and the ...
1
vote
1answer
58 views
Read other xml elements based on the root node and one of the element?
My XML is given below.
<UrlRoutes>
<ActivityPR>
<Source>activity/editactivity</Source>
<DestinationController>Activity</DestinationController>
...
1
vote
1answer
184 views
XmlElement annotation dissallowed with WebParam
I have a method inside a webservice, with the following signature:
@WebResult(name="purchaseId") public int CreatePurchase(
@XmlElement(required=true)
@WebParam(name = "item") ...
1
vote
2answers
77 views
Postgres xmlelement encoding problem
My postgres database in UTF-8 and client in UTF-8 too.
When i try to:
select xmlelement(name pampam, xmlattributes('русский' as "top"));
I get back:
<pampam ...
1
vote
1answer
1k views
JAXB marshall a Collection to a XmlElement and a XmlAttribute in one step
I would like to marshall a Collection as nested attributes.
Right now I have:
@XmlElement(name="entry")
public Collection<Integer> getSizes(){ ... }
which returns:
...
1
vote
1answer
103 views
WPF: copying of XmlElement
I create a window in WPF. The constructor takes a "ref XmlElement settings" which is used to display information in that window.
In the constructor, I clone those settings:
_ClonedSettings = ...
1
vote
2answers
563 views
How do I return empty XML (Type XmlElement) in C#?
I have a method which returns XML in C#( type: XmlElement). How do I return an Empty XML? Can't use string.Empty obviously.
1
vote
3answers
837 views
Add Ampersand to XmlElement
I am creating several XmlElements used in a larger XML Document.
XmlElement thisElement = xmlSearchParameters.CreateElement("value");
thisElement.InnerXml = this.searchParameters[key];
This works ...
1
vote
2answers
2k views
Oracle: How to create an element in a specific namespace with XMLElement()
In Oracle, you can use the XMLElement() function to create an element, as in:
XMLElement('name', 'John')
But how to create an element in a specific namespace? For instance, how to create the ...
0
votes
0answers
51 views
how to add prefix and URI on xml objects (PHP)
in this sample found here:
<?php
$newsXML = new SimpleXMLElement("<news></news>");
$newsXML->addAttribute('newsPagePrefix', 'value goes here');
$newsIntro = ...
0
votes
2answers
37 views
Using Java-to-schema mapped object as Freemarker data model
Background:
I have a webservice that previously only received requests for xml, but now needs to return html for browser access.
I have a Java class that is mapped to XML with the XmlRootElement ...
0
votes
0answers
9 views
How to wrap XMLFOREST query into root node
It is easy to get XML fragment from SQL query:
SELECT XMLFOREST(title, content) FROM news.
What is the most right way to get this data wrapped in some root element?
Here is my solution:
SELECT ...
0
votes
0answers
18 views
XML deseriazation : same node to multiple properties of an object
Here is my XML I am trying to deserialize into an object defined below.
<?xml version="1.0" encoding="utf-8"?>
< ArticleDocument>
< Channel >HOWTO < /Channel >
< DocId ...
0
votes
2answers
46 views
Reading XML node based on element?
I have a sample xml
<UserSettings>
<Source>settings/subscriptions</Source>
<DestinationController>UserSettings</DestinationController>
...
0
votes
1answer
32 views
NHibernate SQL query XML result comes as string
I have the following method:
public XmlElement FullSetXML(Guid ReviewUID)
{
using (ISession session = sessionManager.OpenSession())
{
IQuery query = ...
0
votes
0answers
80 views
@XmlElementWrapper for web method using JAX-WS
I have a web service like below, it contains a web method which will return a list of objects:
@WebService(name = "ClubMembershipPortType", serviceName = "ClubMembershipService", portName = ...
0
votes
1answer
137 views
C# XMLElement.OuterXML in a single line rather than format
I am trying to log some XML responses from a WCF Service using log4net.
I want the output of the XML file to the log to be in properly formed XML. The request comes in as an XMLElement.
Example:
...
0
votes
1answer
28 views
Get element from xml file
I have this problem:
I have a method
private XmlElement ToXmlElement(string xml)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
return ...
0
votes
1answer
103 views
InvalidOperationException on the second time executing a backgroundworker
I'm making an app using wpf and vb.net in vb2010 express and having a problem that is driving me crazy.
I have a timer that execute a backgroundworker every minute:
Private Sub timer_Tick() Handles ...
0
votes
1answer
198 views
C# Class two variables same XMLElement definitions
I copied over work from a book to a Unity3D project and stumbled upon a rather weird problem. I had to remove all namespace declarations since this is not allowed in unity3d. I then got into the ...
0
votes
2answers
224 views
Change XmlElement name for XML serialisation
We have the followig code:
[Serializable]
public class Class1
{
[XmlElement("description")]
public string Description { get; set; }
}
class Program
{
static void Main(string[] args)
{
...
0
votes
0answers
164 views
About XML, Get child,edit child,save child
I'm currently doing a project which needs me to save only 10 child nodes,once the 11 is being saved, it would overwrite the first one.
This is my current code
if (File.Exists("xmlData.xml") == ...
0
votes
1answer
63 views
How to get xmlItem.Value even if Element does not exist?
I am starting out with xml and vb.net here, my xml looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<Steps>
<X cmd="Message">
<Message>Hello World</Message>
...
0
votes
1answer
351 views
How can I get element value from XPathNodeIterator?
When I try to code as this,
XPathNodeIterator it;
string selectStr = "Equipment/Group/item";
it = nav.Select(selectStr);
while (it.MoveNext())
{
String strVal = "";
if ...
0
votes
3answers
481 views
How to Remove XmlElement ? (XmlNode vs XmlElement)
I try to remove some XmlElements from my Xml file in C#2.0.
I can remove it successfully with XmlNode.Remove() method. But there is no Remove method in XmlElement.
I googled and found this.
elements ...
0
votes
0answers
310 views
Inserting xml element in xml document
I have a XML document and I want to put new node in certain position.
I'm writing code in vb.net. So What I want is just to insert element that holds the group of elements.I'm getting the object ...
0
votes
1answer
924 views
when WCF method returns XmlElement , the client sees XElement returned?
i return an xmlElement from a WCf method.
when i do a service reference in the client, the same method is returning XElement instead of XmlElement.
i tried everything: updating the service reference, ...
0
votes
2answers
166 views
Easy way of Multiple XML file search
I want to search for an element value in all the XML files(assume 200+) in a folder using C#.
My scenario is each file will contain multiple item tags.So i have to check all item tags for User ...
0
votes
1answer
43 views
Deserializing different named xml nodes
Is there a way to convert different named xml nodes into one class when deserializing an XML
Example XML:
<items>
<aaa>value</aaa>
<bbb>value</bbb>
...
0
votes
4answers
2k views
How to create XmlElement attributes with prefix?
I need to be able to define an attribute with a prefix in a xml element.
For instance...
<nc:Person s:id="ID_Person_01"></nc:Person>
In order to do this I though that the following ...
0
votes
5answers
13k views
C# XmlElement: SelectSingleNode returns null for empty string?
I'm new to C#, and just started using XmlElement and its SelectSingleNode method. In my XML file there's a tag that may have a value (i.e. <tag>value</tag>) or be empty (i.e. ...