> Contrib RMI: NotSerializableException
> -------------------------------------
> 
>          Key: JCR-109
>          URL: http://issues.apache.org/jira/browse/JCR-109
>      Project: Jackrabbit
>         Type: Bug
> 
> org.apache.jackrabbit.rmi.client.RemoteRepositoryException:
> error unmarshalling return; nested exception 
> is:.java.io.WriteAbortedException: writing aborted;
> java.io.NotSerializableException: javax.jcr.NameValue

This problem occurs with ServerRow.getValues() too. I have attached a patch 
which makes the corresponding change to getValues() that was made to 
getValue(String).

Index: 
C:/jprojects/eclipse/jackrabbit/contrib/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java
===================================================================
--- 
C:/jprojects/eclipse/jackrabbit/contrib/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java
    (revision 367671)
+++ 
C:/jprojects/eclipse/jackrabbit/contrib/jcr-rmi/src/java/org/apache/jackrabbit/rmi/server/ServerRow.java
    (working copy)
@@ -55,7 +55,7 @@
 
     /** [EMAIL PROTECTED] */
     public Value[] getValues() throws RepositoryException, RemoteException {
-        return row.getValues();
+        return SerialValueFactory.makeSerialValueArray(row.getValues());
     }
 
     /** [EMAIL PROTECTED] */

Reply via email to