Giorgio Zoppi wrote:

One of the first problem that i had, when I started using Tuscany, was that
I was serialize something without a mapping, because I wanted that a
job was something
more generics possible, i couldn't.

I'm not sure I understand what you mean by "serialize something without a mapping"? Isn't there always a mapping like:

- Java serialization -> mapping between Java Objects that implement Serializable and bytes, as specified in the Java Object Serialization specification at http://java.sun.com/j2se/1.5.0/docs/guide/serialization/spec/serialTOC.html

or

- XML serialization -> mapping between Java Objects that follow specified patterns and XML, as specified (for example) in the JAXB specification at http://java.sun.com/xml/downloads/jaxb.html

or

- Java support for Externalizables -> mapping between Java Objects and whatever protocol the implementor of the read/writeExternal methods decides to implement, again here somebody needs to describe and publish that mapping if he wants a chance to talk to other components, or at least publish the mapping between the bytes read/written and a known type system.

Can you say a little more about what you were trying to do and the specific issues that you ran into?

Thanks
--
Jean-Sebastien

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to