[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

John Wood

7/7/2004 5:35:00 PM

Does anyone know of any tools / solutions to automatic serialization of
objects (like the [Serializable] attribute with no custom implementation,
but *without* the versioning headaches) ?

By versioning headaches, I'm specifically referring to the problem where
inserting or removing a member breaks the deserialization.

Thanks.

--
John Wood
EMail: first name, dot, second name at priorganize.com



3 Answers

Raghu

7/7/2004 7:42:00 PM

0

Have you tried XmlSerializer object in .net framework? You don''t even need
Serializable attribute and every thing is done with attributes.

"John Wood" <spam@isannoying.com> wrote in message
news:O5jhwiEZEHA.2432@tk2msftngp13.phx.gbl...
> Does anyone know of any tools / solutions to automatic serialization of
> objects (like the [Serializable] attribute with no custom implementation,
> but *without* the versioning headaches) ?
>
> By versioning headaches, I''m specifically referring to the problem where
> inserting or removing a member breaks the deserialization.
>
> Thanks.
>
> --
> John Wood
> EMail: first name, dot, second name at priorganize.com
>
>
>


John Wood

7/7/2004 8:03:00 PM

0

Ah I should have said binary serialization... XmlSerializer is very cool,
but unfortunately serializing /deserializing between a text representation
of the object is just gonna be too slow for my needs...

Thanks though.

--
John Wood
EMail: first name, dot, second name at priorganize.com


"Raghu" <Raghu@nospamzzzqcsi.com> wrote in message
news:eLxh1pFZEHA.3512@TK2MSFTNGP12.phx.gbl...
> Have you tried XmlSerializer object in .net framework? You don''t even need
> Serializable attribute and every thing is done with attributes.
>
> "John Wood" <spam@isannoying.com> wrote in message
> news:O5jhwiEZEHA.2432@tk2msftngp13.phx.gbl...
> > Does anyone know of any tools / solutions to automatic serialization of
> > objects (like the [Serializable] attribute with no custom
implementation,
> > but *without* the versioning headaches) ?
> >
> > By versioning headaches, I''m specifically referring to the problem where
> > inserting or removing a member breaks the deserialization.
> >
> > Thanks.
> >
> > --
> > John Wood
> > EMail: first name, dot, second name at priorganize.com
> >
> >
> >
>
>


Jose Luis Manners

7/8/2004 5:55:00 PM

0

Well I know of these two articles but they talk about dataset serialization:

http://www.eggheadcafe.com/articles/20...
http://support.microsoft.com/default.aspx?scid=kb;en...

I hope they help.

--
Regards,

Jose Luis Manners, MCP

"Encuentra felicidad en tu trabajo o nunca ser&#225;s feliz."
-Kung-Fu-Tsu (Confucio)

"John Wood" <spam@isannoying.com> wrote in message
news:O5jhwiEZEHA.2432@tk2msftngp13.phx.gbl...
> Does anyone know of any tools / solutions to automatic serialization of
> objects (like the [Serializable] attribute with no custom implementation,
> but *without* the versioning headaches) ?
>
> By versioning headaches, I''m specifically referring to the problem where
> inserting or removing a member breaks the deserialization.
>
> Thanks.
>
> --
> John Wood
> EMail: first name, dot, second name at priorganize.com
>
>
>