4
votes
4answers
51 views
How can I find which object in ASP.NET can’t be serialized?
I'm getting the following error in my application:
Unable to serialize the session state.
In 'StateServer' and 'SQLServer' mode,
ASP.NET will serialize the session
state …
2
votes
3answers
99 views
is there a difference between [Serializable] and [Serializable()] in c#?
Hi,
I've bumped into examples using either of both notations. I can't find anything about it what tells which one is the common one, why 2 notations are allowed, and if there is a …
0
votes
4answers
51 views
Serialization of Method object in Java is possible?
I'm getting this error when I try to serialize a Method object.
java.io.NotSerializableException: java.lang.reflect.Method
Any Idea?
1
vote
1answer
29 views
PHP Complete Object Graph not stored in Session
Hello,
I have read other posts on stack overflow on the issue but my question is a little different..
When storing an object in the Session does PHP save the Complete Object Gra …
0
votes
4answers
47 views
Why am I using the KnownType attribute wrong?
I am trying to deserialize a json response from a google api, so i thought i would define a couple classes to help with it:
[DataContract]
public class DetectionResult:ResponseDat …
0
votes
1answer
64 views
How can I serialize (and later deserialize) a generic type in Scala?
Say I'd like to implement something like this:
def serialize( list: List[_] ) : Node = {
<list>
{ for ( item <- list ) yield serializeItem(item) }
</list>
}
…
4
votes
2answers
29 views
How can I deserialise an XML element into an array of elements with both attributes and text in C#?
I am having a problem trying to deserialise this XML:
<?xml version="1.0" encoding="UTF-8"?>
<links>
<link title="ABC">http://abc.co.uk</link>
< …
0
votes
2answers
20 views
Serializable exception and WCF
if i made my exception Serializable like this article from msdn , so can my exception serialized over WCF ?
0
votes
3answers
40 views
Send javascript variables to server-side ASP .NET
I need to pass a javascript data to the server-side on post-back.
Ex
var jsVariableToPass = new Object();
jsVariableToPass ['key1'] = value1;
jsVariableToPass ['key2'] …
0
votes
4answers
51 views
C# Object Binary Serialization
I want to make a binary serialize of an object and the result to save it in a database.
Person person = new Person();
person.Name = "something";
MemoryStream memorystream = new M …
2
votes
2answers
65 views
Xml Serialization in .NET
Hi
I have a class that I want to serialize to xml.
The class looks like the following
[XmlRoot("clubMember")]
public class Person
{
[XmlElement("memberName")]
public strin …
0
votes
2answers
46 views
will serialized object contains metadata?
When we are deserializing an object, its very difficult to understand that, how it is retriving the object in some certain state? Does it contain any Meta data of the object?
0
votes
0answers
52 views
Thrift serialisation/deserialization example for C++ ?
Is there an example showing how to serialize/deserialize C++ objects using Thrift?
(Google searches are not turning up anything remotely useful)....
Suppose I have a set of data t …
-2
votes
2answers
55 views
Purpose of Serialization in webapplication
1.Where is the usage of serialization in a webapplication.
2.Is it necessary that a form bean is serializable.
3.In tomcat what is the usage of sessions.ser file..
0
votes
2answers
47 views
How to figure out the type when deserializing?
If I have 10 different objects serialized/deserialized using a Generic T class that uses the XmlSerializer internally, how can I know which type to use when deserializing it?
MyXm …
