Tagged Questions
0
votes
1answer
39 views
Match more than one occurence in a string
I'm trying to match a tag values (music kind styles) of an xml.
This are some examples:
One music genre: (Pop) (rel="tag">Pop)
<span class="genres"><a ...
0
votes
2answers
12 views
XML Data Binding in .NET - Getting node value where attribute value is equal to something
I'm developing a .NET control which needs to list values from an XML file based on an attribute value in a node and I'm having difficulty getting to my data.
The XML is formatted like this:
...
0
votes
2answers
38 views
C# Xelement not able to retrieve elements
I'm trying to test the Linq for retrieving some values of elements in the xml file:
Here is the code:
try
{
XElement doc = XElement.Load(@"Z:\test.xml");
string ...
0
votes
1answer
29 views
Small tool to edit app settings
I need to small tool in Windows environment to change an entry in appsettings.config.
It can be a cmd tool which I can write a batch file on it.
Does anyone have a clue?
Thanks
-5
votes
2answers
72 views
Issue writing XML using TextWriter
I have tried writing XML using a Textwriter, but I've discovered that I can't write characters < > ' " & to that file.
The class I wrote is as follows:
public void Write_File(rss r, string ...
1
vote
2answers
68 views
trouble calling a method in form 2 from a button click on form 1, vb.net
I have a program for creating a time sheet and when a saved time sheet is loaded by clicking a button on form 1 the data loads to form 2 and then calls a method in form 2 to print the data to form 3. ...
0
votes
0answers
35 views
Generated C# classes with XML schema versioning
I'm working on an C#/.NET application where we're handling XML documents corresponding to an external XSD schema. We've used XSD.exe to generate C# proxy classes from the XSD for easy serialization ...
0
votes
3answers
39 views
Two xml declaration in single xml file error
My requirement is to create xml file and add xml elements to the existing xml file.
First I tried creating new xml file by following code.
using (XmlWriter xmlWriter = XmlWriter.Create(fStream, ...
-1
votes
0answers
19 views
Access Custom tag from App.config
My app.config is,
<sectionGroup name="CategorySettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
...
2
votes
1answer
32 views
XML value testing with Array
In a C# program I'm receiving a value from the XML, then I need to test this against an array. If the value is found in the array return true else return false. Here is the code:
private static bool ...
-1
votes
2answers
43 views
Adding XML string to XElement
Hi I need to create an XElement from a string, which can be xml or plain string.
This code
var doc = new XDocument(
new XElement("results", "<result>...</result>")
);
...
2
votes
3answers
67 views
Processing large XML files using .NET 3.5
What is the "recommended" approach for processing very large XML files in .NET 3.5?
For writing, I want to generate an element at a time then append to a file.
For reading, I would likewise want to ...
1
vote
0answers
19 views
XslCompiledTransform from XmlDocument to XmlDocument
I have the following VB.NET code that I am using to transform some XML into new XML, that I then continue processing.
This is a one off process, not something that is done multiple times, so no ...
0
votes
2answers
42 views
Best Way to read specific attributes in XML [closed]
I am trying to read this xml file in my custom object and need some help. At the end i want to create list of employee for each Record.
<Records>
<Record>
<Item NAME="EMPLOYEE ...
0
votes
2answers
52 views
Unobstructive XML commenting
I've created a project and started work on documenting it. Sandcastle uses XML comments to create a nice help file, but the XML comments leave the code nearly unreadable. Each class I write now starts ...
0
votes
0answers
29 views
Handle malformed xml soap messages in WCF
I'm getting malformed xml from a soap webservice that I have to use from WCF. It returns invalid xml characters into messages. Of course, WCF reports invalid xml exceptions when receiving message. I ...
2
votes
1answer
51 views
Deserialize nested XML element into class in C#
I have the following XML structure (edited for brevity) which I have no control over.
<GetVehicles>
<ApplicationArea>
<Sender>
<Blah></Blah>
...
4
votes
1answer
46 views
Why does XmlDocument.Load(String) seem to want read-write access?
According to MSDN the .NET XmlDocument.Load(String) method requires write access to the underlying file. The exceptions list says
UnauthorizedAccessException : filename specified a file that is ...
0
votes
0answers
11 views
Convert Text Node Which Is XML Back to Valid XML
I'm attempting to convert the contents of an XML element that is itself XML back into valid XML.
So taking the following example message:
<parent>
<name>Bob</name>
...
0
votes
0answers
50 views
How do I loop xml file and get the values in c# code [duplicate]
I'm trying toloop the below code in c# and getting count = 0
I was doing as below code
foreach (XmlNode intraday_series in source_file.DocumentElement.SelectNodes("//IntradayStructuring "))
{
...
0
votes
1answer
29 views
.NET javascript runtime with XML parsing/editing
I have found some javascript runtime for .NET like IronJS, Javascript .NET or Jurassic. However seems none of them support XML parsing/editing.
There's any javascript engine for .NET that supports ...
0
votes
3answers
35 views
Should I use binary/xml files in my .NET application?
I have worked as web developer for several years and have always used a database to store the information, or sometimes XML files.
Now I'm developing a small application (Windows form). This ...
0
votes
1answer
40 views
Read XML with C# with custom deserializer
I'm trying to deserialize a piece of XML offered by some API. However this API is dumb, for example, a bool is not true, but True. And having an element
[XmlElement("Foo")]
public bool Foo { get;set; ...
0
votes
1answer
50 views
How to concatenate multiple XML childnodes into one in a ListView row?
I'm developing an application that queries MusicBrainz for data and I'm viewing it by binding the results to ListViews using some XPath.
Now, the underlying XML for the second (albums) ListView is ...
4
votes
3answers
53 views
C# extracting data from XML
im trying to read weather data from XML in a url. The XML looks like this:
<weatherdata>
<location>...</location>
<credit>...</credit>
<links>...</links>
...
0
votes
3answers
29 views
How to stream XML from SQL Server 2005 to HTTP Response stream for download
I have a stored procedure in SQL Server 2005 that generates a 170 megabyte XML file (using SELECT FOR XML)
How, in ASP.NET, would I stream this XML for download as a file in a web browser?
0
votes
0answers
33 views
Serialization of list and copy in the XML file
I am trying to serialize a list that I created.
The aim is: each time that I click on add, a new panel appears, this panel obtain a name as strat1, strat2, strat3,…
All these strat(i) are recorded ...
0
votes
1answer
54 views
Using XmlIgnoreAttribute to Ignore Base Class Property
I have an abstract base class to which I have added some virtual properties. What I would like is to, in my derived class, specify that a particular base class property be ignored during the ...
0
votes
0answers
23 views
creating hierarchichal XML structure dynamically
I am creating an XML as shown by below code
public class Group
{
[XmlElement(typeof(Manager))]
public Employee [] Staff;
[XmlElement (typeof(int)),
XmlElement (typeof(string)),
XmlElement ...
0
votes
0answers
18 views
Customizing WCF validation / providing more context when a SerializationException occurs
I am currently working on a WCF service with a REST binding which is expected to be accessed by systems that were not developed in .NET and have no access to the C# data contract. As a result, it is ...
0
votes
0answers
20 views
XML Serialization How to change XmlAttribute name in Derived class instance
So, I have the code below, and what I want to do is be able to change the name of the attributes and use different names for the same properties defined in the base class. For installer, in my ...
0
votes
0answers
23 views
De-Serializing Derived objects using XMLIncludeAttribute
I have a requirement to create mappers for record elements. I have a parent class and a bunch of child classes. To the parent class, I added the XmlIncludeAttribute so that whenever a list of the type ...
0
votes
1answer
40 views
Linq XElement changes Value formatting in foreach
This seems like a strange one (unless I am missing something obvious). I have to store this string:
{TestField1:=TestAltField1}{TestField2:=TestAltField2}
in an XML Value field resulting in ...
2
votes
3answers
68 views
Extract nodes data from xml
I have an xml like this:
<People>
<PersonID>5</PersonID>
<PersonID>7</PersonID>
<PersonID>9</PersonID>
</People>
I would like to create a ...
0
votes
0answers
30 views
Loading XDocument Descendants into a .NET MVC 3 Model
I have a repository that attempts to load an XML document into a class. This all seems to go alright until I attempt to access the descendants elements in the map config section.
This is the ...
2
votes
1answer
67 views
Why does overwriting an XML file create an extra end tag?
I am creating an application in C# that has to write some user settings to an XML file. They are read perfectly fine, but when I try to write them back they create an extra end tag that the program ...
1
vote
2answers
64 views
How can I can read and modify data from XML file?
Please give me the simplest way to read or modify the XML file data?
Currently I tried this but it throws an exception. My current code is:
XmlDocument xml = new XmlDocument();
...
0
votes
2answers
52 views
How to add an attribute to XML
I am returning an object from a web service. It arrives in XML format -
<DailyTracker xmlns="http://schemas.datacontract.org/2004/07/MSI.Web.MSINet.BusinessEntities">
...
1
vote
1answer
68 views
Ignore whitespace while reading XML
I have an XML format with following format
<Tag>
Value
</Tag>
This comes from an external datasource I cannot change.
When using XmlReader the content has Linebreaks and Whitepace.
...
1
vote
2answers
22 views
serialise and deserialise object from Silverlight and Windows exe
Ok, so I have a front-end Silverlight GUI and a backend Windows service running on the server. The front end puts requests in a SQL Server DB and the service deals with them. The bulk of the request ...
1
vote
3answers
72 views
Is there a way to disable or modify the strictness of the .NET XML Parser?
I have a slightly bad XML that I'm trying to parse in .NET. This same XML file is consumable by other parsers - that is, they're more tolerant of user error.
The XML looks like this:
<?xml ...
0
votes
0answers
34 views
Validation of XML against XSD is not detecting errors
I am using the script below in a Script Task in SSIS to validate an XML against a XSD. The problem is that no errors are identified in the XML but if I use a tool like Stylus Studio to validate the ...
0
votes
1answer
26 views
XML Deserialization with Parent Attribute
I have an XML that looks like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Items>
<Category Name="Alfa">
<Item Name="A1" ...
0
votes
1answer
36 views
Microsoft.Xml.XQuery math expression error
I'm newer in Microsoft.Xml.XQuery, when I'm trying to run a xquery with math expression like sum i have the error : Cannot apply Add to non integer data.
XML:
<book category="COOKING">
...
1
vote
0answers
21 views
XML validation expects an element that is optional
I have a .NET client using WCF. For validation, I use an xsd like:
<xs:complexType name="MyBaseType">
<xs:sequence>
<xs:element name="Family" type="FamilyType"/>
...
0
votes
2answers
80 views
How to use System.XML.Linq to read simple XML document?
If I have added an XML document to a Visual Studio project, what code using System.XML.Linq will read data elements from this document?
0
votes
2answers
72 views
Can an XML file be included in a Visual Studio 2010 project and then referred to in code?
Is it possible to store an actual XML file in a Visual Studio 2010 project and then refer to it in code?
ie. Can I store an XML file (see fragment below) and then refer to data elements within the ...
0
votes
2answers
37 views
How to read serialized data into a set of entity classes
I've been assigned a task to import reference data from a database into a set of entity classes. Here's an example of one of the simpler entity classes:
public class CountryList
{
public ...
0
votes
2answers
142 views
Generic way of creating XML files in C#
I am trying to create a class which saves/reads multiple XML files using LINQ and Genertics.
I am looking for generic way of saving XMl files of multiple type (i.e data in them)
Every XML file will ...
1
vote
2answers
44 views
How to lower the bool value in webservice response and XML file
In my application i have set of Web-Service which return Bool value in from of camel case i.e. "True" instead of "true" and "False" instead of "false" and same goes in XML file which is get from the ...



