[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2001-08-29 Thread marc fleury

  User: mnf999  
  Date: 01/08/29 19:35:54

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  just package names, nothing more
  
  Revision  ChangesPath
  1.3   +2 -2  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RMIServerILService.java   2001/08/17 03:04:04 1.2
  +++ RMIServerILService.java   2001/08/30 02:35:54 1.3
  @@ -15,14 +15,14 @@
   import org.jboss.mq.il.ServerILJMXService;
   import org.jboss.mq.server.JMSServer;
   
  -import org.jboss.util.ServiceMBeanSupport;
  +import org.jboss.system.ServiceMBeanSupport;
   
   /**
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.3 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean {
  RMIServerIL  serverIL;
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2001-08-31 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/31 20:00:59

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  Fixing compile problems due to migration of classes from jboss.util to jboss.system
  
  Revision  ChangesPath
  1.4   +21 -16jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RMIServerILService.java   2001/08/30 02:35:54 1.3
  +++ RMIServerILService.java   2001/09/01 03:00:59 1.4
  @@ -1,5 +1,5 @@
   /*
  - * JBossMQ, the OpenSource JMS implementation
  + * JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
  @@ -15,24 +15,23 @@
   import org.jboss.mq.il.ServerILJMXService;
   import org.jboss.mq.server.JMSServer;
   
  -import org.jboss.system.ServiceMBeanSupport;
  -
   /**
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.4 $
*/
  -public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean {
  -   RMIServerIL  serverIL;
  +public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
  +{
  +   RMIServerIL serverIL;
   
  /**
   *  Gives this JMX service a name.
   *
   * @returnThe Name value
   */
  -   public String getName() {
  +   public String getName()
  +   {
 return "JBossMQ-JVMServerIL";
  }
   
  @@ -43,7 +42,8 @@
   * @return The ServerIL value
   * @returnsServerIL the instance of this IL
   */
  -   public ServerIL getServerIL() {
  +   public ServerIL getServerIL()
  +   {
 return serverIL;
  }
   
  @@ -54,9 +54,10 @@
   *
   * @returnThe ClientConnectionProperties value
   */
  -   public java.util.Properties getClientConnectionProperties() {
  +   public java.util.Properties getClientConnectionProperties()
  +   {
 Properties rc = new Properties();
  -  rc.setProperty( GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
"org.jboss.mq.il.rmi.RMIClientILService" );
  +  rc.setProperty(GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
"org.jboss.mq.il.rmi.RMIClientILService");
 return rc;
  }
   
  @@ -65,10 +66,10 @@
   *
   * @exception  Exception  Description of Exception
   */
  -   public void startService()
  -  throws Exception {
  +   public void startService() throws Exception
  +   {
   
  -  serverIL = new RMIServerIL( lookupJMSServer() );
  +  serverIL = new RMIServerIL(lookupJMSServer());
 bindJNDIReferences();
   
  }
  @@ -76,10 +77,14 @@
  /**
   *  Stops this IL, and unbinds it from JNDI
   */
  -   public void stopService() {
  -  try {
  +   public void stopService()
  +   {
  +  try
  +  {
unbindJNDIReferences();
  -  } catch ( Exception e ) {
  +  }
  +  catch (Exception e)
  +  {
e.printStackTrace();
 }
  }
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2001-09-26 Thread Hiram Chirino

  User: chirino 
  Date: 01/09/26 20:27:43

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  Due to popular demand the PingThread is now shared by all the connections
  in one VM.  And the the ping period is configurable at each ConnectionFactory.
  
  Revision  ChangesPath
  1.5   +2 -2  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- RMIServerILService.java   2001/09/01 03:00:59 1.4
  +++ RMIServerILService.java   2001/09/27 03:27:43 1.5
  @@ -19,7 +19,7 @@
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.4 $
  + * @version$Revision: 1.5 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
   {
  @@ -56,7 +56,7 @@
   */
  public java.util.Properties getClientConnectionProperties()
  {
  -  Properties rc = new Properties();
  +  Properties rc = super.getClientConnectionProperties();
 rc.setProperty(GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
"org.jboss.mq.il.rmi.RMIClientILService");
 return rc;
  }
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2001-10-20 Thread Hiram Chirino

  User: chirino 
  Date: 01/10/20 22:38:13

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  Feature add:
  You can now setup a JBossMQ connection with out using JNDI.
  The ConnectionTestCase has a test case in case your interested on how it
  is done.
  
  Revision  ChangesPath
  1.6   +3 -2  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RMIServerILService.java   2001/09/27 03:27:43 1.5
  +++ RMIServerILService.java   2001/10/21 05:38:13 1.6
  @@ -14,12 +14,13 @@
   import org.jboss.mq.il.ServerIL;
   import org.jboss.mq.il.ServerILJMXService;
   import org.jboss.mq.server.JMSServer;
  +import org.jboss.mq.il.ServerILFactory;
   
   /**
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.5 $
  + * @version$Revision: 1.6 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
   {
  @@ -57,7 +58,7 @@
  public java.util.Properties getClientConnectionProperties()
  {
 Properties rc = super.getClientConnectionProperties();
  -  rc.setProperty(GenericConnectionFactory.CLIENT_IL_SERVICE_KEY, 
"org.jboss.mq.il.rmi.RMIClientILService");
  +  rc.setProperty(ServerILFactory.CLIENT_IL_SERVICE_KEY, 
"org.jboss.mq.il.rmi.RMIClientILService");
 return rc;
  }
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2001-11-10 Thread David Jencks

  User: d_jencks
  Date: 01/11/10 13:38:04

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  Changed mbean dependencies to work directly by mbean-references: eliminated depends 
tag from *service.xml files
  
  Revision  ChangesPath
  1.7   +2 -2  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- RMIServerILService.java   2001/10/21 05:38:13 1.6
  +++ RMIServerILService.java   2001/11/10 21:38:04 1.7
  @@ -20,7 +20,7 @@
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.6 $
  + * @version$Revision: 1.7 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
   {
  @@ -69,7 +69,7 @@
   */
  public void startService() throws Exception
  {
  -
  +  super.startService();
 serverIL = new RMIServerIL(lookupJMSServer());
 bindJNDIReferences();
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2002-01-02 Thread Jason Dillon

  User: user57  
  Date: 02/01/02 20:00:53

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
   o migrated all components to a new JMX domain name model.  jboss.system
 is now where to core/spine components live.  moved all components that
 were in JBOSS-SYSTEM that did not move into a jboss.* domain into
 jboss (where the server is now registered).  The point was to limit the
 members of jboss.system to core bits only.
   o Created org.jboss.system.Server, which does the work of initialization
 that org.jboss.Main used to do.  Main now only parses the command line,
 sets up basic legecy properties and creates a Server instance.
   o Moved functionality of Shutdown (component not cl tool) into Server (
 which is bound as jboss.system:service=Server)
   o Moved more Runtime access from Info into Server.  Exposed memory info
 as attributes.
   o Logging a WARN everywhere that uses System.getProperty("jboss.system.home")
 as that should go away soon/eventually.
   o Initialized the invokerMap in the harmi impl to avoid NPE
   o Made getopt.jar a member of the lib/* dir instead of adding it to the
 run.jar and shutdown.jars each time.
   o Minor cosmetic changes along the way.
  
  Revision  ChangesPath
  1.8   +2 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RMIServerILService.java   2001/11/10 21:38:04 1.7
  +++ RMIServerILService.java   2002/01/03 04:00:53 1.8
  @@ -4,6 +4,7 @@
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
  +
   package org.jboss.mq.il.rmi;
   
   import java.util.Properties;
  @@ -20,7 +21,7 @@
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.7 $
  + * @version$Revision: 1.8 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
   {
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/rmi RMIServerILService.java

2002-02-01 Thread Christian Riege

  User: lqd 
  Date: 02/02/01 19:54:20

  Modified:src/main/org/jboss/mq/il/rmi RMIServerILService.java
  Log:
  remove wildcard import statements
  
  Revision  ChangesPath
  1.9   +1 -2  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java
  
  Index: RMIServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILService.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- RMIServerILService.java   2002/01/03 04:00:53 1.8
  +++ RMIServerILService.java   2002/02/02 03:54:20 1.9
  @@ -8,7 +8,6 @@
   package org.jboss.mq.il.rmi;
   
   import java.util.Properties;
  -import javax.management.*;
   import javax.naming.InitialContext;
   import org.jboss.mq.GenericConnectionFactory;
   
  @@ -21,7 +20,7 @@
*  Implements the ServerILJMXService which is used to manage the JVM IL.
*
* @author Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.8 $
  + * @version$Revision: 1.9 $
*/
   public class RMIServerILService extends org.jboss.mq.il.ServerILJMXService 
implements RMIServerILServiceMBean
   {
  
  
  

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