You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ch...@apache.org on 2003/09/23 04:34:27 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting MarshalledMethod.java

chirino     2003/09/22 19:34:27

  Modified:    .        maven.xml
               modules/core/src/conf boot-service.xml
               modules/core/src/deploy remoting-service.xml
               modules/core/src/java/org/apache/geronimo/remoting
                        MarshalledMethod.java
  Log:
  Enabled the deployment of the remoting service.
  
  Revision  Changes    Path
  1.39      +2 -2      incubator-geronimo/maven.xml
  
  Index: maven.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/maven.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- maven.xml	18 Sep 2003 04:48:36 -0000	1.38
  +++ maven.xml	23 Sep 2003 02:34:27 -0000	1.39
  @@ -419,7 +419,7 @@
   
       <goal name="modules:aggregate:geronimo:geronimo-core">
           <!-- Do not do the default libraries stuff -->
  -        <aggregate:default deploy="false"/>
  +        <aggregate:default/>
       </goal>
   
       <goal name="modules:aggregate:geronimo:geronimo-web-console">
  
  
  
  1.14      +2 -2      incubator-geronimo/modules/core/src/conf/boot-service.xml
  
  Index: boot-service.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/conf/boot-service.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- boot-service.xml	8 Sep 2003 04:15:20 -0000	1.13
  +++ boot-service.xml	23 Sep 2003 02:34:27 -0000	1.14
  @@ -3,7 +3,7 @@
   <!-- $Revision$ $Date$ -->
   
   <components>
  -    <class-space name="geronimo.system:role=ClassSpace,name=Jetty">
  +    <class-space name="geronimo.system:role=ClassSpace,name=System">
           <codebase url="file:../lib/">
               <archive name="*"/>
           </codebase>
  
  
  
  1.3       +1 -0      incubator-geronimo/modules/core/src/deploy/remoting-service.xml
  
  Index: remoting-service.xml
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/deploy/remoting-service.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- remoting-service.xml	8 Sep 2003 04:18:10 -0000	1.2
  +++ remoting-service.xml	23 Sep 2003 02:34:27 -0000	1.3
  @@ -1,5 +1,6 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <components>
  +    <class-space name="geronimo.system:role=ClassSpace,name=System"/>
   
       <!-- ============================================================ -->
       <!-- Starts the remoting async://0.0.0.0:3434 transport           -->
  
  
  
  1.3       +2 -2      incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/MarshalledMethod.java
  
  Index: MarshalledMethod.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/MarshalledMethod.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MarshalledMethod.java	29 Aug 2003 19:16:53 -0000	1.2
  +++ MarshalledMethod.java	23 Sep 2003 02:34:27 -0000	1.3
  @@ -90,7 +90,7 @@
        * @param method
        * @return
        */
  -    static private String getSignature(Method method) {
  +    static public String getSignature(Method method) {
           StringBuffer sb = new StringBuffer();
           sb.append(method.getName());
           sb.append(' ');