[jboss-cvs] Repository SVN: r1453 - in jboss/remoting: 2.2.2.SP1.patch01-brew and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 2 13:20:58 EDT 2007


Author: fnasser at redhat.com
Date: 2007-10-02 13:20:58 -0400 (Tue, 02 Oct 2007)
New Revision: 1453

Added:
   jboss/remoting/2.2.2.SP1.patch01-brew/
   jboss/remoting/2.2.2.SP1.patch01-brew/component-info.xml
   jboss/remoting/2.2.2.SP1.patch01-brew/lib/
   jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting-src.jar
   jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting.jar
   jboss/remoting/2.2.2.SP1.patch01-brew/src/
   jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-2.2.2.SP1-src.tar.gz
   jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-JBREM-811.patch
Log:
Add patch with fix for JBREM-811 (needed by JBM

Added: jboss/remoting/2.2.2.SP1.patch01-brew/component-info.xml
===================================================================
--- jboss/remoting/2.2.2.SP1.patch01-brew/component-info.xml	                        (rev 0)
+++ jboss/remoting/2.2.2.SP1.patch01-brew/component-info.xml	2007-10-02 17:20:58 UTC (rev 1453)
@@ -0,0 +1,37 @@
+<project name="jboss/remoting-component-info">
+
+   <!-- ============================================================ -->
+   <!-- JBOSS REMOTING                                               -->
+   <!-- ============================================================ -->
+
+   <component id="jboss/remoting"
+              licenseType="lgpl"
+              version="2.2.2.SP1.patch01-brew"
+              projectHome="http://www.jboss.org/products/remoting"
+              description="a single API for most network based invocations and related service that uses pluggable transports and data marshallers"
+              tag="jboss-remoting-2_2_2-1_SP1_0jpp_ep1_2">
+
+      <artifact id="jboss-remoting.jar"/>
+
+      <import componentref="jboss/serialization">
+         <compatible version="1.0.0.GA"/>
+         <compatible version="1.0.1.GA"/>
+         <compatible version="1.0.2.GA"/>
+         <compatible version="1.0.3.GA"/>
+         <compatible version="1.0.3.GA-brew"/>
+      </import>
+
+      <!-- Only need the apache-tomcat jars tomcat-apr.jar, tomcat-coyote.jar, tomcat-http.jar, tomcat-util.jar
+         (and tomcat-apr.jar only needed if actually using APR transport).  None of these are needed unless
+         using http server invoker -->
+      <!--<import componentref="apache-tomcat">-->
+         <!--<compatible version="5.5.15"/>-->
+      <!--</import>-->
+
+      <export>
+         <include input="jboss-remoting.jar"/>
+      </export>
+   </component>
+
+
+</project>

Added: jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting-src.jar
===================================================================
(Binary files differ)


Property changes on: jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting-src.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting.jar
===================================================================
(Binary files differ)


Property changes on: jboss/remoting/2.2.2.SP1.patch01-brew/lib/jboss-remoting.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-2.2.2.SP1-src.tar.gz
===================================================================
(Binary files differ)


Property changes on: jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-2.2.2.SP1-src.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-JBREM-811.patch
===================================================================
--- jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-JBREM-811.patch	                        (rev 0)
+++ jboss/remoting/2.2.2.SP1.patch01-brew/src/jboss-remoting-JBREM-811.patch	2007-10-02 17:20:58 UTC (rev 1453)
@@ -0,0 +1,45 @@
+Index: src/main/org/jboss/remoting/AbstractInvoker.java
+===================================================================
+RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/AbstractInvoker.java,v
+retrieving revision 1.12.4.10
+diff -r1.12.4.10 AbstractInvoker.java
+39a40,42
+> import java.security.AccessController;
+> import java.security.PrivilegedActionException;
+> import java.security.PrivilegedExceptionAction;
+76c79,93
+<       this.classbyteloader = new ClassByteClassLoader(this.getClass().getClassLoader());
+---
+> 	  try
+> 	  {
+> 	      this.classbyteloader = (ClassByteClassLoader)AccessController.doPrivileged( new PrivilegedExceptionAction()
+> 	      {
+> 	         public Object run() throws Exception
+> 	         {
+> 	        	 return new ClassByteClassLoader(this.getClass().getClassLoader());
+> 	         }
+> 	      });
+> 	  }
+> 	  catch (PrivilegedActionException e)
+> 	  {
+> 		  log.error(e.toString(), e);
+> 		  throw new RuntimeException("Can't create a ClassLoader", e);
+> 	  }
+221c238,252
+<       this.classbyteloader = new ClassByteClassLoader(classloader);
+---
+> 	  try
+> 	  {
+> 	      this.classbyteloader = (ClassByteClassLoader)AccessController.doPrivileged( new PrivilegedExceptionAction()
+> 	      {
+> 	         public Object run() throws Exception
+> 	         {
+> 	        	 return new ClassByteClassLoader(this.getClass().getClassLoader());
+> 	         }
+> 	      });
+> 	  }
+> 	  catch (PrivilegedActionException e)
+> 	  {
+> 		  log.error(e.toString(), e);
+> 		  throw new RuntimeException("Can't create a ClassLoader", e);
+> 	  }




More information about the jboss-cvs-commits mailing list