2
votes
3answers
1k views
How to stop .NET from encoding an XML string with XML.Serialization
I am working with some Xml Serialization in ASP.NET 2.0 in a web service. The issue is that I have an element which is defined such as this:
…
0
votes
4answers
102 views
InvalidOperationException When XML Serializing Inherited Class
I am having an issue serializing a c# class to an XML file that has a base class... here is a simple example:
namespace Domain
{
[Serializable]
public class ClassA
{
public virtual int …
0
votes
4answers
595 views
How do I unit test object serialization/deserialization in VB.NET 1.1?
I am looking for example code that provides a unit test to serialize and deserialize an object from a memory stream. I have found examples using C# 2.0, however my current project uses VB.NET 1.1 …
0
votes
1answer
16 views
error marshalling return;
I am getting the following exception when I tried to execute one my service in my server which is deployed as EJB2.0 stateless session bean.
Error executing services::error marshalling return; nested …
1
vote
2answers
46 views
If Base class is marked Serializable are all child classes marked too?
I have a whole list of entity classes which I need to make Serializable (due to storing session state in SQL, but that's another story).
I have added the attribute [Serializable] and all seems to be …
0
votes
1answer
12 views
.NET Json Serialization Circular Ref Error (Object involves structuremap vars)
I have a web method called from Jquery to display a hierarchical tree object. The return value is a List (Of T) , where T is hierarchical, a parent-child relationship. traversal will be from parent to …
0
votes
4answers
62 views
Quick and dirty reflection based XML Serializer
Does anyone know of a quick and dirty implementation of a reflection based XML serializer?
I am looking to rip out my XML serialization code due to the horrid start up time. I know about sgen.exe …
1
vote
1answer
107 views
+100
CompositeControl and XML Deserialization on design-time error.
I get "Error rendering control" error that only happens when I place the control on the webform in desgin-mode, if I run the page the control is displayed correctly.
The above statement is not …
0
votes
1answer
26 views
Update model object with new dynamicaly created field?
I have Queryset:
queryset = Status.objects.all()[:10]
Model Status hasn't got field commentAmount so I would add it to every object in Queryset:
for s in queryset:
s.commentAmount = …
1
vote
2answers
57 views
Dictionary not deserializing
I'm having a problem where one Dictionary in my project is either not serializing or not deserializing. After deserializing, the data I serialized is simply not in the object.
Here's the relevant …
0
votes
1answer
26 views
WCF, containers in DataContract
Hi
I need to pass some container of objects to WCF call
[DataContract]
class Foo
{
// other fields omited
[DataMember]
public List<Foo> MyList;
}
Is it OK for serialization? If not what …
0
votes
3answers
54 views
How to serialize a derived class as its base class
I have a derived class that adds only methods to a base class. How can serialize the derived class so that it matches the serialization of the base class?
i.e. The serialized xml of the derived class …
0
votes
4answers
46 views
Serializing objects into the database while maintaining flexibility
What approach should I take when serializing an object to the database, keeping in mind that the objects properties will change in time?
At first, I thought of making sure all my objects implement an …
0
votes
3answers
34 views
Deserializing an xml stream with invalid values
I'm calling a "web service" that gives me as an xml response an invalid node, so when I try to deserialize it, it throws an exception.
I'm using the XmlSerializer class, like so:
internal class …
0
votes
2answers
25 views
Serialized data in mysql database needs to combined in an array
I am working in PHP/MySQL.
I have a table in my database called hourly in that table their is a column named webaddress these are serialized. There are multiple rows of each column of webaddresses …
