[protobuf] Re: message reader for oracle / plsql

2012-05-10 Thread J.S.
Hi! I posted a new version of: http://code.google.com/p/protocol-buffer-plsql/ it contains some bugfixes for reading protobufs (stored in blobs/raw) and some limited support for creating protobufs inside a Oracle DB (anything pure PLSQL). The Wiki Page contains a sample how to create a view

[protobuf] Re: UnmodifiableLazyStringList is not Serializable

2011-04-15 Thread J.S.
Ok, I got it: - the buffer at once is serializable - a attribut of the buffer (a repeated string) might be not so I have to copy the UnmodifiableLazyStringList to an ArrayList if I'd like to use the attribut as an argument to pass between beans. Pro: I dont need to include protobuf.jar into all

[protobuf] Re: UnmodifiableLazyStringList is not Serializable

2011-04-14 Thread J.S.
Hi! Most of the classes are already implementing Serializable. Maybe UnmodifiableLazyStringList was just forgotten. I'll add Serializable to this class and will try again. Maybe this simple thing is enough. js -- You received this message because you are subscribed to the Google Groups

[protobuf] UnmodifiableLazyStringList is not Serializable

2011-04-13 Thread J.S.
Hi! Passing a buffer with a repeated String from one EJB to another, I get: javax.ejb.EJBException: java.rmi.MarshalException: CORBA BAD_PARAM 1398079494 Maybe; nested exception is: java.io.NotSerializableException: WARNING: IOP0016: Class

[protobuf] Re: UnmodifiableLazyStringList is not Serializable

2011-04-13 Thread J.S.
Hi! Protocol buffers are objects to serialize things, but it doesn't really make sense to use Java serialization to serialize their holder objects. I'd like to pass Java objects from a unserialized protocol buffer between Beans inside a application server. This makes sense to me. If you

[protobuf] message reader for oracle / plsql

2011-01-19 Thread J.S.
Hi! I implemented a simple plsql package to read protocol buffers (fields type 0 and 2 / embedded messages and repeated values) stored in a oracle database. If anybody has interest to use or improve it, drop me a line. js -- You received this message because you are subscribed to the Google