Return-Path: Delivered-To: apmail-incubator-geronimo-cvs-archive@www.apache.org Received: (qmail 67611 invoked from network); 23 Sep 2003 02:34:30 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 23 Sep 2003 02:34:30 -0000 Received: (qmail 36101 invoked by uid 500); 23 Sep 2003 02:34:10 -0000 Delivered-To: apmail-incubator-geronimo-cvs-archive@incubator.apache.org Received: (qmail 36076 invoked by uid 500); 23 Sep 2003 02:34:10 -0000 Mailing-List: contact geronimo-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: geronimo-dev@incubator.apache.org Delivered-To: mailing list geronimo-cvs@incubator.apache.org Received: (qmail 36063 invoked from network); 23 Sep 2003 02:34:09 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 23 Sep 2003 02:34:09 -0000 Received: (qmail 67590 invoked by uid 1724); 23 Sep 2003 02:34:27 -0000 Date: 23 Sep 2003 02:34:27 -0000 Message-ID: <20030923023427.67589.qmail@minotaur.apache.org> From: chirino@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting MarshalledMethod.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 @@ - + 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 @@ - + 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 @@ + 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(' ');