473,804 Members | 3,464 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Strange Deserialization problem.

Hi,

I have a small serializable struct :

[Serializable]
public struct TestStruct
{
public string Title;
public int Age;
public string Name;
public string Surname;
}

I "binary" Serialize it in a file without any problem.
I can desreialize it in the SAME application with NO problems.
But when I want to Deserialize it in an OTHER application, I get an Invalide
cast error :

TestStruct TmpTestStruct = (TestStruct)for matter.Deserial ize(fs);

=Error message "Specified cast is not valid" !

So, I tested to deserialize it in an object, and check the Type :

Object TmpObj = formatter.Deser ialize(fs);
MessageBox.Show (TmpObj.GetType ().ToString());

It works fine, and the MessageBox show "TestStruct ". but impossible to cast
it as TestStruct !! ("Specified cast is not valid")

So why is it deserializable in the same Application and not in an other,
even if both use the same source ??

Can anybody help me ? Any idea of what I am doing wrong ? a MS Bug ? Is it
a problem because of different namesapce in both applications ?

Any help appreciated.

Steph.
Apr 25 '07 #1
3 2221
Steph,

Do you have a reference in the other application to the TestStruct
structure, or did you copy the code? If you copied the code, then in
essence, you have created a NEW type. It has the same logical structure but
it is a different type to the CLR.

If you are using .NET 3.0, then you can use the DataContract attribute
along with the DataContractSer ializer class to write your files and read
them. This will allow you to have separate CLR types which have the same
logical structure and read them from the file.

You can also achieve the same thing with serialization in .NET 2.0 using
serialization surrogates, but it's pretty messy.

Also, for this kind of structure, you could get away with Xml
Serialization as well, which works in .NET 2.0 and earlier.

Of course, if you take the type and store it in an assembly that is
referenced by both executables, then all of this is moot.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"TheSteph" <Th******@NoSpa m.comwrote in message
news:ey******** ******@TK2MSFTN GP03.phx.gbl...
Hi,

I have a small serializable struct :

[Serializable]
public struct TestStruct
{
public string Title;
public int Age;
public string Name;
public string Surname;
}

I "binary" Serialize it in a file without any problem.
I can desreialize it in the SAME application with NO problems.
But when I want to Deserialize it in an OTHER application, I get an
Invalide
cast error :

TestStruct TmpTestStruct = (TestStruct)for matter.Deserial ize(fs);

=Error message "Specified cast is not valid" !

So, I tested to deserialize it in an object, and check the Type :

Object TmpObj = formatter.Deser ialize(fs);
MessageBox.Show (TmpObj.GetType ().ToString());

It works fine, and the MessageBox show "TestStruct ". but impossible to
cast
it as TestStruct !! ("Specified cast is not valid")

So why is it deserializable in the same Application and not in an other,
even if both use the same source ??

Can anybody help me ? Any idea of what I am doing wrong ? a MS Bug ? Is
it
a problem because of different namesapce in both applications ?

Any help appreciated.

Steph.


Apr 25 '07 #2
Many thanks for your fast, complete and instructive reply !

I actually copied the code that define my TestStruct. So the problem must
be there. I didn't thought a second that the CLR will refuse to deserialize
from one Type to an exact "copy" of this type. And for some reason I needed
to avoid to have the type in a separate shared assembly.

I've red that DataContractSer ializer class you talked about use XML.But I'm
still with Framework 2.0 and Vs2005, so I decided to try keep my code, and
change only the serialization part from Binary to Xml.. and that worked fine
!!

Strange that MS make it works using Xml Serializer/Deserializer and not with
Binay Serializer/Deserializer...

Thanks again for your help

!

Steph.


"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote in
message news:OL******** ******@TK2MSFTN GP03.phx.gbl...
Steph,

Do you have a reference in the other application to the TestStruct
structure, or did you copy the code? If you copied the code, then in
essence, you have created a NEW type. It has the same logical structure
but
it is a different type to the CLR.

