Index: jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationMarshaller.java
===================================================================
--- jbossas4-4.2.2.GA.orig/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationMarshaller.java 2007-11-08 10:55:01.000000000 +0530
+++ jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationMarshaller.java 2007-11-08 10:55:35.000000000 +0530
@@ -103,7 +103,7 @@
}
- super.write(dataObject, output, version);
+ super.write(dataObject, output);
}
else // assume this is going to be the response
@@ -124,4 +124,4 @@
return new HTTPInvocationMarshaller();
}
-}
\ No newline at end of file
+}
Index: jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationUnMarshaller.java
===================================================================
--- jbossas4-4.2.2.GA.orig/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationUnMarshaller.java 2007-11-08 10:55:44.000000000 +0530
+++ jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/HTTPInvocationUnMarshaller.java 2007-11-08 10:55:52.000000000 +0530
@@ -48,7 +48,7 @@
public Object read(InputStream inputStream, Map metadata, int version) throws IOException, ClassNotFoundException
{
- Object ret = super.read(inputStream, metadata, version);
+ Object ret = super.read(inputStream, metadata);
if(ret instanceof InvocationRequest)
{
@@ -76,4 +76,4 @@
unmarshaller.setClassLoader(this.customClassLoader);
return unmarshaller;
}
-}
\ No newline at end of file
+}
Index: jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/InvocationMarshaller.java
===================================================================
--- jbossas4-4.2.2.GA.orig/server/src/main/org/jboss/invocation/unified/marshall/InvocationMarshaller.java 2007-11-08 10:56:22.000000000 +0530
+++ jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/InvocationMarshaller.java 2007-11-08 10:56:32.000000000 +0530
@@ -72,7 +72,7 @@
public void write(Object dataObject, OutputStream output, int version) throws IOException
{
- super.write(addDecoration(dataObject), output, version);
+ super.write(addDecoration(dataObject), output);
}
public Object addDecoration(Object dataObject) throws IOException {
@@ -129,4 +129,4 @@
return new InvocationMarshaller();
}
-}
\ No newline at end of file
+}
Index: jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/InvocationUnMarshaller.java
===================================================================
--- jbossas4-4.2.2.GA.orig/server/src/main/org/jboss/invocation/unified/marshall/InvocationUnMarshaller.java 2007-11-08 10:56:46.000000000 +0530
+++ jbossas4-4.2.2.GA/server/src/main/org/jboss/invocation/unified/marshall/InvocationUnMarshaller.java 2007-11-08 10:56:55.000000000 +0530
@@ -56,7 +56,7 @@
public Object read(InputStream inputStream, Map metadata, int version) throws IOException, ClassNotFoundException
{
- Object ret = super.read(inputStream, metadata, version);
+ Object ret = super.read(inputStream, metadata);
return removeDecoration(ret);
@@ -90,4 +90,4 @@
return obj;
}
-}
\ No newline at end of file
+}