0
votes
1answer
4 views
Generating XML for ActiveRecord associations using batched find
I have a controller that returns XML for a has_many association in the most straight-forward but inefficient way possible:
@atoms = @molecule.atoms.find(:all, :include => :neutrons)
render :xml …
1
vote
1answer
11 views
Control XML Serialization from DataSet — Attributes on “TableName element”
Hope I chose the correct forum.
I have a dataset object with one table that comes to me from a common custom component's GetDS method. I need to pass XML to another process (chunked as byte array). I …
0
votes
6answers
37 views
XmlSerializer Deserializing Array/List of Multiple Objects at Root
I'm trying to deserialize the following XML output:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Foo>
<Val>Data1</Val>
</Foo>
<Foo>
…
0
votes
2answers
17 views
Force the use of an xsi:type attribute
How can I force .NET's XmlSerializer to add an xsi:type="FooClass" to a member/node of type FooClass?
The scenario is a currently-released app, where in v.1 :
FooClass inherits FooBaseClass
…
0
votes
2answers
84 views
XML Serialization in C# without XML attribute nodes
Hello,
I have an XML document format from a legacy system that I have to support in a future application. I want to be able to both serialize and deserialize the XML between XML and C# objects, …
0
votes
2answers
32 views
Providing better WSDL from C# SOAP
I'm pulling together some services in C# that have to match specific data format; e.g. string lengths, various enumerations and formatting. I have the back-up approach to validate post the SOAP call …
0
votes
3answers
21 views
XmlSerializer construction with same named extra types
Hey, I am hitting trouble constructing an XmlSerializer where the extra types contains types with the same Name (but unique Fullname). Below is an example that illustrated my scenario.
Type …
0
votes
2answers
31 views
Why .NET XML API doesn’t protect me from null character?
My application receive strings from outside and construct an XML document
string fromOutside = "\0";
XAttribute a = new XAttribute(fromOutside);
when the attribute value contains null character …
1
vote
1answer
29 views
Can XmlSerializer deserialize into a Nullable<int>?
This is duplicate of http://stackoverflow.com/questions/306877/can-xmlserializer-deserialize-into-a-nullableint but I need a solution that neither change xml document nor forces me to implement …
0
votes
2answers
61 views
Simple XML deserialization
I am trying out the Simple XML serializer. I am more interested in deserialization from XML->Java. Here is my code as a unit test:
import java.io.StringReader;
import java.io.StringWriter;
import …
2
votes
3answers
31 views
XMLSerializer writes invalid XML when serializing a class (Sometimes)
My goal is to be able to share configration settings amongst apps.
For example I want to be able to use a WinForm app to set and save the settings and have a console app be able to read those settings …
0
votes
0answers
11 views
User friendly error messages from validating XMLReader
I am validating form input against an XML schema definition by serializing my business layer objects to a MemoryStream and then reading the MemoryStream using a validating XMLReader. In the callback …
0
votes
1answer
34 views
WCF XML Serialization & Overloading
In my WCF service I only want 1 endpoint (1 URI), however, I want this URI to be able to handle multiple types of requests. 5 different request types can be sent to this service from another company. …
1
vote
4answers
71 views
Serialize a Bitmap in C#/.NET to XML
I want to XML-Serialize a complex type (class), that has a property of type System.Drawing.Bitmap among others.
/// <summary>
/// Gets or sets the large icon, a 32x32 pixel image …
0
votes
0answers
35 views
why does IE eat my Memory? [closed]
why does IE get +3GB of my ram and crashes my computer when i try to open a serialized dataset or datatable with it.
file size = 10MB
