Frameworks for Serializing Objects

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Frameworks for Serializing Objects

Runar Jordahl
For a hobby project I want to serialize VisualWorks object graphs. I
have used BOSS, which works well, but I wonder which other
alternatives there are. Does anybody here have experience with other
frameworks?

SIXX (http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html)
seems to be in beta, and I am not really sure XML is what I want. A
compact binary representation would be better.

I also remember there was a framework presented at Smalltalk Solutions
a couple of years ago, but I cannot remember the name of that project.

One feature I would like is to have, is the opportunity to mark some
parts of the graph as not to be serialized. As an example, marking
Model>>#myDependents to be serialized would be very helpful. A
descriptor system (like TOPLink and Glorp) would probably be the best
way to archive this.

Runar

Reply | Threaded
Open this post in threaded view
|

Re: Frameworks for Serializing Objects

David Long @ gmail
Hi Runar,

there is some new object serialization code in the ADK project at which you
may want to look. You can get this from the Cincom Public Repository in the
Atlantis Developers Kit parcel. The code uses SOAP, byte arrays and Parcels.

Please let me know if you have any questions,

David
----- Original Message -----
From: "Runar Jordahl" <[hidden email]>
To: "VW NC" <[hidden email]>
Sent: Wednesday, February 14, 2007 6:10 AM
Subject: Frameworks for Serializing Objects


> For a hobby project I want to serialize VisualWorks object graphs. I
> have used BOSS, which works well, but I wonder which other
> alternatives there are. Does anybody here have experience with other
> frameworks?
>
> SIXX (http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html)
> seems to be in beta, and I am not really sure XML is what I want. A
> compact binary representation would be better.
>
> I also remember there was a framework presented at Smalltalk Solutions
> a couple of years ago, but I cannot remember the name of that project.
>
> One feature I would like is to have, is the opportunity to mark some
> parts of the graph as not to be serialized. As an example, marking
> Model>>#myDependents to be serialized would be very helpful. A
> descriptor system (like TOPLink and Glorp) would probably be the best
> way to archive this.
>
> Runar
>

Reply | Threaded
Open this post in threaded view
|

Re: Frameworks for Serializing Objects

Reinout Heeck
In reply to this post by Runar Jordahl

On Feb 14, 2007, at 12:10 PM, Runar Jordahl wrote:

> For a hobby project I want to serialize VisualWorks object graphs. I
> have used BOSS, which works well, but I wonder which other
> alternatives there are. Does anybody here have experience with other
> frameworks?

SRP is pretty good:
   http://wiki.cs.uiuc.edu/VisualWorks/Paul+Baumann
   http://www.cincomsmalltalk.com/publicRepository/ 
PlbStateReplicationProtocol.html

Unfortunately the CampSmalltalk wiki is dead at the moment, it  
contains the SRP pages :-(


R
-

Reply | Threaded
Open this post in threaded view
|

RE: Frameworks for Serializing Objects

Joerg Beekmann, DeepCove Labs (YVR)
In reply to this post by Runar Jordahl
You may want to take a look at what OpenTalk does for serialization.
Last I looked it was not BOSS based.

-----
Joerg Beekmann
DeepCove Labs
4th floor 595 Howe Street
Vancouver, BC, V6C 2T5
voice +1.604.689.0322
fax   +1.604.689.0311
[hidden email]
 

CONFIDENTIALITY NOTICE
Unless otherwise indicated this email contains information that is
private
and confidential. If you have received it in error, please notify the
sender
and delete this message along with any attachments.

> -----Original Message-----
> From: Runar Jordahl [mailto:[hidden email]]
> Sent: February 14, 2007 3:10 AM
> To: VW NC
> Subject: Frameworks for Serializing Objects
>
> For a hobby project I want to serialize VisualWorks object graphs. I
> have used BOSS, which works well, but I wonder which other
> alternatives there are. Does anybody here have experience with other
> frameworks?
>
> SIXX (http://www.mars.dti.ne.jp/~umejava/smalltalk/sixx/index.html)
> seems to be in beta, and I am not really sure XML is what I want. A
> compact binary representation would be better.
>
> I also remember there was a framework presented at Smalltalk Solutions
> a couple of years ago, but I cannot remember the name of that project.
>
> One feature I would like is to have, is the opportunity to mark some
> parts of the graph as not to be serialized. As an example, marking
> Model>>#myDependents to be serialized would be very helpful. A
> descriptor system (like TOPLink and Glorp) would probably be the best
> way to archive this.
>
> Runar