Log in to follow, share, and participate in this community.
Thread Serialize a Spring Bean Factory/Context
Serialize a Spring Bean Factory/ContextI'm attempting to serialize the state of a fairly complex Spring Bean Context. I've been unsuccessful so far. I've created a very basic test case which fails, and posted a JIRA issue for it here: http://jira.jboss.co...
Thread ... can not access a member of class ... with modifiers "pub
... can not access a member of class ... with modifiers "pubI've encountered a strange exception: org.jboss.serial.exception.SerializationException: Could not create instance of (class name here) - Class org.jboss.serial.classmetamodel.ClassMetaData can not access a member of ...
java.net.SocketException: Broken pipeI'm new to jboss serialization and I keep getting broken pipe exception. Here is my code: Sender.java socket = new Socket(address, port); ObjectOutputStream out = new JBossObjectOutputStream(stream); ... out.writeObj...
Thread ClassNotFoundException when deserializing an array type that
ClassNotFoundException when deserializing an array type thatI'm attempting to use JBoss serialization for some work I'm doing right now to record and playback method executions. This means I record all the input parms, and the return values. For the most part JBoss Serializati...
GA Release questionsI'm about to release jboss-serialization. As jboss-serialization is a single jar, do I need to create a ZIP package also to put on sourceforge? Can I distribute it only the jar by itself, or do I have to add release...
GA ReleasedWe just released JBossSerialization 1.0.0. GA. It's available on source forge: http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=188754&release_id=414632 thanks for Rajesh who made the...
ibiblio for jboss serializationSome of the Apache MyFaces devs are debating over whether we can sneak this product into a "special" release for our BOF talk at J1. We recently moved to maven 2, and it would make things real easy if this were in ibi...
Bug in StingUtil.javaHi If i want to serialize a string that is greater than ca. 20000 characters i get a nullpointerexception: java.lang.NullPointerException at org.jboss.serial.util.StringUtil.readString(StringUtil.java:247) at org.jb...
JBossSerialization and InheritanceHi If an object is serialized with JBossSerialization and transfered with JBossRemoting I receive the object but the attributes from the superclass are all NULL. But if the superclass implements the Serializable inte...
Thread JBSER-60 - Recent improvements on Streaming
JBSER-60 - Recent improvements on StreamingI just made some improvements on sizing of streaming, due to JBSER-60: http://jira.jboss.org/jira/browse/JBSER-60 Basically I'm using IDs on ClassNames now, so if you write an array of Objects, the className is only...
Java 5 and serializationHey Clebert- I've just updated serialization from CVS and it's failing to build on my box since I'm using JDK1.4.2 and now the code seems to contain some Java 5 specific stuff (Enums) JBossMessaging uses JBossSerial...
Integer/Object HashTable contribution, anyone?I need a simple hashTable implementation, lightweight assigning integers and objects. I need that to improve the logic of Handles (internal hashCodes) and Objects. I guess I would be able to find how to implement on...
CR5 releasedI just released CR5 as a request of JMS team. It's almost the same as CR4. Just some minor changes on Tracing. I'm planning a GA release in one or two weeks (before next GA version of JBoss 4.0)
Thread Serialization library sends output at STDOUT
Serialization library sends output at STDOUT
11:20:00,206 INFO [STDOUT] FieldsManager in use = org.jboss.serial.classmetamodel.ReflectionFieldsManager
You should probably use a Logger ... It's whatever snapshot Messaging uses right now.
SoftReferences and WeakReferencesAnyone know in detail when a SoftReference is supposed to be cleared? I'm creating a testcase, using jbossProfiler interface, to validate classUnloading in a javaSerialization, and the class is not being unloaded whe...
Please support 1.4.2 compilerRecent changes to the head to support 1.5 Enum have broken compatiblity with 1.4.2. The project in my opinion should compile and run under both 1.4.2 and 1.5
Thread Special Collections within JBossSerialization
Special Collections within JBossSerializationI have a need to some special collections, encapsulating ConcurrentHashMap the same way OptimizedObjectINputStream (from JBAS) uses:
public Object get()
{
if (classCache != null)
{
WeakReference ref = (WeakRe...
Hibernate Proxy possible fixHi Clebert I have been taking a look at the JBoss-Serialization code. It has currently problems with the HibernateProxy class. (saw there is no fix for it in the forums). I traced the error a little deeper and traced...