If you are using .NET 3.0, then you can use the DataContract attribute
along with the DataContractSer ializer class to write your files and read
them. This will allow you to have separate CLR types which have the same
logical structure and read them from the file.

You can also achieve the same thing with serialization in .NET 2.0
using
serialization surrogates, but it's pretty messy.

Also, for this kind of structure, you could get away with Xml
Serialization as well, which works in .NET 2.0 and earlier.

Of course, if you take the type and store it in an assembly that is
referenced by both executables, then all of this is moot.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"TheSteph" <Th******@NoSpa m.comwrote in message
news:ey******** ******@TK2MSFTN GP03.phx.gbl...
Hi,

I have a small serializable struct :

[Serializable]
public struct TestStruct
{
public string Title;
public int Age;
public string Name;
public string Surname;
}

I "binary" Serialize it in a file without any problem.
I can desreialize it in the SAME application with NO problems.
But when I want to Deserialize it in an OTHER application, I get an
Invalide
cast error :

TestStruct TmpTestStruct = (TestStruct)for matter.Deserial ize(fs);

=Error message "Specified cast is not valid" !

So, I tested to deserialize it in an object, and check the Type :

Object TmpObj = formatter.Deser ialize(fs);
MessageBox.Show (TmpObj.GetType ().ToString());

It works fine, and the MessageBox show "TestStruct ". but impossible to
cast
it as TestStruct !! ("Specified cast is not valid")

So why is it deserializable in the same Application and not in an other,
even if both use the same source ??

Can anybody help me ? Any idea of what I am doing wrong ? a MS Bug ?
Is
it
a problem because of different namesapce in both applications ?

Any help appreciated.

Steph.


Apr 25 '07 #3
Steph,

The XmlSerializer works on logical types, not the actual CLR type. If
the layout of your type is the same, then it should work between two types.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"TheSteph" <Th******@NoSpa m.comwrote in message
news:uK******** ******@TK2MSFTN GP03.phx.gbl...
Many thanks for your fast, complete and instructive reply !

I actually copied the code that define my TestStruct. So the problem must
be there. I didn't thought a second that the CLR will refuse to
deserialize
from one Type to an exact "copy" of this type. And for some reason I
needed
to avoid to have the type in a separate shared assembly.

I've red that DataContractSer ializer class you talked about use XML.But
I'm
still with Framework 2.0 and Vs2005, so I decided to try keep my code, and
change only the serialization part from Binary to Xml.. and that worked
fine
!!

Strange that MS make it works using Xml Serializer/Deserializer and not
with
Binay Serializer/Deserializer...

Thanks again for your help

!

Steph.


"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote
in
message news:OL******** ******@TK2MSFTN GP03.phx.gbl...
>Steph,

Do you have a reference in the other application to the TestStruct
structure, or did you copy the code? If you copied the code, then in
essence, you have created a NEW type. It has the same logical structure
but
>it is a different type to the CLR.

If you are using .NET 3.0, then you can use the DataContract
attribute
along with the DataContractSer ializer class to write your files and read
them. This will allow you to have separate CLR types which have the same
logical structure and read them from the file.

You can also achieve the same thing with serialization in .NET 2.0
using
>serializatio n surrogates, but it's pretty messy.

Also, for this kind of structure, you could get away with Xml
Serializatio n as well, which works in .NET 2.0 and earlier.

Of course, if you take the type and store it in an assembly that is
referenced by both executables, then all of this is moot.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"TheSteph" <Th******@NoSpa m.comwrote in message
news:ey******* *******@TK2MSFT NGP03.phx.gbl.. .
Hi,

I have a small serializable struct :

[Serializable]
public struct TestStruct
{
public string Title;
public int Age;
public string Name;
public string Surname;
}

