User: sparre  
  Date: 01/08/08 14:23:47

  Added:       iiop     patch.sh
  Log:
  Added a simple shell script for patching JBoss with the IIOP code.
  
  Revision  Changes    Path
  1.1                  contrib/iiop/patch.sh
  
  Index: patch.sh
  ===================================================================
  #!/bin/bash
  
  # Fixup to fit _your_ local jboss location.
  JBOSS=/home/osh/src/java/jboss/jboss
  
  if [ ! -f $JBOSS/src/etc/conf/default/jboss.jcml ]; then
    echo Fixup this script with right location of JBoss
    exit 1
  fi
  
  patch -p0 <<EOF
  --- $JBOSS/src/etc/conf/default/jboss.jcml    Sat Jul 28 18:24:32 2001
  +++ $JBOSS/src/etc/conf/default/jboss.jcml    Wed Aug  8 23:45:44 2001
  @@ -22,6 +22,12 @@
     </mbean>
     <mbean code="org.jboss.naming.JNDIView" name="DefaultDomain:service=JNDIView" />
   
  +  <!-- ==================================================================== -->
  +  <!-- RMI/IIOP                                                             -->
  +  <!-- ==================================================================== -->
  +  <mbean code="org.jboss.iiop.CorbaORBService"
  +         name="DefaultDomain:service=CorbaORB">
  +  </mbean>                                                                     
   
     <!-- ==================================================================== -->
     <!-- Transactions                                                         -->
  EOF
  
  cp -a src/main/org/jboss/iiop $JBOSS/src/main/org/jboss
  
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to