I "binary" Serialize it in a file without any problem.
I can desreialize it in the SAME application with NO problems.
But when I want to Deserialize it in an OTHER application, I get an
Invalide
cast error :

TestStruct TmpTestStruct = (TestStruct)for matter.Deserial ize(fs);

=Error message "Specified cast is not valid" !

So, I tested to deserialize it in an object, and check the Type :

Object TmpObj = formatter.Deser ialize(fs);
MessageBox.Show (TmpObj.GetType ().ToString());

It works fine, and the MessageBox show "TestStruct ". but impossible to
cast
it as TestStruct !! ("Specified cast is not valid")

So why is it deserializable in the same Application and not in an
other,
even if both use the same source ??

Can anybody help me ? Any idea of what I am doing wrong ? a MS Bug ?
Is
it
a problem because of different namesapce in both applications ?

Any help appreciated.

Steph.




Apr 25 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1664
by: TEK | last post by:
There seems to be a bug when deserialization some classes in the .NET framework. If you try to deserialize a class that has a base class that holds a struct with a member that is implementing the ICollection interface, this causes the deserialization to fail. In my case this is a huge problem, and any suggestion for a workaround would be happily received. A small example of a set of classes that reproduces the problem is included
2
3825
by: Snowman | last post by:
Suppose I have a RootObject which holds a collection of other objects. The other objects have a property (Parent) which refers back to the "parent" collection (b.t.w. my collection is based on CollectionBase), in similar fashion as the object models of MS Office. I want to serialize this object graph (with RootObject as the xml document element) without Parent property serialized, this may be done by adding XmlIgnoreAttribute on the...
3
9797
by: Amadelle | last post by:
Hi all and thanks in advance for your help, I am having problems deserializing an object which seems to be serializing just fine. I save the byte array of the serialized object in the database (when I check the database the field that holds the binary data seems populated), but when I want to deserialize this same byte array the application fails and gives me the following error: Binary stream does not contain a valid BinaryHeader, 0...
3
2071
by: AnkitAsDeveloper [Ankit] | last post by:
Hi i am serializing a 'ref struct' object as follows : private: void Seri( String ^path, Object^ obj ) { FileStream^ fileStrm ; try { //Serialize entire object into Binary stream
3
9797
by: parrot toes | last post by:
Summary: I have been trying to make requests of a web service provided by Axis using a dotnet client with code generated by wsdl.exe and have been getting exceptions when trying to process the response. As a result of seraching news groups I guessed that the SOAP response defines an array element in a way that causes the dotnet deserialization routines to put the content in a generic object array (object) BUT the content is supposed to...
1
3753
by: parrot toes | last post by:
I tried to post this question before, but there was an error when posting. I case it did get posted and in order to avoid duplication, I'll just repost a summary. I have written a dotnet client that accesses a Axis provided web service. The client uses the code generated, using wsdl.exe, from the wsdl file provided by the web service provider. The web response has the following schema (roughly):
5
2294
by: Greg Allen | last post by:
I am consuming a web service and using the generated Reference.cs to access the service and the objects associated with it. I have run into a problem where some inherited classes are not being deserialized. I have verified that the XML being returned by the service contains the tags I am expecting, but they don't show up in the resulting object. Here's the relevant portion of the Reference.cs file: public class FormSection {
3
5000
by: John Glover | last post by:
To whoever can help, I've been having a problem with XML deserialization lately. I needed to serialize and deserialze two objects which inherited from Hashtable. Because IDictionary implementations cannot be serialized, I had to take matters into my own hands by implementing a wrapper over the Hashtable which implemted IXmlSerializable. I called it XmlHashtable. It has, among other convenience methods, a method
7
16169
by: Andrew | last post by:
Hi, I am using DataContractJsonSerializer to deserialize JSON string in C# objects but I am having a problem. Suppose I have a class: class Item { public ItemId Id { get; set; }
0
9704
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9572
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10562
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
7608
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6845
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5639
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4282
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3803
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2978
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.