[JBoss-dev] [ jboss-Feature Requests-454107 ] Improvement in JDBC connection pooling

2001-08-22 Thread noreply

Feature Requests item #454107, was opened at 2001-08-22 00:01
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376688aid=454107group_id=22866

Category: None
Group: None
Status: Open
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Improvement in JDBC connection pooling

Initial Comment:
Jboss makes pool of JDBC connections(Database server 
is started first) when JBoss is started. After JBoss 
is started , If Database is restarted then JBoss 
invalidates the pool of JDBC connections , hence EJB 
cannot connect to Database. JBoss hangs over there and 
it neither throws any Exception. 
   I suggest that a batch process should monitor 
Database and If Database is started then it should 
invalidate previous pool and make new pool of 
connections.

--

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376688aid=454107group_id=22866

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



[JBoss-dev] [ jboss-Bugs-454108 ] java.lang.UnsatisfiedLinkError

2001-08-22 Thread noreply

Bugs item #454108, was opened at 2001-08-22 00:01
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376685aid=454108group_id=22866

Category: JBossServer
Group: v2.2.2 (stable)
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: java.lang.UnsatisfiedLinkError

Initial Comment:
I have tried to install JBoss AppServer according to 
the instructions.
I had installed JDK1.2.2 previously. But as per the 
requirement I installed JDK1.3.0.
I have properly configured the paths and classpaths.
JBOSS_DIST=...
JAVA_HOME=...
and ANT_HOME=...
When i tried to run the server using the batch 
file run.bat or run_with_tomcat.bat, it gave me 
the error that InvokerHandeler class not found.

I realised that it was not getting the classpath 
properly inspite of providing it.
Then I explicitly added the rt.jar in the 
JBOSS_CLASSPATH.

Instead other error creeped up. It was 
java.lang.UnsatisfiedLinkError: defineClass0

Can any body throw some light in htis feild. Please 
help me.

Shankar Mandal
ProcessBiz Technologies
[EMAIL PROTECTED]

--

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376685aid=454108group_id=22866

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



[JBoss-dev] How about a JBoss-2.6 release?

2001-08-22 Thread Jason Dillon

Today I finally was able to stabalize my app with the HEAD branch (which I
have been trying todo for the past few months).   I still have to do much QA
before I am willing to take this to production.  I expect a few minor snags,
but nothing major *fingers crossed*.

Any ways, I think that with all of the JBossMQ, entity locking  logging
changes that it might be the most stable JBoss ever (well at least more
stable than the version I have used).

I am not sure what you are planning for a release schedule.  I remember
something a while back about some number of months, but I can not recall
what they were at the moment.

How about a 3-6 month schedule, which moves based on feature completion,
would work out the best.  But that is just a wild guess backed by a
little preference.

On an unrelated note, I should have time this week to improve the build
system docs as win32 build scripts.  I would still like to create a
http://jboss.org/developers/ area to drop all this (plus more) into.
Probably move cvs stuff there too.

Is this going to be ok?

Hopefully I can also get to the manual  testsuite modules too, so that
everything is integrated.

--jason


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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Dain Sundstrom

What do you mean by selector parser?

I could adapt the parser that is used for EJB-QL to parse.  It is a generic
non-deterministic recusive descent parser, so it is not fast for complicated
grammers.  This is only an issue if you want to parse on the fly.

-dain

- Original Message -
From: Jason Dillon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 7:46 PM
Subject: [JBoss-dev] jbossmq selector parser grammer source


 Where is the source for the selector parser?  It looks like it is not
 parsing the literals true and false, it only looks for TRUE and
 FALSE.

 I am contemplating modifiying parser.java int yylex() under the file://CST
group
 group, but I would rather modify the grammer source and regenerate the
 parser.

 Perhaps we could switch this to javacc and let ant build the parser as
part
 of the build.

 It looks like there might be a problem with Operator.equal() too, which I
am
 looking into now...  Yup, sure is.  Operator.equal() does not properly
 handle Boolean types.

 I have just fixed (and verified) both of these problems.  Should I commit
 them?  Silly me, of course I should commit them... but where is jms.y?
When
 ever the parser is regenerated from this it will blow away these changes.

 Can someone change this to javacc, check in the source grammer and setup
the
 build system to automatically generate this?

 --jason


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



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



Re: [JBoss-dev] SQL function mapping

2001-08-22 Thread Dain Sundstrom

Thanks, will commit change as soon as sourcefouge cvs is back on line.

-dain
- Original Message -
From: Marco Ladermann [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 3:33 AM
Subject: Re: [JBoss-dev] SQL function mapping


 On Monday, 20. August 2001 19:20, Dain Sundstrom wrote:
  Thanks, checked it in.
 
  -dain
 

 snip

   It is simply two functions
  
   position(?2 in substring(?1 from ?3))+?3
  

 Sorry for complaining so late, but it is not as simple as this.

 position( 'findme' , 'wheretolookfor', 3) should be 0 and not 3  or am I
 wrong?

 Therefore use this for PostgreSQL:

 coalesce( nullif( position( ?1 in substring( ?1 from ?3 ) ), ?3 ) + ?3,
0 )

 Marco

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



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



Re: [JBoss-dev] Extra ;

2001-08-22 Thread Dain Sundstrom

Fixed, will commit change as soon as sourcefouge cvs is back on line.

Does jikes work compile jboss server now?

-dain

- Original Message -
From: Dave Smith [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 6:44 AM
Subject: [JBoss-dev] Extra ;


 Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java line
 66 you have an extra ';' terminating the return statement. It is causing
 jikes to complain.

 Found 1 semantic error compiling

/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.jav
a:
  [javac]
  [javac] 66. return
 (Assembly)completeMatches.iterator().next();;
  [javac]
  ^
  [javac] *** Error: This statement is unreachable.

 Could you take it out? Thanks ..


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



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



Re: [JBoss-dev] manual build

2001-08-22 Thread Tobias Frech

Hi!
May I ask that this discussion is transfered to jboss-docs ? Or if you
think this would be this inappropriate, please at least post a short
change notice or status description to jboss-docs.

Thanks from the docu people :-)

Ciao,
Tobias

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



[JBoss-dev] JBoss and Catalina

2001-08-22 Thread Rickard Öberg

Hey

I have managed to get JBoss working with Catalina. The Catalina code is
terribly hard to read though, since it uses its own SAX-handling
framework, which doesn't work too well. The formatting is not very nice
either. Are the authors of that code still here (Roberto?)?

Otherwise I'd suggest a refactoring of that code somehow.

Anyway, I do have JBoss 2.4 working with Tomcat 4.0b7. Should this be
bundled up somehow as a binary? I think more people will be interested
in it.

regards,
  Rickard

-- 
Rickard Öberg
Software Development Specialist
xlurc - Xpedio Linköping Ubiquitous Research Center
Author of Mastering RMI
Email: [EMAIL PROTECTED]

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



Re: [JBoss-dev] JBoss and Catalina

2001-08-22 Thread Nick Betteridge

Sounds good - I'm certainly interested.

Did you manage to set up JAAS/JNDI etc to work with jboss?

Cheers
Nick

Rickard Öberg wrote:
 
 Hey
 
 I have managed to get JBoss working with Catalina. The Catalina code is
 terribly hard to read though, since it uses its own SAX-handling
 framework, which doesn't work too well. The formatting is not very nice
 either. Are the authors of that code still here (Roberto?)?
 
 Otherwise I'd suggest a refactoring of that code somehow.
 
 Anyway, I do have JBoss 2.4 working with Tomcat 4.0b7. Should this be
 bundled up somehow as a binary? I think more people will be interested
 in it.
 
 regards,
   Rickard
 
 --
 Rickard Öberg
 Software Development Specialist
 xlurc - Xpedio Linköping Ubiquitous Research Center
 Author of Mastering RMI
 Email: [EMAIL PROTECTED]
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Hiram Chirino


Can you send it to me???  I'll check it in.

Regards,
Hiram

From: Juha-P Lindfors [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)


   I have just fixed (and verified) both of these problems.  Should I 
commit
   them?  Silly me, of course I should commit them... but where is jms.y?

I have the jms.y as part of the old spyderMQ module in
src/java/org/spydermq/selectors.

No idea where it is in the newer modules, or if it was ever transferred.
But check the SpyderMQ in CVS.

-- Juha


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



Re: [JBoss-dev] JBoss and Catalina

2001-08-22 Thread Rickard Öberg

Nick Betteridge wrote:
 
 Sounds good - I'm certainly interested.
 
 Did you manage to set up JAAS/JNDI etc to work with jboss?

Nope, just basic deployment. That was frustrating enough. One step at a
time.

/R

-- 
Rickard Öberg
Software Development Specialist
xlurc - Xpedio Linköping Ubiquitous Research Center
Author of Mastering RMI
Email: [EMAIL PROTECTED]

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



[JBoss-dev] Sealing Violation in Tomcat servlet

2001-08-22 Thread urswagner


Hello

What's wrong here?
If I add the line
 Context context = new InitialContext();
in the servlet's post method I get a SecurityException Sealing violation
of the URLClassLoader.

How can I solve this problem?

Thanks

Urs




E-Mail for everyone! http://www.bluemail.ch/ powered by Bluewin!


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



[JBoss-dev] CVS update: CVSROOT modules

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 07:50:30

  Modified:.modules
  Log:
  Added some 3rdparty modules to the jboss-mq project
  
  Revision  ChangesPath
  1.49  +3 -0  CVSROOT/modules
  
  Index: modules
  ===
  RCS file: /cvsroot/jboss/CVSROOT/modules,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- modules   2001/08/17 01:35:35 1.48
  +++ modules   2001/08/22 14:50:30 1.49
  @@ -155,6 +155,8 @@
   _jbossmq_tools   -a \
tools/apache \
tools/planet57 \
  + tools/dreambean \
  + tools/jedit \
tools/sun
   
   _jbossmq_thirdparty  -a \
  @@ -164,6 +166,7 @@
thirdparty/hsql \
thirdparty/junit \
thirdparty/oswego \
  + thirdparty/javagroups \
thirdparty/sun
   
   jbossmq-modules  -a \
  
  
  

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



[JBoss-dev] What happened to the nightly build?

2001-08-22 Thread Bill Burke



Is it ever coming 
back?

Plus, I was 
thinking, wouldn't it be nice to tag CVS on a successful build and test 
run?

Bill


[JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread Scott M Stark

Every 3-4 months is the release cycle. It will be 6-8 weeks before the next
release branch is made so wether this is 2.6 or 3.0 depends on what gets
put in.

- Original Message -
From: Jason Dillon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; marc fleury [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 12:20 AM
Subject: How about a JBoss-2.6 release?


 Today I finally was able to stabalize my app with the HEAD branch (which I
 have been trying todo for the past few months).   I still have to do much
QA
 before I am willing to take this to production.  I expect a few minor
snags,
 but nothing major *fingers crossed*.

 Any ways, I think that with all of the JBossMQ, entity locking  logging
 changes that it might be the most stable JBoss ever (well at least more
 stable than the version I have used).

 I am not sure what you are planning for a release schedule.  I remember
 something a while back about some number of months, but I can not recall
 what they were at the moment.

 How about a 3-6 month schedule, which moves based on feature completion,
 would work out the best.  But that is just a wild guess backed by a
 little preference.

 On an unrelated note, I should have time this week to improve the build
 system docs as win32 build scripts.  I would still like to create a
 http://jboss.org/developers/ area to drop all this (plus more) into.
 Probably move cvs stuff there too.

 Is this going to be ok?

 Hopefully I can also get to the manual  testsuite modules too, so that
 everything is integrated.

 --jason




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



[JBoss-dev] CVS update: manual/src/docs howtopetstore.xml

2001-08-22 Thread Tom Coleman

  User: tmcsys  
  Date: 01/08/22 08:10:57

  Modified:src/docs howtopetstore.xml
  Log:
  Update Pet Store manual documentation:
  
JBoss 2.4 BETA
Pet Store 1.1.2
  
  Revision  ChangesPath
  1.2   +18 -59manual/src/docs/howtopetstore.xml
  
  Index: howtopetstore.xml
  ===
  RCS file: /cvsroot/jboss/manual/src/docs/howtopetstore.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- howtopetstore.xml 2001/04/27 08:46:30 1.1
  +++ howtopetstore.xml 2001/08/22 15:10:57 1.2
  @@ -1,6 +1,6 @@
   ?xml version = 1.0 encoding = UTF-8?
   section id=howtopetstore
  - titleDeploying the Pet Store 1.1.1 Demo in JBoss/title
  + titleDeploying the Pet Store 1.1.2 Demo in JBoss/title
paraAuthor:author
firstnameTom/firstname
surnameColeman/surname
  @@ -12,35 +12,29 @@
titleIntroduction/title
paraThe Pet Store sample application (demo) is a relatively robust, 
well-documented demonstration of J2EE technology and concepts. It implements MVC 
(Model-View-Controller) architecture./para
paraThe Pet Store demo can allow developers to gain familiarity with 
J2EE concepts including application portability, a key J2EE design objective./para
  - paraThe Pet Store has been successfully deployed in JBoss PRE 2.1 
configured to use Embedded Tomcat and Tomcat 3.2.1/Apache using Sun 1.3 jdk on Linux. 
The steps provided below apply to JBoss PRE 2.1 since 21st January 2001./para
  + paraThe Pet Store has been successfully deployed in JBoss 2.4 BETA 
configured to use Embedded Tomcat 3.2.2 using Sun 1.3 jdk on RH Linux 6.2. The steps 
provided below apply to JBoss 2.4 BETA Rel_2_4_0_23./para
/section
section
titleOutstanding Deployment Issues/title
paraPlease post your experiences with deploying the Pet Store in 
JBoss to the jboss-user mailing list./para
section
  - titleThe security adapter/title
  - paraThe Pet Store implements non-portable security code that 
works only with the J2EE RI (Reference Implementation) server. /para
  - paraThe non-portable code is contained in the 
J2eeSecurityAdapter class. The JBoss Pet Store patch replaces this class with a 
JBossSecurityAdapter class that implements the SecurityAdapter interface./para
  - paraThe steps below change the value for 
securityAdapterClassName in the Pet Store application to use JBossSecurityAdapter. 
/para
  - paraSee the /docs/security.html page in the Pet Store demo 
for more information. /para
  - /section
  - section
  - titleAdding new users/title
  - paraIn order to add new users, you have to configure Tomcat 
to use a JDBCRealm. See below for details./para
  - /section
  - section
titleThe Admin Client/title
  - paraWe still need JBoss specific Deployment descriptors for 
the Admin client application. Please post them to the mailing list if you have 
them./para
  + paraThe Admin application apparently needs some work on the 
deployment descriptors.  Please post your experences with the Admin application to the 
mailing list./para
  + titleJetty Deployment/title
  + paraThe Pet Store should deploy using Jetty.  Please post 
your experences with deploying the Pet Store using Jetty to the mailing list./para
  + titlePet Store Security/title
  + paraThe current release of the Pet Store handles security at 
the application level.  It does require that you configure JBoss or Tomcat security 
services./para
/section
/section
section
  - titleOriginal contributers/title
  + titleContributors:/title
itemizedlist
listitemparaMike Lueders, Richard Gyger - Focus 
Technologies/para/listitem
listitemparaScott Stark/para/listitem
listitemparaAnatoly Ackerman/para/listitem
listitemparaTom Coleman/para/listitem
listitemparaAaron Mulder/para/listitem
  + listitemparaCuong Tran/para/listitem
/itemizedlist
/section
section
  @@ -48,16 +42,15 @@
orderedlist
listitem
paraDownload the Pet Store/para
  - paraYou can get the source from ulink 
url=http://java.sun.com/j2ee/download.html#blueprints;Sun's J2EE Download 
Page/ulink. It's in the J2EE Blueprints package. Download the 1.1.1 version. 
Unpack it anywhere. 

[JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 08:15:47

  Modified:jbossmq  build.xml
  Log:
  These changes should allow jboss-mq to build ok again.
  
  Revision  ChangesPath
  1.6   +2 -2  build/jbossmq/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/build/jbossmq/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 2001/08/18 04:55:09 1.5
  +++ build.xml 2001/08/22 15:15:47 1.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.5 2001/08/18 04:55:09 user57 Exp $ --
  +!-- $Id: build.xml,v 1.6 2001/08/22 15:15:47 chirino Exp $ --
   
   project default=main basedir=..
   
  @@ -74,7 +74,7 @@
|  thirdparty.root  - Where to thirdparty libraries live
   --
 property name=project.output value=${project.config}/output/
  -  property name=project.release value=${project.output}/
  +  property name=project.release value=${project.config}/build/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: build/jbossmq/etc/conf/default jboss.jcml

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 08:15:47

  Modified:jbossmq/etc/conf/default jboss.jcml
  Log:
  These changes should allow jboss-mq to build ok again.
  
  Revision  ChangesPath
  1.3   +101 -38   build/jbossmq/etc/conf/default/jboss.jcml
  
  Index: jboss.jcml
  ===
  RCS file: /cvsroot/jboss/build/jbossmq/etc/conf/default/jboss.jcml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jboss.jcml2001/08/12 15:51:35 1.2
  +++ jboss.jcml2001/08/22 15:15:47 1.3
  @@ -1,89 +1,152 @@
   ?xml version=1.0 encoding=UTF-8?
  -!-- This is where you can add and configure your MBeans
  -  ATTENTION: The order of the listing here is the same order as
  -the MBeans are loaded. Therefore if a MBean depends on another
  -MBean to be loaded and started it has to be listed after all
  -the MBeans it depends on.
  ---
  +!DOCTYPE server
   
  +!-- = --
  +!--   --
  +!--  JBoss Server Configuration   --
  +!--   --
  +!-- = --
  +
  +!-- $Id: jboss.jcml,v 1.3 2001/08/22 15:15:47 chirino Exp $ --
  +
  +!-- 
  +   |  This is where you can add and configure your MBeans.
  +   |
  +   |  *ATTENTION*
  +   |
  +   |  The order of the listing here is the same order as
  +   |  the MBeans are loaded. Therefore if a MBean depends on another
  +   |  MBean to be loaded and started it has to be listed after all
  +   |  the MBeans it depends on.
  +  --
  +
   server
  +
 !--  --
  -  !-- Classloading --
  +  !-- Class Loading--
 !--  --
  -  mbean code=org.jboss.web.WebService name=DefaultDomain:service=Webserver
  +
  +  mbean code=org.jboss.web.WebService
  +  name=DefaultDomain:service=Webserver
   attribute name=Port8083/attribute
 /mbean
   
  +
 !--  --
 !-- JNDI --
 !--  --
  -  mbean code=org.jboss.naming.NamingService name=DefaultDomain:service=Naming
  +
  +  mbean code=org.jboss.naming.NamingService
  +  name=DefaultDomain:service=Naming
   attribute name=Port1099/attribute
 /mbean
  +  mbean code=org.jboss.naming.JNDIView 
  +  name=DefaultDomain:service=JNDIView/
   
 !--  --
 !-- JBossMQ  --
 !--  --
  -  mbean code=org.jboss.mq.server.JBossMQService name=JBossMQ:service=Server/
  +
  +  mbean code=org.jboss.mq.server.JBossMQService
  +  name=JBossMQ:service=Server/
   
  -  !-- The StateManager is used to keep JMS perisitent state data. --
  -  !-- For example: what durable subscriptions are active. --
  -  mbean code=org.jboss.mq.server.StateManager 
name=JBossMQ:service=StateManager
  - attribute name=StateFilejbossmq-state.xml/attribute
  +  !-- 
  + | The StateManager is used to keep JMS perisitent state data.
  + | For example: what durable subscriptions are active. 
  +   --
  +  mbean code=org.jboss.mq.server.StateManager 
  +  name=JBossMQ:service=StateManager
  +attribute name=StateFilejbossmq-state.xml/attribute
 /mbean
   
 !-- The PersistenceManager is used to store messages to disk. --
  -  mbean code=org.jboss.mq.pm.rollinglogged.PersistenceManager 
name=JBossMQ:service=PersistenceManager
  +  mbean code=org.jboss.mq.pm.file.PersistenceManager
  +  name=JBossMQ:service=PersistenceManager
   attribute name=DataDirectory../../db/jbossmq//attribute
 /mbean
   
  -  !-- InvocationLayers are the different transport methods that can be used to 
access the server --
  -  mbean code=org.jboss.mq.il.jvm.JVMServerILService 
name=JBossMQ:service=InvocationLayer,type=JVM
  +  !-- 
  + | InvocationLayers are the different transport methods that can 
  + | be used to access the server.
  +   --
  +  mbean code=org.jboss.mq.il.jvm.JVMServerILService
  +  name=JBossMQ:service=InvocationLayer,type=JVM
   attribute name=ConnectionFactoryJNDIRefjava:/ConnectionFactory/attribute
   attribute 
name=XAConnectionFactoryJNDIRefjava:/XAConnectionFactory/attribute
 /mbean
   
  -  mbean 

[JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins/cmp/ejbql Parser.java

2001-08-22 Thread Dain Sundstrom

  User: dsundstrom
  Date: 01/08/22 09:12:46

  Modified:src/main/org/jboss/ejb/plugins/cmp/ejbql Parser.java
  Log:
  Removed double ';'to fix jikes compile error.
  
  Revision  ChangesPath
  1.3   +1 -1  jboss/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java
  
  Index: Parser.java
  ===
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Parser.java   2001/08/18 15:56:43 1.2
  +++ Parser.java   2001/08/22 16:12:45 1.3
  @@ -63,7 +63,7 @@
if(completeMatches.size()  1) {
throw new IllegalStateException(Multiple assemblies matched: 
+set.size());
}
  - return (Assembly)completeMatches.iterator().next();;
  + return (Assembly)completeMatches.iterator().next();
}

public void setAssembler(Assembler assembler) {
  
  
  

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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Juha-P Lindfors


It's here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/

this is the boolean equal check:

//CST group
if (s.equals(TRUE)) {
yylval = new parserval((Object)Boolean.TRUE);
return CST;
}
if (s.equals(FALSE)) {
yylval = new parserval((Object)Boolean.FALSE);
return CST;
}

-- Juha



On Wed, 22 Aug 2001, Hiram Chirino wrote:


 Can you send it to me???  I'll check it in.

 Regards,
 Hiram

 From: Juha-P Lindfors [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
 Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)
 
 
I have just fixed (and verified) both of these problems.  Should I
 commit
them?  Silly me, of course I should commit them... but where is jms.y?
 
 I have the jms.y as part of the old spyderMQ module in
 src/java/org/spydermq/selectors.
 
 No idea where it is in the newer modules, or if it was ever transferred.
 But check the SpyderMQ in CVS.
 
 -- Juha
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



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



RE: [JBoss-dev] JBoss and Catalina

2001-08-22 Thread Roberto Leong

Hi


 I have managed to get JBoss working with Catalina. The 
 Catalina code is
 terribly hard to read though, since it uses its own SAX-handling
 framework, which doesn't work too well. The formatting is not 
 very nice
 either. Are the authors of that code still here (Roberto?)?

I got it from an article from javaworld, it seemed ok at the time, the sax
event handling that the guys at apache are using in tomcat is way worst
believe me. But i confess i wasn't entirely happy with mine either


 Otherwise I'd suggest a refactoring of that code somehow.

if you have a different approach I'd be willing to try it out

Roberto

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



RE: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread marc fleury

Jason,

I totally agree with my partner :)

2.4 is going to be the stable one but 3.0 is 2.4 with new features (IIOP,
qualityMQ, CMP, cluster, Microkernel, http based install) etc etc... making
a 2.6 version will not bring much if we put all these features.  2.6 will
need to be a maintenance release of 2.4 when 3.0 is out.

We want a very stable version and that means no new features in there, 2.4
is the word.

3.0 is coming out soon, probably by the end of the week/month.

marcf

|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Scott
|M Stark
|Sent: Wednesday, August 22, 2001 11:07 AM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-dev] Re: How about a JBoss-2.6 release?
|
|
|Every 3-4 months is the release cycle. It will be 6-8 weeks before the next
|release branch is made so wether this is 2.6 or 3.0 depends on what gets
|put in.
|
|- Original Message -
|From: Jason Dillon [EMAIL PROTECTED]
|To: [EMAIL PROTECTED]; marc fleury [EMAIL PROTECTED]
|Cc: [EMAIL PROTECTED]
|Sent: Wednesday, August 22, 2001 12:20 AM
|Subject: How about a JBoss-2.6 release?
|
|
| Today I finally was able to stabalize my app with the HEAD
|branch (which I
| have been trying todo for the past few months).   I still have to do much
|QA
| before I am willing to take this to production.  I expect a few minor
|snags,
| but nothing major *fingers crossed*.
|
| Any ways, I think that with all of the JBossMQ, entity locking  logging
| changes that it might be the most stable JBoss ever (well at least more
| stable than the version I have used).
|
| I am not sure what you are planning for a release schedule.  I remember
| something a while back about some number of months, but I can not recall
| what they were at the moment.
|
| How about a 3-6 month schedule, which moves based on feature completion,
| would work out the best.  But that is just a wild guess backed by a
| little preference.
|
| On an unrelated note, I should have time this week to improve the build
| system docs as win32 build scripts.  I would still like to create a
| http://jboss.org/developers/ area to drop all this (plus more) into.
| Probably move cvs stuff there too.
|
| Is this going to be ok?
|
| Hopefully I can also get to the manual  testsuite modules too, so that
| everything is integrated.
|
| --jason
|
|
|
|
|___
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development


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



Re: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread Rickard Öberg

marc fleury wrote:
 2.4 is going to be the stable one but 3.0 is 2.4 with new features (IIOP,
 qualityMQ, CMP, cluster, Microkernel, http based install) 

Does this include what we loosely called .sar deployment (i.e. Jar file
with MBeans and jboss.cfml/services.xml in it)? That would be so cool.
:-)

BTW, in my current project we have dropped EJB's in favor of MBeans +
Jini. So, the EAR hot deployment is not so interesting, but .sar hot
deployment would be :-)

/Rickard

-- 
Rickard Öberg
Software Development Specialist
xlurc - Xpedio Linköping Ubiquitous Research Center
Author of Mastering RMI
Email: [EMAIL PROTECTED]

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



RE: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread marc fleury

|Does this include what we loosely called .sar deployment (i.e. Jar file
|with MBeans and jboss.cfml/services.xml in it)? That would be so cool.
|:-)

yep.

You took the infrastructure so far with the MLet but making the stuff really
hot deploy is really a pain, the MLets don't work.  I now understand why you
took the december argument on our research so personally, you had in fact
ran into these problems during the JMX design.

You should have corrected me when I said we would not use this EVER in our
codebase ;-) it's the building block.  I should have known, research is
never intellectual curiosity but almost always finds implementations in
places we expect it least.

You will see, I will try to commit very very soon (I know I have been saying
so for the past 2 weeks) but the MLet stuff is replaced by a
ServiceClassLoader tightly coupled with the MBean/url approach... I think
you will like it, if you understood Dr Jung's work (did you?)

Re Rabbit Hole, I am now running out of time and need to commit. What I am
going to commit is basically the microkernel approach to the JMX stuff, a
working URL based deployment (real http farm installs) and the sar hotdeploy
approach to the server.  SPINE (GPA) + SERVICES = JBOSS.

A simple work.  I take what you had pionneered to its real final form and
its logical conclusion.  The microkernel stuff is real and solid imho, even
if it doesn't look like much, it is, I like to believe, ground breaking
work.

marcf


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



RE: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread marc fleury

versions are misleading.

RH is the ongoing cvs HEAD effort, today called 2.5, the CMP stuff is almost
finished by Dain, the MQ stuff has really matured to a point where it is
production quality thanks to David and hiram, the iiop stuff is getting
there thanks to ole and francisco, the http stack is going to be jetty
integrated at the core thanks to Julian (soon), the clustering Bill/Sacha,
microkernel-jmx-sar with Scott/me/juha (working on book), new build  etc
etc...

so 3.0 is not something we bring out of nowhere after 3 month of tower
development it is already happening in the commits under your noses.  3.0
will be all these features STABILIZED, so the version that is coming out
soon is the BETA, in fact it will be an ALPHA.

clear?

marcf


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|Hunter Hillegas
|Sent: Wednesday, August 22, 2001 1:42 PM
|To: JBoss Dev
|Subject: Re: [JBoss-dev] Re: How about a JBoss-2.6 release?
|
|
|Do you mean beta versions or a production quality release?
|
|Either way, I had no idea it was that far along! That's great!
|
|Hunter
|
| From: marc fleury [EMAIL PROTECTED]
| Reply-To: [EMAIL PROTECTED]
| Date: Wed, 22 Aug 2001 13:15:40 -0400
| To: [EMAIL PROTECTED]
| Subject: RE: [JBoss-dev] Re: How about a JBoss-2.6 release?
|
| 3.0 is coming out soon, probably by the end of the week/month.
|
|
|___
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development


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



Re: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread Hunter Hillegas

Do you mean beta versions or a production quality release?

Either way, I had no idea it was that far along! That's great!

Hunter

 From: marc fleury [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 Date: Wed, 22 Aug 2001 13:15:40 -0400
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-dev] Re: How about a JBoss-2.6 release?
 
 3.0 is coming out soon, probably by the end of the week/month.


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



Re: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread Rickard Öberg

marc fleury wrote:
 
 |Does this include what we loosely called .sar deployment (i.e. Jar file
 |with MBeans and jboss.cfml/services.xml in it)? That would be so cool.
 |:-)
 
 yep.

If you do, please look at the Service provider API in the JAR
specification:
http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Service%20Provider

Not quite sure how to use it, but something like calling the file
META-INF/services.xml would probably be a good idea.

 You took the infrastructure so far with the MLet but making the stuff really
 hot deploy is really a pain, the MLets don't work.  I now understand why you
 took the december argument on our research so personally, you had in fact
 ran into these problems during the JMX design.
 
 You should have corrected me when I said we would not use this EVER in our
 codebase ;-) it's the building block.  I should have known, research is
 never intellectual curiosity but almost always finds implementations in
 places we expect it least.

Ah well, it's on track now at least :-)

 You will see, I will try to commit very very soon (I know I have been saying
 so for the past 2 weeks) but the MLet stuff is replaced by a
 ServiceClassLoader tightly coupled with the MBean/url approach... I think
 you will like it, if you understood Dr Jung's work (did you?)

Sounds very very nice :-)

 A simple work.  I take what you had pionneered to its real final form and
 its logical conclusion.  The microkernel stuff is real and solid imho, even
 if it doesn't look like much, it is, I like to believe, ground breaking
 work.

Yes, agree.

Now, couple that with a Jini-based deploy interface and you have
something really interesting.

/Rickard

-- 
Rickard Öberg
Software Development Specialist
xlurc - Xpedio Linköping Ubiquitous Research Center
Author of Mastering RMI
Email: [EMAIL PROTECTED]

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



RE: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread marc fleury

|If you do, please look at the Service provider API in the JAR
|specification:
|http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Service%20Provider

I will look at this,

|Not quite sure how to use it, but something like calling the file
|META-INF/services.xml would probably be a good idea.

this is how i call it already.

|Now, couple that with a Jini-based deploy interface and you have
|something really interesting.

what do you mean, expand

marcf


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



[JBoss-dev] [ jboss-Feature Requests-454315 ] EJB and InitialContext

2001-08-22 Thread noreply

Feature Requests item #454315, was opened at 2001-08-22 12:14
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376688aid=454315group_id=22866

Category: None
Group: None
Status: Open
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: EJB and InitialContext

Initial Comment:
J2EE specification recomends that EJB would be placed 
under java:env/ejb/xxx in JBoss case you place the EJB 
by default to /xxx. Now I realize thet J2EE spec only 
recomends it and does not make it required, but I 
think it would make for easier porting of applications 
from other server to JBoss.

-- [EMAIL PROTECTED]

--

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detailatid=376688aid=454315group_id=22866

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



Re: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread Rickard Öberg

marc fleury wrote:
 |Now, couple that with a Jini-based deploy interface and you have
 |something really interesting.
 
 what do you mean, expand

Well, it's how the actual deployment step is done, i.e. getting the JAR
to the server. With Jini there are two ways:
1. Use pull: each server has a Jini service that listens for available
JAR's from a central repository, which is found form the LUS (Jini
LookUpService, similar to JNDI but more dynamic). When a JAR is added,
it is downloaded and deployed.
2. Use push: each server has a Jini service that one can call
deploy(URL) on. The deployer tool can find the servers by looking them
up in the LUS.

1. is good because you just say here are the JAR's to be used for this
cluster, i.e. put them in the central repository and let the servers
find them by looking them up. Whenever you start a new server it will
load them automatically, i.e. you don't have to deploy them manually.

2. is good because you get immediate response whether the deployment
succeeded or failed, and you have more control over when the actual
deployment is done.

Both are useful, and they're not exclusive, i.e. both can be used at the
same time.

More clear?

/Rickard

-- 
Rickard Öberg
Software Development Specialist
xlurc - Xpedio Linköping Ubiquitous Research Center
Author of Mastering RMI
Email: [EMAIL PROTECTED]

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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon

On Wed, 22 Aug 2001, Dain Sundstrom wrote:

 What do you mean by selector parser?

There is a parser.java which looks to be generated from a jms.y grammer
which is used to parse JMS message selectors.  The generated parser source
is checked in but not the grammer.

--jason

 I could adapt the parser that is used for EJB-QL to parse.  It is a generic
 non-deterministic recusive descent parser, so it is not fast for complicated
 grammers.  This is only an issue if you want to parse on the fly.

 -dain

 - Original Message -
 From: Jason Dillon [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 21, 2001 7:46 PM
 Subject: [JBoss-dev] jbossmq selector parser grammer source


  Where is the source for the selector parser?  It looks like it is not
  parsing the literals true and false, it only looks for TRUE and
  FALSE.
 
  I am contemplating modifiying parser.java int yylex() under the file://CST
 group
  group, but I would rather modify the grammer source and regenerate the
  parser.
 
  Perhaps we could switch this to javacc and let ant build the parser as
 part
  of the build.
 
  It looks like there might be a problem with Operator.equal() too, which I
 am
  looking into now...  Yup, sure is.  Operator.equal() does not properly
  handle Boolean types.
 
  I have just fixed (and verified) both of these problems.  Should I commit
  them?  Silly me, of course I should commit them... but where is jms.y?
 When
  ever the parser is regenerated from this it will blow away these changes.
 
  Can someone change this to javacc, check in the source grammer and setup
 the
  build system to automatically generate this?
 
  --jason
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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



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



Re: [JBoss-dev] Extra ;

2001-08-22 Thread Jason Dillon

I think it still fails to compile some org.jboss.web.* stuff properly.

--jason


On Wed, 22 Aug 2001, Dain Sundstrom wrote:

 Fixed, will commit change as soon as sourcefouge cvs is back on line.

 Does jikes work compile jboss server now?

 -dain

 - Original Message -
 From: Dave Smith [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 21, 2001 6:44 AM
 Subject: [JBoss-dev] Extra ;


  Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java line
  66 you have an extra ';' terminating the return statement. It is causing
  jikes to complain.
 
  Found 1 semantic error compiling
 
 /home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.jav
 a:
   [javac]
   [javac] 66. return
  (Assembly)completeMatches.iterator().next();;
   [javac]
   ^
   [javac] *** Error: This statement is unreachable.
 
  Could you take it out? Thanks ..
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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



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



Re: [JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Jason Dillon

This change will break the release-* targets, as well as the consistency
model where files are generated.  Why do you need to work off of this
directory for project.release output?

--jason


On Wed, 22 Aug 2001, Hiram Chirino wrote:

   User: chirino
   Date: 01/08/22 08:15:47

   Modified:jbossmq  build.xml
   Log:
   These changes should allow jboss-mq to build ok again.

   Revision  ChangesPath
   1.6   +2 -2  build/jbossmq/build.xml

   Index: build.xml
   ===
   RCS file: /cvsroot/jboss/build/jbossmq/build.xml,v
   retrieving revision 1.5
   retrieving revision 1.6
   diff -u -r1.5 -r1.6
   --- build.xml   2001/08/18 04:55:09 1.5
   +++ build.xml   2001/08/22 15:15:47 1.6
   @@ -10,7 +10,7 @@
!----
!-- == --

   -!-- $Id: build.xml,v 1.5 2001/08/18 04:55:09 user57 Exp $ --
   +!-- $Id: build.xml,v 1.6 2001/08/22 15:15:47 chirino Exp $ --

project default=main basedir=..

   @@ -74,7 +74,7 @@
 |  thirdparty.root  - Where to thirdparty libraries live
--
  property name=project.output value=${project.config}/output/
   -  property name=project.release value=${project.output}/
   +  property name=project.release value=${project.config}/build/
  property name=tools.root value=${project.root}/tools/
  property name=thirdparty.root value=${project.root}/thirdparty/





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



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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon

Unless s has been toUpperCase() (which I did not explictly check), then this
is not spec compliant.  It needs to check for true and false too.

Do you know what is used to generate parser.java from jms.y?

--jason


On Wed, 22 Aug 2001, Juha-P Lindfors wrote:

 It's here:
 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/

 this is the boolean equal check:

 //CST group
 if (s.equals(TRUE)) {
 yylval = new parserval((Object)Boolean.TRUE);
 return CST;
 }
 if (s.equals(FALSE)) {
 yylval = new parserval((Object)Boolean.FALSE);
 return CST;
 }

 -- Juha



 On Wed, 22 Aug 2001, Hiram Chirino wrote:

 
  Can you send it to me???  I'll check it in.
 
  Regards,
  Hiram
 
  From: Juha-P Lindfors [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
  Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)
  
  
 I have just fixed (and verified) both of these problems.  Should I
  commit
 them?  Silly me, of course I should commit them... but where is jms.y?
  
  I have the jms.y as part of the old spyderMQ module in
  src/java/org/spydermq/selectors.
  
  No idea where it is in the newer modules, or if it was ever transferred.
  But check the SpyderMQ in CVS.
  
  -- Juha
  
  
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
  _
  Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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



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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Juha-P Lindfors



On Wed, 22 Aug 2001, Jason Dillon wrote:

 Do you know what is used to generate parser.java from jms.y?

//### This file created by BYACC 1.8(/Java extension  0.92)
//### Java capabilities added 7 Jan 97, Bob Jamison
//### Updated : 27 Nov 97  -- Bob Jamison, Joe Nieten
//###   01 Jan 98  -- Bob Jamison -- fixed generic semantic
//###   01 Jun 99  -- Bob Jamison -- added Runnable support
//### Please send bug reports to [EMAIL PROTECTED]
//### static char yysccsid[] = @(#)yaccpar 1.8 (Berkeley) 01/20/90;


-- Juha


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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Hiram Chirino


I think Byacc.   Can I get a win32 ver of that???

Regards,
Hiram

From: Jason Dillon [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
Date: Wed, 22 Aug 2001 12:41:33 -0700 (PDT)

Unless s has been toUpperCase() (which I did not explictly check), then 
this
is not spec compliant.  It needs to check for true and false too.

Do you know what is used to generate parser.java from jms.y?

--jason


On Wed, 22 Aug 2001, Juha-P Lindfors wrote:

  It's here:
  
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/
 
  this is the boolean equal check:
 
  //CST group
  if (s.equals(TRUE)) {
  yylval = new parserval((Object)Boolean.TRUE);
  return CST;
  }
  if (s.equals(FALSE)) {
  yylval = new parserval((Object)Boolean.FALSE);
  return CST;
  }
 
  -- Juha
 
 
 
  On Wed, 22 Aug 2001, Hiram Chirino wrote:
 
  
   Can you send it to me???  I'll check it in.
  
   Regards,
   Hiram
  
   From: Juha-P Lindfors [EMAIL PROTECTED]
   Reply-To: [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
   Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)
   
   
  I have just fixed (and verified) both of these problems.  Should 
I
   commit
  them?  Silly me, of course I should commit them... but where is 
jms.y?
   
   I have the jms.y as part of the old spyderMQ module in
   src/java/org/spydermq/selectors.
   
   No idea where it is in the newer modules, or if it was ever 
transferred.
   But check the SpyderMQ in CVS.
   
   -- Juha
   
   
   ___
   Jboss-development mailing list
   [EMAIL PROTECTED]
   http://lists.sourceforge.net/lists/listinfo/jboss-development
  
  
   _
   Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp
  
  
   ___
   Jboss-development mailing list
   [EMAIL PROTECTED]
   http://lists.sourceforge.net/lists/listinfo/jboss-development
  
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



[JBoss-dev] CVS update: contrib/jetty/src/main/org/jboss/jetty SetupHandler.java

2001-08-22 Thread Jules Gosnell

  User: jules_gosnell
  Date: 01/08/22 13:02:34

  Modified:jetty/src/main/org/jboss/jetty SetupHandler.java
  Log:
  upgrade to latest JBoss and Jetty
  
  Revision  ChangesPath
  1.6   +2 -2  contrib/jetty/src/main/org/jboss/jetty/SetupHandler.java
  
  Index: SetupHandler.java
  ===
  RCS file: /cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/SetupHandler.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SetupHandler.java 2001/08/09 20:57:22 1.5
  +++ SetupHandler.java 2001/08/22 20:02:34 1.6
  @@ -16,7 +16,7 @@
* so that is sees the correct class loader and security realm name.
*
* @author  [EMAIL PROTECTED]
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
*/
   public class SetupHandler
 extends NullHandler
  @@ -64,7 +64,7 @@
 // does nothing - we are only interested in start()...
   
 public void
  -handle(String pathInContext, HttpRequest request, HttpResponse response)
  +handle(String pathInContext, String pathParams, HttpRequest request, 
HttpResponse response)
   throws HttpException, IOException
 {
 }
  
  
  

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



[JBoss-dev] CVS update: contrib/jetty/etc README VERSION

2001-08-22 Thread Jules Gosnell

  User: jules_gosnell
  Date: 01/08/22 13:02:34

  Modified:jetty/etc README VERSION
  Log:
  upgrade to latest JBoss and Jetty
  
  Revision  ChangesPath
  1.5   +4 -0  contrib/jetty/etc/Attic/README
  
  
  
  
  1.4   +21 -3 contrib/jetty/etc/Attic/VERSION
  
  
  
  

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



Re: [JBoss-dev] Extra ;

2001-08-22 Thread Dave Smith

As of 4:14 EST
jikes -v
Version 1.12 8/1/2000


compile-classes:
 [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
 [javac] Compiling 22 source files to 
/home/dave/jboss/cluster/output/classes
 [javac]
 [javac] Issued 1 semantic warning compiling 
/home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
 [javac]
 [javac]441. wait ();
 [javac] -
 [javac] *** Caution: Ambiguous reference to member named wait 
inherited from type java/lang/Object but also declared or inherited in 
the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit 
qualification is required.


[javac] Compiling 1 source file to 
/home/dave/jboss/plugins/jetty/output/classes
 [javac]
 [javac] Found 1 semantic error compiling 
/home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandler.java:
 [javac]
 [javac] 21. public class SetupHandler
 [javac]  --
 [javac] *** Error: The abstract method void 
handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2, 
com.mortbay.HTTP.HttpResponse $3);, inherited from type 
com/mortbay/HTTP/Handler/NullHandler, is not implemented in the 
non-abstract class org/jboss/jetty/SetupHandler. Since the type 
com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is 
possible that it just needs to be recompiled because after having 
inherited method void handle(java.lang.String $1, 
com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3); 
from an interface, the method was subsequently removed from that interface.



But the ';' problem went away ...

Jason Dillon wrote:
 I think it still fails to compile some org.jboss.web.* stuff properly.
 
 --jason
 
 
 On Wed, 22 Aug 2001, Dain Sundstrom wrote:
 
 
Fixed, will commit change as soon as sourcefouge cvs is back on line.

Does jikes work compile jboss server now?

-dain

- Original Message -
From: Dave Smith [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 21, 2001 6:44 AM
Subject: [JBoss-dev] Extra ;



Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java line
66 you have an extra ';' terminating the return statement. It is causing
jikes to complain.

Found 1 semantic error compiling


/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.jav
a:

 [javac]
 [javac] 66. return
(Assembly)completeMatches.iterator().next();;
 [javac]
 ^
 [javac] *** Error: This statement is unreachable.

Could you take it out? Thanks ..


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



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


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



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



[JBoss-dev] DTDs

2001-08-22 Thread Aaron Mulder

So I'm using 2.4.0, and even with

  mbean code=org.jboss.ejb.ContainerFactory
name=:service=ContainerFactory
attribute name=VerifyDeploymentstrue/attribute
attribute name=ValidateDTDsfalse/attribute
attribute name=MetricsEnabledfalse/attribute
attribute name=VerifierVerbosetrue/attribute
attribute name=BeanCacheJMSMonitoringEnabledfalse/attribute
  /mbean

When the (JBoss) web site is down JBoss won't deploy any beans.  I
would have thought that with the ValidateDTDs falg set to false it
wouldn't even attempt to download them, and it certainly wouldn't refuse
to deploy the beans if it couldn't download the DTDs.  Granted, I put a
DOCTYPE in my DDs, but that should be the rule not the exception.
Can we just add an EntityResolver that reads the DTDs from the
classloader or something so we can avoid this?

Aaron


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



Re: [JBoss-dev] DTDs

2001-08-22 Thread Scott M Stark

The following local entities are defined, which is not resolving:

registerDTD(-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans
1.1//EN, ejb-jar.dtd);
registerDTD(-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans
2.0//EN, ejb-jar_2_0.dtd);
registerDTD(-//Sun Microsystems, Inc.//DTD J2EE Application
1.2//EN, application_1_2.dtd);
registerDTD(-//Sun Microsystems, Inc.//DTD Connector 1.0//EN,
connector_1_0.dtd);
registerDTD(-//JBoss//DTD JAWS//EN, jaws.dtd);
registerDTD(-//JBoss//DTD JAWS 2.4//EN, jaws_2_4.dtd);
registerDTD(-//JBoss//DTD JBOSS//EN,jboss.dtd);
registerDTD(-//JBoss//DTD JBOSS 2.4//EN,jboss_2_4.dtd);

- Original Message -
From: Aaron Mulder [EMAIL PROTECTED]
To: jBoss Developer [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 1:19 PM
Subject: [JBoss-dev] DTDs


 So I'm using 2.4.0, and even with

   mbean code=org.jboss.ejb.ContainerFactory
 name=:service=ContainerFactory
 attribute name=VerifyDeploymentstrue/attribute
 attribute name=ValidateDTDsfalse/attribute
 attribute name=MetricsEnabledfalse/attribute
 attribute name=VerifierVerbosetrue/attribute
 attribute name=BeanCacheJMSMonitoringEnabledfalse/attribute
   /mbean

 When the (JBoss) web site is down JBoss won't deploy any beans.  I
 would have thought that with the ValidateDTDs falg set to false it
 wouldn't even attempt to download them, and it certainly wouldn't refuse
 to deploy the beans if it couldn't download the DTDs.  Granted, I put a
 DOCTYPE in my DDs, but that should be the rule not the exception.
 Can we just add an EntityResolver that reads the DTDs from the
 classloader or something so we can avoid this?

 Aaron


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



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



Re: [JBoss-dev] Extra ;

2001-08-22 Thread Dain Sundstrom

That's it. Why don't we fix these errors. I think both are Ambiguous class
referances and can be fixed with absolute class referances.  We should
atleast try, as jikes is like a billion times faster then javac.  Do you
want to take a shot at resolving the errors? (take a look at the jikes docs
for info on resolving the problems)

-dain

- Original Message -
From: Dave Smith [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 3:19 PM
Subject: Re: [JBoss-dev] Extra ;


 As of 4:14 EST
 jikes -v
 Version 1.12 8/1/2000


 compile-classes:
  [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
  [javac] Compiling 22 source files to
 /home/dave/jboss/cluster/output/classes
  [javac]
  [javac] Issued 1 semantic warning compiling
 /home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
  [javac]
  [javac]441. wait ();
  [javac] -
  [javac] *** Caution: Ambiguous reference to member named wait
 inherited from type java/lang/Object but also declared or inherited in
 the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit
 qualification is required.


 [javac] Compiling 1 source file to
 /home/dave/jboss/plugins/jetty/output/classes
  [javac]
  [javac] Found 1 semantic error compiling

/home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandler.java:
  [javac]
  [javac] 21. public class SetupHandler
  [javac]  --
  [javac] *** Error: The abstract method void
 handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2,
 com.mortbay.HTTP.HttpResponse $3);, inherited from type
 com/mortbay/HTTP/Handler/NullHandler, is not implemented in the
 non-abstract class org/jboss/jetty/SetupHandler. Since the type
 com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is
 possible that it just needs to be recompiled because after having
 inherited method void handle(java.lang.String $1,
 com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3);
 from an interface, the method was subsequently removed from that
interface.



 But the ';' problem went away ...

 Jason Dillon wrote:
  I think it still fails to compile some org.jboss.web.* stuff properly.
 
  --jason
 
 
  On Wed, 22 Aug 2001, Dain Sundstrom wrote:
 
 
 Fixed, will commit change as soon as sourcefouge cvs is back on line.
 
 Does jikes work compile jboss server now?
 
 -dain
 
 - Original Message -
 From: Dave Smith [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 21, 2001 6:44 AM
 Subject: [JBoss-dev] Extra ;
 
 
 
 Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java
line
 66 you have an extra ';' terminating the return statement. It is
causing
 jikes to complain.
 
 Found 1 semantic error compiling
 
 

/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.j
av
 a:
 
  [javac]
  [javac] 66. return
 (Assembly)completeMatches.iterator().next();;
  [javac]
  ^
  [javac] *** Error: This statement is unreachable.
 
 Could you take it out? Thanks ..
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 



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



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



RE: [JBoss-dev] Re: How about a JBoss-2.6 release?

2001-08-22 Thread marc fleury

|More clear?

sure thing! why don't you submit that :) you are about to lose your rw
passwd for inactivity in JBoss, you know we have the 3mo rules of
contribution for active developers.

marcf

|
|/Rickard
|
|--
|Rickard Öberg
|Software Development Specialist
|xlurc - Xpedio Linköping Ubiquitous Research Center
|Author of Mastering RMI
|Email: [EMAIL PROTECTED]
|
|___
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development


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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Juha-P Lindfors


Try http://troi.lincom-asg.com/~rjamison/byacc/
(at the bottom of the page)

it contains a win exe, with byaccj 1.1 (so slightly newer)

yacc -Jclass=parser jms.y

-- Juha


On Wed, 22 Aug 2001, Hiram Chirino wrote:


 I think Byacc.   Can I get a win32 ver of that???

 Regards,
 Hiram

 From: Jason Dillon [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
 Date: Wed, 22 Aug 2001 12:41:33 -0700 (PDT)
 
 Unless s has been toUpperCase() (which I did not explictly check), then
 this
 is not spec compliant.  It needs to check for true and false too.
 
 Do you know what is used to generate parser.java from jms.y?
 
 --jason
 
 
 On Wed, 22 Aug 2001, Juha-P Lindfors wrote:
 
   It's here:
  
 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/
  
   this is the boolean equal check:
  
   //CST group
   if (s.equals(TRUE)) {
   yylval = new parserval((Object)Boolean.TRUE);
   return CST;
   }
   if (s.equals(FALSE)) {
   yylval = new parserval((Object)Boolean.FALSE);
   return CST;
   }
  
   -- Juha
  
  
  
   On Wed, 22 Aug 2001, Hiram Chirino wrote:
  
   
Can you send it to me???  I'll check it in.
   
Regards,
Hiram
   
From: Juha-P Lindfors [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)


   I have just fixed (and verified) both of these problems.  Should
 I
commit
   them?  Silly me, of course I should commit them... but where is
 jms.y?

I have the jms.y as part of the old spyderMQ module in
src/java/org/spydermq/selectors.

No idea where it is in the newer modules, or if it was ever
 transferred.
But check the SpyderMQ in CVS.

-- Juha


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
   
_
Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
   
   
___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
  
  
   ___
   Jboss-development mailing list
   [EMAIL PROTECTED]
   http://lists.sourceforge.net/lists/listinfo/jboss-development
  
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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




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



RE: [JBoss-dev] JIKES

2001-08-22 Thread marc fleury

can someone post the snippet to use jikes as the compiler with ant? sorry
for the beginner question..

marcf


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Dain
|Sundstrom
|Sent: Wednesday, August 22, 2001 4:45 PM
|To: [EMAIL PROTECTED]
|Subject: Re: [JBoss-dev] Extra ;
|
|
|That's it. Why don't we fix these errors. I think both are Ambiguous class
|referances and can be fixed with absolute class referances.  We should
|atleast try, as jikes is like a billion times faster then javac.  Do you
|want to take a shot at resolving the errors? (take a look at the jikes docs
|for info on resolving the problems)
|
|-dain
|
|- Original Message -
|From: Dave Smith [EMAIL PROTECTED]
|To: [EMAIL PROTECTED]
|Sent: Wednesday, August 22, 2001 3:19 PM
|Subject: Re: [JBoss-dev] Extra ;
|
|
| As of 4:14 EST
| jikes -v
| Version 1.12 8/1/2000
|
|
| compile-classes:
|  [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
|  [javac] Compiling 22 source files to
| /home/dave/jboss/cluster/output/classes
|  [javac]
|  [javac] Issued 1 semantic warning compiling
| /home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
|  [javac]
|  [javac]441. wait ();
|  [javac] -
|  [javac] *** Caution: Ambiguous reference to member named wait
| inherited from type java/lang/Object but also declared or inherited in
| the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit
| qualification is required.
|
|
| [javac] Compiling 1 source file to
| /home/dave/jboss/plugins/jetty/output/classes
|  [javac]
|  [javac] Found 1 semantic error compiling
|
|/home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandl
|er.java:
|  [javac]
|  [javac] 21. public class SetupHandler
|  [javac]  --
|  [javac] *** Error: The abstract method void
| handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2,
| com.mortbay.HTTP.HttpResponse $3);, inherited from type
| com/mortbay/HTTP/Handler/NullHandler, is not implemented in the
| non-abstract class org/jboss/jetty/SetupHandler. Since the type
| com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is
| possible that it just needs to be recompiled because after having
| inherited method void handle(java.lang.String $1,
| com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3);
| from an interface, the method was subsequently removed from that
|interface.
|
|
|
| But the ';' problem went away ...
|
| Jason Dillon wrote:
|  I think it still fails to compile some org.jboss.web.* stuff properly.
| 
|  --jason
| 
| 
|  On Wed, 22 Aug 2001, Dain Sundstrom wrote:
| 
| 
| Fixed, will commit change as soon as sourcefouge cvs is back on line.
| 
| Does jikes work compile jboss server now?
| 
| -dain
| 
| - Original Message -
| From: Dave Smith [EMAIL PROTECTED]
| To: [EMAIL PROTECTED]
| Sent: Tuesday, August 21, 2001 6:44 AM
| Subject: [JBoss-dev] Extra ;
| 
| 
| 
| Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java
|line
| 66 you have an extra ';' terminating the return statement. It is
|causing
| jikes to complain.
| 
| Found 1 semantic error compiling
| 
| 
|
|/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql
|/Parser.j
|av
| a:
| 
|  [javac]
|  [javac] 66. return
| (Assembly)completeMatches.iterator().next();;
|  [javac]
|  ^
|  [javac] *** Error: This statement is unreachable.
| 
| Could you take it out? Thanks ..
| 
| 
| ___
| Jboss-development mailing list
| [EMAIL PROTECTED]
| http://lists.sourceforge.net/lists/listinfo/jboss-development
| 
| 
| 
| ___
| Jboss-development mailing list
| [EMAIL PROTECTED]
| http://lists.sourceforge.net/lists/listinfo/jboss-development
| 
| 
| 
| 
|  ___
|  Jboss-development mailing list
|  [EMAIL PROTECTED]
|  http://lists.sourceforge.net/lists/listinfo/jboss-development
| 
| 
|
|
|
| ___
| Jboss-development mailing list
| [EMAIL PROTECTED]
| http://lists.sourceforge.net/lists/listinfo/jboss-development
|
|
|
|___
|Jboss-development mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-development


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



Re: [JBoss-dev] JIKES

2001-08-22 Thread Dave Smith

If you are uising buildmagic just uncomment the line
build.compiler=jikes
in local.properties

in a build.xml file
set the build.compiler=jikes property




marc fleury wrote:
 can someone post the snippet to use jikes as the compiler with ant? sorry
 for the beginner question..
 
 marcf
 
 
 |-Original Message-
 |From: [EMAIL PROTECTED]
 |[mailto:[EMAIL PROTECTED]]On Behalf Of Dain
 |Sundstrom
 |Sent: Wednesday, August 22, 2001 4:45 PM
 |To: [EMAIL PROTECTED]
 |Subject: Re: [JBoss-dev] Extra ;
 |
 |
 |That's it. Why don't we fix these errors. I think both are Ambiguous class
 |referances and can be fixed with absolute class referances.  We should
 |atleast try, as jikes is like a billion times faster then javac.  Do you
 |want to take a shot at resolving the errors? (take a look at the jikes docs
 |for info on resolving the problems)
 |
 |-dain
 |
 |- Original Message -
 |From: Dave Smith [EMAIL PROTECTED]
 |To: [EMAIL PROTECTED]
 |Sent: Wednesday, August 22, 2001 3:19 PM
 |Subject: Re: [JBoss-dev] Extra ;
 |
 |
 | As of 4:14 EST
 | jikes -v
 | Version 1.12 8/1/2000
 |
 |
 | compile-classes:
 |  [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
 |  [javac] Compiling 22 source files to
 | /home/dave/jboss/cluster/output/classes
 |  [javac]
 |  [javac] Issued 1 semantic warning compiling
 | /home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
 |  [javac]
 |  [javac]441. wait ();
 |  [javac] -
 |  [javac] *** Caution: Ambiguous reference to member named wait
 | inherited from type java/lang/Object but also declared or inherited in
 | the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit
 | qualification is required.
 |
 |
 | [javac] Compiling 1 source file to
 | /home/dave/jboss/plugins/jetty/output/classes
 |  [javac]
 |  [javac] Found 1 semantic error compiling
 |
 |/home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandl
 |er.java:
 |  [javac]
 |  [javac] 21. public class SetupHandler
 |  [javac]  --
 |  [javac] *** Error: The abstract method void
 | handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2,
 | com.mortbay.HTTP.HttpResponse $3);, inherited from type
 | com/mortbay/HTTP/Handler/NullHandler, is not implemented in the
 | non-abstract class org/jboss/jetty/SetupHandler. Since the type
 | com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is
 | possible that it just needs to be recompiled because after having
 | inherited method void handle(java.lang.String $1,
 | com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3);
 | from an interface, the method was subsequently removed from that
 |interface.
 |
 |
 |
 | But the ';' problem went away ...
 |
 | Jason Dillon wrote:
 |  I think it still fails to compile some org.jboss.web.* stuff properly.
 | 
 |  --jason
 | 
 | 
 |  On Wed, 22 Aug 2001, Dain Sundstrom wrote:
 | 
 | 
 | Fixed, will commit change as soon as sourcefouge cvs is back on line.
 | 
 | Does jikes work compile jboss server now?
 | 
 | -dain
 | 
 | - Original Message -
 | From: Dave Smith [EMAIL PROTECTED]
 | To: [EMAIL PROTECTED]
 | Sent: Tuesday, August 21, 2001 6:44 AM
 | Subject: [JBoss-dev] Extra ;
 | 
 | 
 | 
 | Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java
 |line
 | 66 you have an extra ';' terminating the return statement. It is
 |causing
 | jikes to complain.
 | 
 | Found 1 semantic error compiling
 | 
 | 
 |
 |/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql
 |/Parser.j
 |av
 | a:
 | 
 |  [javac]
 |  [javac] 66. return
 | (Assembly)completeMatches.iterator().next();;
 |  [javac]
 |  ^
 |  [javac] *** Error: This statement is unreachable.
 | 
 | Could you take it out? Thanks ..
 | 
 | 
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 | 
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 | 
 | 
 |  ___
 |  Jboss-development mailing list
 |  [EMAIL PROTECTED]
 |  http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 |
 |
 |
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 |
 |
 |
 |___
 |Jboss-development mailing list
 |[EMAIL PROTECTED]
 |http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development
 

Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Scott M Stark

Take a look at JavaCC for language parsers. Infinitely cleaner and
easier than other parsers I have tried.
http://www.webgain.com/products/metamata/java_doc.html

- Original Message -
From: Juha-P Lindfors [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 1:57 PM
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source



 Try http://troi.lincom-asg.com/~rjamison/byacc/
 (at the bottom of the page)

 it contains a win exe, with byaccj 1.1 (so slightly newer)

 yacc -Jclass=parser jms.y

 -- Juha


 On Wed, 22 Aug 2001, Hiram Chirino wrote:

 
  I think Byacc.   Can I get a win32 ver of that???
 
  Regards,
  Hiram
 
  From: Jason Dillon [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
  Date: Wed, 22 Aug 2001 12:41:33 -0700 (PDT)
  
  Unless s has been toUpperCase() (which I did not explictly check), then
  this
  is not spec compliant.  It needs to check for true and false too.
  
  Do you know what is used to generate parser.java from jms.y?
  
  --jason
  
  
  On Wed, 22 Aug 2001, Juha-P Lindfors wrote:
  
It's here:
   
 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/
spydermq/selectors/
   
this is the boolean equal check:
   
//CST group
if (s.equals(TRUE)) {
yylval = new
parserval((Object)Boolean.TRUE);
return CST;
}
if (s.equals(FALSE)) {
yylval = new
parserval((Object)Boolean.FALSE);
return CST;
}
   
-- Juha
   
   
   
On Wed, 22 Aug 2001, Hiram Chirino wrote:
   

 Can you send it to me???  I'll check it in.

 Regards,
 Hiram

 From: Juha-P Lindfors [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
 Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)
 
 
I have just fixed (and verified) both of these problems.
Should
  I
 commit
them?  Silly me, of course I should commit them... but where
is
  jms.y?
 
 I have the jms.y as part of the old spyderMQ module in
 src/java/org/spydermq/selectors.
 
 No idea where it is in the newer modules, or if it was ever
  transferred.
 But check the SpyderMQ in CVS.
 
 -- Juha
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


 _
 Get your FREE download of MSN Explorer at
  http://explorer.msn.com/intl.asp


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

   
   
___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
  
  
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
  _
  Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 



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



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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon

Where do I get this from?  I would like to integrate it into the build
system.

--jason


On Wed, 22 Aug 2001, Juha-P Lindfors wrote:



 On Wed, 22 Aug 2001, Jason Dillon wrote:
 
  Do you know what is used to generate parser.java from jms.y?

 //### This file created by BYACC 1.8(/Java extension  0.92)
 //### Java capabilities added 7 Jan 97, Bob Jamison
 //### Updated : 27 Nov 97  -- Bob Jamison, Joe Nieten
 //###   01 Jan 98  -- Bob Jamison -- fixed generic semantic
 //###   01 Jun 99  -- Bob Jamison -- added Runnable support
 //### Please send bug reports to [EMAIL PROTECTED]
 //### static char yysccsid[] = @(#)yaccpar 1.8 (Berkeley) 01/20/90;


 -- Juha


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



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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Jason Dillon

Lets convert the grammer/parser to javacc so that everyone can build it.

--jason


On Wed, 22 Aug 2001, Hiram Chirino wrote:


 I think Byacc.   Can I get a win32 ver of that???

 Regards,
 Hiram

 From: Jason Dillon [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
 Date: Wed, 22 Aug 2001 12:41:33 -0700 (PDT)
 
 Unless s has been toUpperCase() (which I did not explictly check), then
 this
 is not spec compliant.  It needs to check for true and false too.
 
 Do you know what is used to generate parser.java from jms.y?
 
 --jason
 
 
 On Wed, 22 Aug 2001, Juha-P Lindfors wrote:
 
   It's here:
  
 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/
  
   this is the boolean equal check:
  
   //CST group
   if (s.equals(TRUE)) {
   yylval = new parserval((Object)Boolean.TRUE);
   return CST;
   }
   if (s.equals(FALSE)) {
   yylval = new parserval((Object)Boolean.FALSE);
   return CST;
   }
  
   -- Juha
  
  
  
   On Wed, 22 Aug 2001, Hiram Chirino wrote:
  
   
Can you send it to me???  I'll check it in.
   
Regards,
Hiram
   
From: Juha-P Lindfors [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)


   I have just fixed (and verified) both of these problems.  Should
 I
commit
   them?  Silly me, of course I should commit them... but where is
 jms.y?

I have the jms.y as part of the old spyderMQ module in
src/java/org/spydermq/selectors.

No idea where it is in the newer modules, or if it was ever
 transferred.
But check the SpyderMQ in CVS.

-- Juha


___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
   
_
Get your FREE download of MSN Explorer at
 http://explorer.msn.com/intl.asp
   
   
___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
  
  
   ___
   Jboss-development mailing list
   [EMAIL PROTECTED]
   http://lists.sourceforge.net/lists/listinfo/jboss-development
  
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



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



Re: [JBoss-dev] jbossmq selector parser grammer source

2001-08-22 Thread Hiram Chirino


I'm all for it..  Who knows yacc and javacc??

Regards,
Hiram

From: Jason Dillon [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
Date: Wed, 22 Aug 2001 14:43:12 -0700 (PDT)

Lets convert the grammer/parser to javacc so that everyone can build it.

--jason


On Wed, 22 Aug 2001, Hiram Chirino wrote:

 
  I think Byacc.   Can I get a win32 ver of that???
 
  Regards,
  Hiram
 
  From: Jason Dillon [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
  Date: Wed, 22 Aug 2001 12:41:33 -0700 (PDT)
  
  Unless s has been toUpperCase() (which I did not explictly check), then
  this
  is not spec compliant.  It needs to check for true and false too.
  
  Do you know what is used to generate parser.java from jms.y?
  
  --jason
  
  
  On Wed, 22 Aug 2001, Juha-P Lindfors wrote:
  
It's here:
   
  
 
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/spyderMQ/src/java/org/spydermq/selectors/
   
this is the boolean equal check:
   
//CST group
if (s.equals(TRUE)) {
yylval = new 
parserval((Object)Boolean.TRUE);
return CST;
}
if (s.equals(FALSE)) {
yylval = new 
parserval((Object)Boolean.FALSE);
return CST;
}
   
-- Juha
   
   
   
On Wed, 22 Aug 2001, Hiram Chirino wrote:
   

 Can you send it to me???  I'll check it in.

 Regards,
 Hiram

 From: Juha-P Lindfors [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-dev] jbossmq selector parser grammer source
 Date: Wed, 22 Aug 2001 13:01:02 +0300 (EET DST)
 
 
I have just fixed (and verified) both of these problems.  
Should
  I
 commit
them?  Silly me, of course I should commit them... but where 
is
  jms.y?
 
 I have the jms.y as part of the old spyderMQ module in
 src/java/org/spydermq/selectors.
 
 No idea where it is in the newer modules, or if it was ever
  transferred.
 But check the SpyderMQ in CVS.
 
 -- Juha
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development


 _
 Get your FREE download of MSN Explorer at
  http://explorer.msn.com/intl.asp


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

   
   
___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development
   
  
  
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
  _
  Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



[JBoss-dev] CVS update: manual/src/docs jbossjms.xml

2001-08-22 Thread David Jencks

  User: d_jencks
  Date: 01/08/22 14:47:51

  Modified:src/docs jbossjms.xml
  Log:
  Fixed a couple of minor xml problems psgml/emacs didn't like and added (commented 
out) doctype for ease of using psgml
  
  Revision  ChangesPath
  1.4   +16 -14manual/src/docs/jbossjms.xml
  
  Index: jbossjms.xml
  ===
  RCS file: /cvsroot/jboss/manual/src/docs/jbossjms.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jbossjms.xml  2001/08/09 19:58:21 1.3
  +++ jbossjms.xml  2001/08/22 21:47:51 1.4
  @@ -1,6 +1,8 @@
   ?xml version = 1.0 encoding = UTF-8?
  +!--DOCTYPE chapter PUBLIC -//OASIS//DTD DocBook XML V4.1.2//EN 
docbookx/docbookx.dtd/--
  +!--for standalone validation uncomment the DOCTYPE declaration--
   
  -!-- Version: $Revision: 1.3 $ --
  +!-- Version: $Revision: 1.4 $ --
   chapter id = jms   
titleJBoss and JMS/title   
subtitleJava Messaging Service in JBoss/subtitle   
  @@ -40,7 +42,7 @@
   /figure
   
   paraThe Ant bin directory and JDK bin directory must also be in your PATH as
  -described in the First Steps chapter of the JBoss manual xref 
linkend=intro.install.Ant//para.
  +described in the First Steps chapter of the JBoss manual xref 
linkend=intro.install.Ant/./para
   
   paraDifferent examples work with different version of JBoss. You will have to 
make sure that the JBOSS_DIST environment variable points to the correct version of 
JBoss for the particular example./para
   
  @@ -124,7 +126,7 @@
   
  paraJBossMQ is its own CVS module and has its own mailing list, where the
  core JBossMQ programmers hang out
  -   ulink url=http://groups.yahoo.com/group/spyderMQ/; /./para
  +   ulink url=http://groups.yahoo.com/group/spyderMQ/;spyderMQ/ulink./para
   
  paraJBossMQ was created by  Norbert Lataille in the spring of 2000. Hiram
  Chirino sort of took over the responsibility in late 2000 and added
  @@ -938,7 +940,7 @@
*
* pbNOTE/bThis code is showcase only. It may not provide a stable production 
example./p
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   
   public class HelloPublisher {
  @@ -1136,7 +1138,7 @@
* pbNOTE/bThis code is showcase only. It may not provide a stable production 
example./p
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
   
*/
   
  @@ -1821,7 +1823,7 @@
* Created: Thu Jul 26 13:20:32 2001
*
* @author Peter Antman
  - * @version $Revision: 1.3 $ $Date: 2001/08/09 19:58:21 $
  + * @version $Revision: 1.4 $ $Date: 2001/08/22 21:47:51 $
*/
   
   public class HelloMDB implements MessageDrivenBean, MessageListener {
  @@ -2022,7 +2024,7 @@
* Created: Thu Jul 26 16:02:46 2001
*
* @author Peter Antman
  - * @version $Revision: 1.3 $ $Date: 2001/08/09 19:58:21 $
  + * @version $Revision: 1.4 $ $Date: 2001/08/22 21:47:51 $
*/
   
   public interface HelloWorkerHome extends EJBHome  {
  @@ -2051,7 +2053,7 @@
* Created: Thu Jul 26 15:50:06 2001
*
* @author Peter Antman
  - * @version $Revision: 1.3 $ $Date: 2001/08/09 19:58:21 $
  + * @version $Revision: 1.4 $ $Date: 2001/08/22 21:47:51 $
*/
   
   public interface HelloWorker extends EJBObject {
  @@ -2085,7 +2087,7 @@
*
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   
   public class HelloWorkerBean implements SessionBean {
  @@ -2183,7 +2185,7 @@
* Created: Thu Jul 26 13:20:32 2001
*
* @author Peter Antman
  - * @version $Revision: 1.3 $ $Date: 2001/08/09 19:58:21 $
  + * @version $Revision: 1.4 $ $Date: 2001/08/22 21:47:51 $
*/
   
   public class HelloListener implements MessageDrivenBean, MessageListener {
  @@ -3115,7 +3117,7 @@
*
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   public class TopicHelloBean implements SessionBean {
   
  @@ -3244,7 +3246,7 @@
*
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   
   public interface Hello extends EJBObject {
  @@ -3272,7 +3274,7 @@
*
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   public interface HelloHome extends EJBHome {
   Hello create() throws RemoteException, CreateException;
  @@ -3301,7 +3303,7 @@
* 
*
* @author Peter Antman
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
*/
   
   public class HelloClient
  
  
  

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



RE: [JBoss-dev] JIKES

2001-08-22 Thread Jason Dillon

I saw the response to this, but I wanted to add, that I did add a HOWTO in
the BMUG for this.

--jason


On Wed, 22 Aug 2001, marc fleury wrote:

 can someone post the snippet to use jikes as the compiler with ant? sorry
 for the beginner question..

 marcf


 |-Original Message-
 |From: [EMAIL PROTECTED]
 |[mailto:[EMAIL PROTECTED]]On Behalf Of Dain
 |Sundstrom
 |Sent: Wednesday, August 22, 2001 4:45 PM
 |To: [EMAIL PROTECTED]
 |Subject: Re: [JBoss-dev] Extra ;
 |
 |
 |That's it. Why don't we fix these errors. I think both are Ambiguous class
 |referances and can be fixed with absolute class referances.  We should
 |atleast try, as jikes is like a billion times faster then javac.  Do you
 |want to take a shot at resolving the errors? (take a look at the jikes docs
 |for info on resolving the problems)
 |
 |-dain
 |
 |- Original Message -
 |From: Dave Smith [EMAIL PROTECTED]
 |To: [EMAIL PROTECTED]
 |Sent: Wednesday, August 22, 2001 3:19 PM
 |Subject: Re: [JBoss-dev] Extra ;
 |
 |
 | As of 4:14 EST
 | jikes -v
 | Version 1.12 8/1/2000
 |
 |
 | compile-classes:
 |  [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
 |  [javac] Compiling 22 source files to
 | /home/dave/jboss/cluster/output/classes
 |  [javac]
 |  [javac] Issued 1 semantic warning compiling
 | /home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
 |  [javac]
 |  [javac]441. wait ();
 |  [javac] -
 |  [javac] *** Caution: Ambiguous reference to member named wait
 | inherited from type java/lang/Object but also declared or inherited in
 | the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit
 | qualification is required.
 |
 |
 | [javac] Compiling 1 source file to
 | /home/dave/jboss/plugins/jetty/output/classes
 |  [javac]
 |  [javac] Found 1 semantic error compiling
 |
 |/home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandl
 |er.java:
 |  [javac]
 |  [javac] 21. public class SetupHandler
 |  [javac]  --
 |  [javac] *** Error: The abstract method void
 | handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2,
 | com.mortbay.HTTP.HttpResponse $3);, inherited from type
 | com/mortbay/HTTP/Handler/NullHandler, is not implemented in the
 | non-abstract class org/jboss/jetty/SetupHandler. Since the type
 | com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is
 | possible that it just needs to be recompiled because after having
 | inherited method void handle(java.lang.String $1,
 | com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3);
 | from an interface, the method was subsequently removed from that
 |interface.
 |
 |
 |
 | But the ';' problem went away ...
 |
 | Jason Dillon wrote:
 |  I think it still fails to compile some org.jboss.web.* stuff properly.
 | 
 |  --jason
 | 
 | 
 |  On Wed, 22 Aug 2001, Dain Sundstrom wrote:
 | 
 | 
 | Fixed, will commit change as soon as sourcefouge cvs is back on line.
 | 
 | Does jikes work compile jboss server now?
 | 
 | -dain
 | 
 | - Original Message -
 | From: Dave Smith [EMAIL PROTECTED]
 | To: [EMAIL PROTECTED]
 | Sent: Tuesday, August 21, 2001 6:44 AM
 | Subject: [JBoss-dev] Extra ;
 | 
 | 
 | 
 | Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java
 |line
 | 66 you have an extra ';' terminating the return statement. It is
 |causing
 | jikes to complain.
 | 
 | Found 1 semantic error compiling
 | 
 | 
 |
 |/home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql
 |/Parser.j
 |av
 | a:
 | 
 |  [javac]
 |  [javac] 66. return
 | (Assembly)completeMatches.iterator().next();;
 |  [javac]
 |  ^
 |  [javac] *** Error: This statement is unreachable.
 | 
 | Could you take it out? Thanks ..
 | 
 | 
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 | 
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 | 
 | 
 |  ___
 |  Jboss-development mailing list
 |  [EMAIL PROTECTED]
 |  http://lists.sourceforge.net/lists/listinfo/jboss-development
 | 
 | 
 |
 |
 |
 | ___
 | Jboss-development mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-development
 |
 |
 |
 |___
 |Jboss-development mailing list
 |[EMAIL PROTECTED]
 |http://lists.sourceforge.net/lists/listinfo/jboss-development


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




Re: [JBoss-dev] Extra ;

2001-08-22 Thread Jason Dillon

1.12... you might want to upgrade to 1.14

--jason


On Wed, 22 Aug 2001, Dave Smith wrote:

 As of 4:14 EST
 jikes -v
 Version 1.12 8/1/2000


 compile-classes:
  [mkdir] Created dir: /home/dave/jboss/cluster/output/classes
  [javac] Compiling 22 source files to
 /home/dave/jboss/cluster/output/classes
  [javac]
  [javac] Issued 1 semantic warning compiling
 /home/dave/jboss/cluster/src/main/org/jboss/ha/HAConfigNodeImpl.java:
  [javac]
  [javac]441. wait ();
  [javac] -
  [javac] *** Caution: Ambiguous reference to member named wait
 inherited from type java/lang/Object but also declared or inherited in
 the enclosing type org/jboss/ha/HAConfigNodeImpl. Explicit
 qualification is required.


 [javac] Compiling 1 source file to
 /home/dave/jboss/plugins/jetty/output/classes
  [javac]
  [javac] Found 1 semantic error compiling
 /home/dave/jboss/plugins/jetty/src/main/org/jboss/jetty/SetupHandler.java:
  [javac]
  [javac] 21. public class SetupHandler
  [javac]  --
  [javac] *** Error: The abstract method void
 handle(java.lang.String $1, com.mortbay.HTTP.HttpRequest $2,
 com.mortbay.HTTP.HttpResponse $3);, inherited from type
 com/mortbay/HTTP/Handler/NullHandler, is not implemented in the
 non-abstract class org/jboss/jetty/SetupHandler. Since the type
 com/mortbay/HTTP/Handler/NullHandler was read from a class file, it is
 possible that it just needs to be recompiled because after having
 inherited method void handle(java.lang.String $1,
 com.mortbay.HTTP.HttpRequest $2, com.mortbay.HTTP.HttpResponse $3);
 from an interface, the method was subsequently removed from that interface.



 But the ';' problem went away ...

 Jason Dillon wrote:
  I think it still fails to compile some org.jboss.web.* stuff properly.
 
  --jason
 
 
  On Wed, 22 Aug 2001, Dain Sundstrom wrote:
 
 
 Fixed, will commit change as soon as sourcefouge cvs is back on line.
 
 Does jikes work compile jboss server now?
 
 -dain
 
 - Original Message -
 From: Dave Smith [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 21, 2001 6:44 AM
 Subject: [JBoss-dev] Extra ;
 
 
 
 Dain in server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.java line
 66 you have an extra ';' terminating the return statement. It is causing
 jikes to complain.
 
 Found 1 semantic error compiling
 
 
 /home/dave/jboss/server/src/main/org/jboss/ejb/plugins/cmp/ejbql/Parser.jav
 a:
 
  [javac]
  [javac] 66. return
 (Assembly)completeMatches.iterator().next();;
  [javac]
  ^
  [javac] *** Error: This statement is unreachable.
 
 Could you take it out? Thanks ..
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 
 



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



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



[JBoss-dev] CVS update: newsite binary.jsp

2001-08-22 Thread Jules Gosnell

  User: jules_gosnell
  Date: 01/08/22 16:43:11

  Modified:.binary.jsp
  Log:
  add latest JBoss/Jetty bundle
  
  Revision  ChangesPath
  1.10  +3 -3  newsite/binary.jsp
  
  Index: binary.jsp
  ===
  RCS file: /cvsroot/jboss/newsite/binary.jsp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- binary.jsp2001/08/21 16:13:33 1.9
  +++ binary.jsp2001/08/22 23:43:11 1.10
  @@ -47,9 +47,9 @@
 /tr
   
 tr
  -tda class=link 
href=http://prdownloads.sourceforge.net/jboss/JBoss-2.4.0.26_Jetty-3.1.RC7-1.zip;JBoss-2.4.0.26_Jetty-3.1.RC7-1.zip/a/td
  -td align=centerp class=text12M/td
  -td align=centerp class=textAug 13, 2001/td
  +tda class=link 
href=http://prdownloads.sourceforge.net/jboss/JBoss-2.4.0_Jetty-3.1.RC8-1.zip;JBoss-2.4.0_Jetty-3.1.RC8-1.zip/a/td
  +td align=centerp class=text12510894/td
  +td align=centerp class=textAugust 22, 2001/td
 /tr
   
   /table
  
  
  

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



[JBoss-dev] CVS update: contrib/jetty/src/main/org/jboss/jetty SetupHandler.java

2001-08-22 Thread Jason Dillon

  User: user57  
  Date: 01/08/22 17:06:00

  Modified:jetty/src/main/org/jboss/jetty SetupHandler.java
  Log:
   o added empty handle(String, HttpRequest, HttpResponse) so this will compile
 based on the version of jetty in thridparty.
  
  Revision  ChangesPath
  1.7   +63 -44contrib/jetty/src/main/org/jboss/jetty/SetupHandler.java
  
  Index: SetupHandler.java
  ===
  RCS file: /cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/SetupHandler.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SetupHandler.java 2001/08/22 20:02:34 1.6
  +++ SetupHandler.java 2001/08/23 00:06:00 1.7
  @@ -1,71 +1,90 @@
   package org.jboss.jetty;
   
  +import java.io.IOException;
  +
   import com.mortbay.HTTP.Handler.NullHandler;
   import com.mortbay.HTTP.HandlerContext;
   import com.mortbay.HTTP.HttpException;
   import com.mortbay.HTTP.HttpRequest;
   import com.mortbay.HTTP.HttpResponse;
   import com.mortbay.HTTP.HttpServer;
  -import java.io.IOException;
  +
   import org.apache.log4j.Category;
  +
   import org.jboss.web.AbstractWebContainer.WebDescriptorParser;
   import org.jboss.web.WebApplication;
  +
   import org.w3c.dom.Element;
   
  -/** An HttpHandler that simply hooks into the web application startup
  +/**
  + * An HttpHandler that simply hooks into the web application startup
* so that is sees the correct class loader and security realm name.
*
* @author  [EMAIL PROTECTED]
  - * @version $Revision: 1.6 $
  + * @version $Revision: 1.7 $
*/
   public class SetupHandler
  -  extends NullHandler
  +   extends NullHandler
   {
  -  Category_log;
  -  WebDescriptorParser _descriptorParser;
  -  WebApplication  _webApp;
  -
  -  //--
  -
  -  public
  -SetupHandler(Category log,
  -  WebDescriptorParser descriptorParser, WebApplication webApp)
  -  {
  -_log  = log;
  -_descriptorParser = descriptorParser;
  -_webApp   = webApp;
  -  }
  +   Category_log;
  +   WebDescriptorParser _descriptorParser;
  +   WebApplication  _webApp;
  +
  +   //--
  +
  +   public SetupHandler(Category log,
  +   WebDescriptorParser descriptorParser,
  +   WebApplication webApp)
  +   {
  +  _log  = log;
  +  _descriptorParser = descriptorParser;
  +  _webApp   = webApp;
  +   }
 
  -  //--
  +   //--
   
  -  public void
  -start()
  -throws Exception
  -  {
  -ClassLoader loader = getHandlerContext().getClassLoader();
  -if (_webApp.getClassLoader()!=loader.getParent())
  -  _log.warn(WARNING: WebApp ClassLoader is not child of J2EEDeployer's 
ClassLoader);
  +   public void start() throws Exception
  +   {
  +  ClassLoader loader = getHandlerContext().getClassLoader();
  +  if (_webApp.getClassLoader()!=loader.getParent()) {
  + _log.warn(WebApp ClassLoader is not child of J2EEDeployer's ClassLoader);
  +  }
   
  -// Setup the JNDI environment
  -Element webAppDD = _webApp.getWebApp();
  -Element jbossDD  = _webApp.getJbossWeb();
  -_descriptorParser.parseWebAppDescriptors(loader, webAppDD, jbossDD);
  +  // Setup the JNDI environment
  +  Element webAppDD = _webApp.getWebApp();
  +  Element jbossDD  = _webApp.getJbossWeb();
  +  _descriptorParser.parseWebAppDescriptors(loader, webAppDD, jbossDD);
   
  -// Add the JBoss security realm
  -HttpServer server= getHandlerContext().getHttpServer();
  -String realmName = getHandlerContext().getRealm();
  -server.addRealm(new JBossUserRealm(_log, realmName));
  +  // Add the JBoss security realm
  +  HttpServer server= getHandlerContext().getHttpServer();
  +  String realmName = getHandlerContext().getRealm();
  +  server.addRealm(new JBossUserRealm(_log, realmName));
   
  -super.start();
  -  }
  +  super.start();
  +   }
 
  -  //--
  -
  -  // does nothing - we are only interested in start()...
  +   //--
   
  -  public void
  -handle(String pathInContext, String pathParams, HttpRequest request, 
HttpResponse response)
  -throws HttpException, IOException
  -  {
  -  }
  +   /**
  +* Does nothing - we are only interested in {@link #start}.
  +*/
  +   public void handle(String pathInContext,
  +  String pathParams,
  +  HttpRequest request,
  +  HttpResponse 

[JBoss-dev] CVS update: jbossmx/src/main/org/jboss/ha HAConfigNodeImpl.java

2001-08-22 Thread Jason Dillon

  User: user57  
  Date: 01/08/22 17:09:05

  Modified:src/main/org/jboss/ha HAConfigNodeImpl.java
  Log:
   o using this.wait() instead of wait(), to avoid compile problem with older
 jikes.
  
  Revision  ChangesPath
  1.2   +3 -3  jbossmx/src/main/org/jboss/ha/HAConfigNodeImpl.java
  
  Index: HAConfigNodeImpl.java
  ===
  RCS file: /cvsroot/jboss/jbossmx/src/main/org/jboss/ha/HAConfigNodeImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- HAConfigNodeImpl.java 2001/08/19 18:33:53 1.1
  +++ HAConfigNodeImpl.java 2001/08/23 00:09:05 1.2
  @@ -29,7 +29,7 @@
*
*   @see HAConfigNode
*   @author a href=mailto:[EMAIL PROTECTED];Sacha Labourey/a
  - *   @version $Revision: 1.1 $
  + *   @version $Revision: 1.2 $
*
*   pbRevisions:/b
*
  @@ -411,7 +411,7 @@
  // 
***
  
  class EventDispatcher
  -   implements Runnable, DistributedTree.DistributedTreeListener, 
DistributedTree.MembershipListener
  +  implements Runnable, DistributedTree.DistributedTreeListener, 
DistributedTree.MembershipListener
  {
 private java.util.Vector events = new java.util.Vector (20);
 private Thread dispatcherThread = null;
  @@ -438,7 +438,7 @@
 {
threadSuspended = (events.size () = 0);
while (threadSuspended)
  -wait ();
  +this.wait();
 }
  }
   } catch (InterruptedException e)
  
  
  

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



[JBoss-dev] Re: JavaStyle jar??

2001-08-22 Thread Hiram Chirino



Hi David..  Sorry I missed your earlier message.

I found the JavaStyle tool via the ejbdoclet project.  They are the ones 
that make the ant task for it.  Since the ejbdoclet people did not include 
the javastyle.jar, I did not include it either.  I'm have not looked into 
the licensing of it.  Shoot, in general I think that we check in anything 
into the CVS that may or may not have lic. probs. (Like javac etc.)  So go 
ahead and check it in...  If a javastyle guy has a problem with it..  will 
remove it right??

Regards,
Hiram


From: David Jencks [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: JavaStyle jar??
Date: Wed, 22 Aug 2001 18:42:34 -0400

Hiram,

Maybe you didn't see my question a few days ago in the mailing list.

I fixed up the pretty/JavaStyle stuff so it works through the build.xml,
and put the changes in connector, pool, and messaging.  I love it! Thanks
for finding this!

I note you didn't check in the JavaStyle.jar from the jedit people and
wondered if there was some reason for this.  If not, I can check it in so
we have a working style helper!

I also went through the pretty.settings -- I modified the commented one
that jedit provides and tried to set it to the jboss coding standards.  Is
the one you used auto-saved from jedit? it seems to be in an odd order.


Thanks
david jencks


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



Re: [JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Hiram Chirino

Hi Jason,

I guess this is not the best way, but it was the quickest way I could get it 
to build the standalone binary distribution right.  What I need the build to 
do is:

- go through all the modules and release thier normal jboss output.
- Filter out some of those file (JBossMQ standalone does not need all the 
JBoss jars) to come up with a the MQ release.

So, the change I did has the modules place their release output into 
${project.config}/build which then is copied/filtered/configured to
${project.output} (by the mqrelease target).

What do you think is a better solution???

Regards,
Hiram...

From: Jason Dillon [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] CVS update: build/jbossmq build.xml
Date: Wed, 22 Aug 2001 12:39:30 -0700 (PDT)

This change will break the release-* targets, as well as the consistency
model where files are generated.  Why do you need to work off of this
directory for project.release output?

--jason


On Wed, 22 Aug 2001, Hiram Chirino wrote:

User: chirino
Date: 01/08/22 08:15:47
 
Modified:jbossmq  build.xml
Log:
These changes should allow jboss-mq to build ok again.
 
Revision  ChangesPath
1.6   +2 -2  build/jbossmq/build.xml
 
Index: build.xml
===
RCS file: /cvsroot/jboss/build/jbossmq/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 2001/08/18 04:55:09 1.5
+++ build.xml 2001/08/22 15:15:47 1.6
@@ -10,7 +10,7 @@
 !--  
   --
 !-- 
== --
 
-!-- $Id: build.xml,v 1.5 2001/08/18 04:55:09 user57 Exp $ --
+!-- $Id: build.xml,v 1.6 2001/08/22 15:15:47 chirino Exp $ --
 
 project default=main basedir=..
 
@@ -74,7 +74,7 @@
  |  thirdparty.root  - Where to thirdparty libraries live
 --
   property name=project.output value=${project.config}/output/
-  property name=project.release value=${project.output}/
+  property name=project.release value=${project.config}/build/
   property name=tools.root value=${project.root}/tools/
   property name=thirdparty.root 
value=${project.root}/thirdparty/
 
 
 
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



Re: [JBoss-dev] Re: JavaStyle jar??

2001-08-22 Thread Jason Dillon

Add the license readme file too if it makes you feel better =)

--jason


On Wed, 22 Aug 2001, Hiram Chirino wrote:
 Hi David..  Sorry I missed your earlier message.

 I found the JavaStyle tool via the ejbdoclet project.  They are the ones
 that make the ant task for it.  Since the ejbdoclet people did not include
 the javastyle.jar, I did not include it either.  I'm have not looked into
 the licensing of it.  Shoot, in general I think that we check in anything
 into the CVS that may or may not have lic. probs. (Like javac etc.)  So go
 ahead and check it in...  If a javastyle guy has a problem with it..  will
 remove it right??

 Regards,
 Hiram


 From: David Jencks [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: JavaStyle jar??
 Date: Wed, 22 Aug 2001 18:42:34 -0400
 
 Hiram,
 
 Maybe you didn't see my question a few days ago in the mailing list.
 
 I fixed up the pretty/JavaStyle stuff so it works through the build.xml,
 and put the changes in connector, pool, and messaging.  I love it! Thanks
 for finding this!
 
 I note you didn't check in the JavaStyle.jar from the jedit people and
 wondered if there was some reason for this.  If not, I can check it in so
 we have a working style helper!
 
 I also went through the pretty.settings -- I modified the commented one
 that jedit provides and tried to set it to the jboss coding standards.  Is
 the one you used auto-saved from jedit? it seems to be in an odd order.
 
 
 Thanks
 david jencks


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



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



Re: [JBoss-dev] CVS update: build/jbossmq build.xml

2001-08-22 Thread Jason Dillon

On Wed, 22 Aug 2001, Hiram Chirino wrote:
 I guess this is not the best way, but it was the quickest way I could get it
 to build the standalone binary distribution right.

No worries.  I know the current release stuff for shared modules has
problems.

 What I need the build to do is:

 - go through all the modules and release thier normal jboss output.
 - Filter out some of those file (JBossMQ standalone does not need all the
 JBoss jars) to come up with a the MQ release.

I need to figure out an elegant way to allow the project control module to
pull from source modules instead of having them push, as you mentioned
before.  I am going to be switching over my corporate build systems from an
other version of BM, so I should probably beable to fix that too (and test
it and such), then update jboss.

 So, the change I did has the modules place their release output into
 ${project.config}/build which then is copied/filtered/configured to
 ${project.output} (by the mqrelease target).

 What do you think is a better solution???

It is fine for now, just note that the other release-* targets won't
function like this.

--jason


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



Re: [JBoss-dev] Re: JavaStyle jar??

2001-08-22 Thread Andreas Schaefer

Hi

The current JavaStyle is coming from JEdit (jedit.sf.net) and is handled
by Dirk Moebius.

Andreas Schaefer

- Original Message -
From: Hiram Chirino [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 5:25 PM
Subject: [JBoss-dev] Re: JavaStyle jar??




 Hi David..  Sorry I missed your earlier message.

 I found the JavaStyle tool via the ejbdoclet project.  They are the ones
 that make the ant task for it.  Since the ejbdoclet people did not include
 the javastyle.jar, I did not include it either.  I'm have not looked into
 the licensing of it.  Shoot, in general I think that we check in anything
 into the CVS that may or may not have lic. probs. (Like javac etc.)  So go
 ahead and check it in...  If a javastyle guy has a problem with it..  will
 remove it right??

 Regards,
 Hiram


 From: David Jencks [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: JavaStyle jar??
 Date: Wed, 22 Aug 2001 18:42:34 -0400
 
 Hiram,
 
 Maybe you didn't see my question a few days ago in the mailing list.
 
 I fixed up the pretty/JavaStyle stuff so it works through the build.xml,
 and put the changes in connector, pool, and messaging.  I love it! Thanks
 for finding this!
 
 I note you didn't check in the JavaStyle.jar from the jedit people and
 wondered if there was some reason for this.  If not, I can check it in so
 we have a working style helper!
 
 I also went through the pretty.settings -- I modified the commented one
 that jedit provides and tried to set it to the jboss coding standards.
Is
 the one you used auto-saved from jedit? it seems to be in an odd order.
 
 
 Thanks
 david jencks


 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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



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



Re: [JBoss-dev] Re: JavaStyle jar??

2001-08-22 Thread Hiram Chirino

Hi,

I just check the license and it is the GPL.  So it's ok to check the 
javastyle jar into the CVS.

Regards,
Hiram


From: Andreas Schaefer [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-dev] Re: JavaStyle jar??
Date: Wed, 22 Aug 2001 17:42:42 -0700

Hi

The current JavaStyle is coming from JEdit (jedit.sf.net) and is handled
by Dirk Moebius.

Andreas Schaefer

- Original Message -
From: Hiram Chirino [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 5:25 PM
Subject: [JBoss-dev] Re: JavaStyle jar??


 
 
  Hi David..  Sorry I missed your earlier message.
 
  I found the JavaStyle tool via the ejbdoclet project.  They are the ones
  that make the ant task for it.  Since the ejbdoclet people did not 
include
  the javastyle.jar, I did not include it either.  I'm have not looked 
into
  the licensing of it.  Shoot, in general I think that we check in 
anything
  into the CVS that may or may not have lic. probs. (Like javac etc.)  So 
go
  ahead and check it in...  If a javastyle guy has a problem with it..  
will
  remove it right??
 
  Regards,
  Hiram
 
 
  From: David Jencks [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: JavaStyle jar??
  Date: Wed, 22 Aug 2001 18:42:34 -0400
  
  Hiram,
  
  Maybe you didn't see my question a few days ago in the mailing list.
  
  I fixed up the pretty/JavaStyle stuff so it works through the 
build.xml,
  and put the changes in connector, pool, and messaging.  I love it! 
Thanks
  for finding this!
  
  I note you didn't check in the JavaStyle.jar from the jedit people and
  wondered if there was some reason for this.  If not, I can check it in 
so
  we have a working style helper!
  
  I also went through the pretty.settings -- I modified the commented one
  that jedit provides and tried to set it to the jboss coding standards.
Is
  the one you used auto-saved from jedit? it seems to be in an odd order.
  
  
  Thanks
  david jencks
 
 
  _
  Get your FREE download of MSN Explorer at 
http://explorer.msn.com/intl.asp
 
 
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-development
 


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


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


___
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 RMIClientIL.java RMIClientILRemote.java RMIClientILService.java RMIServerIL.java RMIServerILRemote.java RMIServerILService.java RMIServerILServiceMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:10

  Added:   src/main/org/jboss/mq/il/rmi Tag: Branch_2_4
RMIClientIL.java RMIClientILRemote.java
RMIClientILService.java RMIServerIL.java
RMIServerILRemote.java RMIServerILService.java
RMIServerILServiceMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientIL.java
  
  Index: RMIClientIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIClientIL.java  2001/08/17 03:04:04 1.2
  +++ RMIClientIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -20,7 +20,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class RMIClientIL extends java.rmi.server.UnicastRemoteObject implements 
RMIClientILRemote {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientILRemote.java
  
  Index: RMIClientILRemote.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientILRemote.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIClientILRemote.java2001/08/17 03:04:04 1.2
  +++ RMIClientILRemote.java2001/08/23 03:57:10 1.2.2.1
  @@ -20,7 +20,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface RMIClientILRemote extends ClientIL, java.rmi.Remote {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientILService.java
  
  Index: RMIClientILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIClientILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIClientILService.java   2001/08/17 03:04:04 1.2
  +++ RMIClientILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -21,7 +21,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class RMIClientILService implements org.jboss.mq.il.ClientILService {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerIL.java
  
  Index: RMIServerIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIServerIL.java  2001/08/17 03:04:04 1.2
  +++ RMIServerIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -28,7 +28,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class RMIServerIL extends java.rmi.server.UnicastRemoteObject implements 
RMIServerILRemote {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILRemote.java
  
  Index: RMIServerILRemote.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/rmi/RMIServerILRemote.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIServerILRemote.java2001/08/17 03:04:04 1.2
  +++ RMIServerILRemote.java2001/08/23 03:57:10 1.2.2.1
  @@ -27,7 +27,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface RMIServerILRemote extends ServerIL, java.rmi.Remote {
   
  
  
  
  1.2.2.1   +1 -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.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RMIServerILService.java   2001/08/17 

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/cluster/transport/udp Datagram.java UDPAdminStream.java UDPNodeId.java UDPStream.java UDPTransport.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:10

  Added:   src/main/org/jboss/mq/cluster/transport/udp Tag: Branch_2_4
Datagram.java UDPAdminStream.java UDPNodeId.java
UDPStream.java UDPTransport.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/udp/Datagram.java
  
  Index: Datagram.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/udp/Datagram.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- Datagram.java 2001/08/17 03:04:03 1.2
  +++ Datagram.java 2001/08/23 03:57:09 1.2.2.1
  @@ -17,7 +17,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   class Datagram {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPAdminStream.java
  
  Index: UDPAdminStream.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPAdminStream.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UDPAdminStream.java   2001/08/17 03:04:03 1.2
  +++ UDPAdminStream.java   2001/08/23 03:57:09 1.2.2.1
  @@ -20,7 +20,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   class UDPAdminStream implements Runnable {
   
  
  
  
  1.2.2.1   +0 -0  
jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPNodeId.java
  
  Index: UDPNodeId.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPNodeId.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPStream.java
  
  Index: UDPStream.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPStream.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UDPStream.java2001/08/17 03:04:03 1.2
  +++ UDPStream.java2001/08/23 03:57:09 1.2.2.1
  @@ -34,7 +34,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   class UDPStream implements Runnable {
  // The name this stream.  Used to ease debugging.
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPTransport.java
  
  Index: UDPTransport.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/udp/UDPTransport.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UDPTransport.java 2001/08/17 03:04:03 1.2
  +++ UDPTransport.java 2001/08/23 03:57:09 1.2.2.1
  @@ -38,7 +38,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class UDPTransport implements Transport {
  // Receives the multicast messages
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/referenceable ObjectRefAddr.java SpyConnectionFactoryObjectFactory.java SpyDestinationObjectFactory.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:12

  Added:   src/main/org/jboss/mq/referenceable Tag: Branch_2_4
ObjectRefAddr.java
SpyConnectionFactoryObjectFactory.java
SpyDestinationObjectFactory.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/referenceable/ObjectRefAddr.java
  
  Index: ObjectRefAddr.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/referenceable/ObjectRefAddr.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ObjectRefAddr.java2001/08/17 03:04:06 1.2
  +++ ObjectRefAddr.java2001/08/23 03:57:12 1.2.2.1
  @@ -21,7 +21,7 @@
* @author Scott M Stark ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ObjectRefAddr extends RefAddr {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/referenceable/SpyConnectionFactoryObjectFactory.java
  
  Index: SpyConnectionFactoryObjectFactory.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/referenceable/SpyConnectionFactoryObjectFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyConnectionFactoryObjectFactory.java2001/08/17 03:04:06 1.2
  +++ SpyConnectionFactoryObjectFactory.java2001/08/23 03:57:12 1.2.2.1
  @@ -17,7 +17,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SpyConnectionFactoryObjectFactory implements 
javax.naming.spi.ObjectFactory {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/referenceable/SpyDestinationObjectFactory.java
  
  Index: SpyDestinationObjectFactory.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/referenceable/SpyDestinationObjectFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyDestinationObjectFactory.java  2001/08/17 03:04:06 1.2
  +++ SpyDestinationObjectFactory.java  2001/08/23 03:57:12 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SpyDestinationObjectFactory implements javax.naming.spi.ObjectFactory {
   
  
  
  

___
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/oil OILClientIL.java OILClientILService.java OILServerIL.java OILServerILService.java OILServerILServiceMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:10

  Added:   src/main/org/jboss/mq/il/oil Tag: Branch_2_4
OILClientIL.java OILClientILService.java
OILServerIL.java OILServerILService.java
OILServerILServiceMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/oil/OILClientIL.java
  
  Index: OILClientIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILClientIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- OILClientIL.java  2001/08/17 03:04:04 1.2
  +++ OILClientIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -29,7 +29,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class OILClientIL implements ClientIL, java.io.Serializable {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/oil/OILClientILService.java
  
  Index: OILClientILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILClientILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- OILClientILService.java   2001/08/17 03:04:04 1.2
  +++ OILClientILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -30,7 +30,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class OILClientILService implements Runnable, 
org.jboss.mq.il.ClientILService {
  //the client IL
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/oil/OILServerIL.java
  
  Index: OILServerIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILServerIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- OILServerIL.java  2001/08/17 03:04:04 1.2
  +++ OILServerIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -37,7 +37,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class OILServerIL implements java.io.Serializable, Cloneable, 
org.jboss.mq.il.ServerIL {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/oil/OILServerILService.java
  
  Index: OILServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILServerILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- OILServerILService.java   2001/08/17 03:04:04 1.2
  +++ OILServerILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -51,7 +51,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class OILServerILService extends org.jboss.mq.il.ServerILJMXService 
implements Runnable, OILServerILServiceMBean {
  protected ServerSocket serverSocket;
  
  
  
  1.2.2.1   +0 -0  
jbossmq/src/main/org/jboss/mq/il/oil/OILServerILServiceMBean.java
  
  Index: OILServerILServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/oil/OILServerILServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/examples ClusterReceiver.java ClusterReply.java ClusterRequest.java ClusterSender.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:08

  Modified:src/examples Tag: Branch_2_4 ClusterReceiver.java
ClusterReply.java ClusterRequest.java
ClusterSender.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +3 -3  jbossmq/src/examples/ClusterReceiver.java
  
  Index: ClusterReceiver.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/examples/ClusterReceiver.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- ClusterReceiver.java  2001/03/02 07:04:47 1.1
  +++ ClusterReceiver.java  2001/08/23 03:57:08 1.1.2.1
  @@ -10,13 +10,13 @@
   /**
* @author Hiram Chirino ([EMAIL PROTECTED])
* 
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.1.2.1 $
*/
   public class ClusterReceiver {
   
public static void main(java.lang.String[] args) throws Exception {
   
  - TopicConnectionFactory connectionFactory = new 
org.jbossmq.cluster.jms.ClusterTopicConnectionFactory();
  + TopicConnectionFactory connectionFactory = new 
org.jboss.mq.cluster.jms.ClusterTopicConnectionFactory();
TopicConnection connection = connectionFactory.createTopicConnection();
TopicSession session = connection.createTopicSession(false, 0);
Topic topic = session.createTopic(testTopic);
  @@ -32,4 +32,4 @@
}
   
}
  -}
  \ No newline at end of file
  +}
  
  
  
  1.1.2.1   +3 -3  jbossmq/src/examples/ClusterReply.java
  
  Index: ClusterReply.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/examples/ClusterReply.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- ClusterReply.java 2001/03/02 07:04:47 1.1
  +++ ClusterReply.java 2001/08/23 03:57:08 1.1.2.1
  @@ -7,7 +7,7 @@
   import javax.jms.*;
   
   /**
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.1.2.1 $
*/
   public class ClusterReply {
   
  @@ -32,7 +32,7 @@
final StringREPLY_TEXT = new String(Here is a reply);
   
try {
  - topicConnectionFactory = new 
org.jbossmq.cluster.jms.ClusterTopicConnectionFactory();
  + topicConnectionFactory = new 
org.jboss.mq.cluster.jms.ClusterTopicConnectionFactory();
topicConnection = 
topicConnectionFactory.createTopicConnection();
topicSession = topicConnection.createTopicSession(false,0);
topic = topicSession.createTopic(testTopic);
  @@ -86,4 +86,4 @@
}
}
}
  -}
  \ No newline at end of file
  +}
  
  
  
  1.1.2.1   +2 -2  jbossmq/src/examples/ClusterRequest.java
  
  Index: ClusterRequest.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/examples/ClusterRequest.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- ClusterRequest.java   2001/03/02 07:04:47 1.1
  +++ ClusterRequest.java   2001/08/23 03:57:08 1.1.2.1
  @@ -37,7 +37,7 @@
String replyID;
   
try {
  - connectionFactory = new 
org.jbossmq.cluster.jms.ClusterTopicConnectionFactory();
  + connectionFactory = new 
org.jboss.mq.cluster.jms.ClusterTopicConnectionFactory();
connection = connectionFactory.createTopicConnection();
session = connection.createTopicSession(false, 0);
topic = session.createTopic(testTopic);
  @@ -74,4 +74,4 @@
}
}
}
  -}
  \ No newline at end of file
  +}
  
  
  
  1.1.2.1   +3 -3  jbossmq/src/examples/ClusterSender.java
  
  Index: ClusterSender.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/examples/ClusterSender.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- ClusterSender.java2001/03/02 07:04:47 1.1
  +++ ClusterSender.java2001/08/23 03:57:08 1.1.2.1
  @@ -10,7 +10,7 @@
   /**
* @author Hiram Chirino ([EMAIL PROTECTED])
* 
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.1.2.1 $
*/
   public class ClusterSender {
   
  @@ -20,7 +20,7 @@
 */
public static void main(java.lang.String[] args) throws Exception {
   
  - TopicConnectionFactory connectionFactory = new 
org.jbossmq.cluster.jms.ClusterTopicConnectionFactory();
  + TopicConnectionFactory connectionFactory = new 

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/cluster/jms ClusterConnectionMetaData.java ClusterTemporaryTopic.java ClusterTopic.java ClusterTopicConnection.java ClusterTopicConnectionFactory.java ClusterTopicPublisher.java ClusterTopicSession.java ClusterTopicSubscriber.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:09

  Added:   src/main/org/jboss/mq/cluster/jms Tag: Branch_2_4
ClusterConnectionMetaData.java
ClusterTemporaryTopic.java ClusterTopic.java
ClusterTopicConnection.java
ClusterTopicConnectionFactory.java
ClusterTopicPublisher.java ClusterTopicSession.java
ClusterTopicSubscriber.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterConnectionMetaData.java
  
  Index: ClusterConnectionMetaData.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterConnectionMetaData.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClusterConnectionMetaData.java2001/08/17 03:04:03 1.2
  +++ ClusterConnectionMetaData.java2001/08/23 03:57:09 1.2.2.1
  @@ -17,7 +17,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ClusterConnectionMetaData implements ConnectionMetaData {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTemporaryTopic.java
  
  Index: ClusterTemporaryTopic.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTemporaryTopic.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClusterTemporaryTopic.java2001/08/17 03:04:03 1.2
  +++ ClusterTemporaryTopic.java2001/08/23 03:57:09 1.2.2.1
  @@ -18,7 +18,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ClusterTemporaryTopic implements Serializable, TemporaryTopic {
  NodeId   nodeId;
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopic.java
  
  Index: ClusterTopic.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopic.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClusterTopic.java 2001/08/17 03:04:03 1.2
  +++ ClusterTopic.java 2001/08/23 03:57:09 1.2.2.1
  @@ -16,7 +16,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ClusterTopic implements Serializable, Topic {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopicConnection.java
  
  Index: ClusterTopicConnection.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopicConnection.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClusterTopicConnection.java   2001/08/17 03:04:03 1.2
  +++ ClusterTopicConnection.java   2001/08/23 03:57:09 1.2.2.1
  @@ -42,7 +42,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ClusterTopicConnection implements Serializable, TopicConnection, 
TransportListener {
  //Is the connection stopped ?
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopicConnectionFactory.java
  
  Index: ClusterTopicConnectionFactory.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopicConnectionFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClusterTopicConnectionFactory.java2001/08/17 03:04:03 1.2
  +++ ClusterTopicConnectionFactory.java2001/08/23 03:57:09 1.2.2.1
  @@ -20,7 +20,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ClusterTopicConnectionFactory implements java.io.Serializable, 
javax.jms.TopicConnectionFactory {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/jms/ClusterTopicPublisher.java
  
  Index: ClusterTopicPublisher.java
  ===
  RCS file: 

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/jvm JVMClientIL.java JVMClientILService.java JVMServerIL.java JVMServerILFactory.java JVMServerILService.java JVMServerILServiceMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:10

  Added:   src/main/org/jboss/mq/il/jvm Tag: Branch_2_4
JVMClientIL.java JVMClientILService.java
JVMServerIL.java JVMServerILFactory.java
JVMServerILService.java
JVMServerILServiceMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/jvm/JVMClientIL.java
  
  Index: JVMClientIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMClientIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JVMClientIL.java  2001/08/17 03:04:03 1.2
  +++ JVMClientIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -20,7 +20,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class JVMClientIL implements ClientIL {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/jvm/JVMClientILService.java
  
  Index: JVMClientILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMClientILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JVMClientILService.java   2001/08/17 03:04:03 1.2
  +++ JVMClientILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -21,7 +21,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class JVMClientILService implements org.jboss.mq.il.ClientILService {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerIL.java
  
  Index: JVMServerIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JVMServerIL.java  2001/08/17 03:04:03 1.2
  +++ JVMServerIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -28,7 +28,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class JVMServerIL implements org.jboss.mq.il.ServerIL {
  //The server implementation
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILFactory.java
  
  Index: JVMServerILFactory.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JVMServerILFactory.java   2001/08/17 03:04:03 1.2
  +++ JVMServerILFactory.java   2001/08/23 03:57:10 1.2.2.1
  @@ -17,7 +17,7 @@
*
* @author David Maplesden
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class JVMServerILFactory implements ServerILFactory {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
  
  Index: JVMServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JVMServerILService.java   2001/08/17 03:04:03 1.2
  +++ JVMServerILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -23,7 +23,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService 
implements JVMServerILServiceMBean {
  /**
  
  
  
  1.2.2.1   +0 -0  
jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILServiceMBean.java
  
  Index: JVMServerILServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/pm/logged IntegrityLog.java ObjectIntegrityLog.java PersistenceManager.java PersistenceManagerMBean.java SpyMessageLog.java SpyMessageLogTester.java SpyTxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/pm/logged Tag: Branch_2_4
IntegrityLog.java ObjectIntegrityLog.java
PersistenceManager.java
PersistenceManagerMBean.java SpyMessageLog.java
SpyMessageLogTester.java SpyTxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/logged/IntegrityLog.java
  
  Index: IntegrityLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/IntegrityLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- IntegrityLog.java 2001/08/17 03:04:05 1.2
  +++ IntegrityLog.java 2001/08/23 03:57:11 1.2.2.1
  @@ -21,7 +21,7 @@
*
* @createdAugust 16, 2001
* @author:Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class IntegrityLog {
  // in bytes
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/logged/ObjectIntegrityLog.java
  
  Index: ObjectIntegrityLog.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/ObjectIntegrityLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ObjectIntegrityLog.java   2001/08/17 03:04:05 1.2
  +++ ObjectIntegrityLog.java   2001/08/23 03:57:11 1.2.2.1
  @@ -24,7 +24,7 @@
*
* @createdAugust 16, 2001
* @author:Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ObjectIntegrityLog {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/logged/PersistenceManager.java
  
  Index: PersistenceManager.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/PersistenceManager.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManager.java   2001/08/17 03:04:05 1.2
  +++ PersistenceManager.java   2001/08/23 03:57:11 1.2.2.1
  @@ -33,7 +33,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class PersistenceManager extends org.jboss.util.ServiceMBeanSupport 
implements PersistenceManagerMBean, org.jboss.mq.pm.PersistenceManager {
  // Log file used to store commited transactions.
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/logged/PersistenceManagerMBean.java
  
  Index: PersistenceManagerMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/PersistenceManagerMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManagerMBean.java  2001/08/17 03:04:05 1.2
  +++ PersistenceManagerMBean.java  2001/08/23 03:57:11 1.2.2.1
  @@ -41,7 +41,7 @@
* @author Vincent Sheffer ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seerelated
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface PersistenceManagerMBean
  extends org.jboss.util.ServiceMBean {
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/logged/SpyMessageLog.java
  
  Index: SpyMessageLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/SpyMessageLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyMessageLog.java2001/08/17 03:04:05 1.2
  +++ SpyMessageLog.java2001/08/23 03:57:11 1.2.2.1
  @@ -21,7 +21,7 @@
*
* @createdAugust 16, 2001
* @author:Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SpyMessageLog {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/logged/SpyMessageLogTester.java
  
  Index: SpyMessageLogTester.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/logged/SpyMessageLogTester.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyMessageLogTester.java  2001/08/17 03:04:05 1.2
  +++ SpyMessageLogTester.java  2001/08/23 03:57:11 1.2.2.1
  @@ -13,7 +13,7 @@
*
* @createdAugust 16, 2001
* @author:

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/selectors Identifier.java Operator.java Selector.java parser.java parserval.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:12

  Added:   src/main/org/jboss/mq/selectors Tag: Branch_2_4
Identifier.java Operator.java Selector.java
parser.java parserval.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/selectors/Identifier.java
  
  Index: Identifier.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/selectors/Identifier.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- Identifier.java   2001/08/17 03:04:06 1.2
  +++ Identifier.java   2001/08/23 03:57:12 1.2.2.1
  @@ -41,7 +41,7 @@
*
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class Identifier {
  String   name;
  
  
  
  1.3.2.1   +0 -2  jbossmq/src/main/org/jboss/mq/selectors/Operator.java
  
  Index: Operator.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/selectors/Operator.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Operator.java 2001/08/22 00:44:44 1.3
  +++ Operator.java 2001/08/23 03:57:12 1.3.2.1
  @@ -14,7 +14,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author [EMAIL PROTECTED]
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public class Operator {
  int  operation;
  @@ -183,9 +183,7 @@
case STRING:
case LONG:
case DOUBLE:
  - case BOOLEAN:
   computeArgument2();
  -
   if ( arg2 == null ) {
  return Boolean.FALSE;
   }
  
  
  
  1.3.2.1   +61 -104   jbossmq/src/main/org/jboss/mq/selectors/Selector.java
  
  Index: Selector.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/selectors/Selector.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Selector.java 2001/08/22 00:53:35 1.3
  +++ Selector.java 2001/08/23 03:57:12 1.3.2.1
  @@ -8,11 +8,9 @@
   
   import java.util.HashMap;
   import java.util.Iterator;
  -
   import javax.jms.InvalidSelectorException;
  -import javax.jms.JMSException;
   
  -import org.apache.log4j.Category;
  +import javax.jms.JMSException;
   
   import org.jboss.mq.SpyMessage;
   
  @@ -21,153 +19,112 @@
*
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Juha Lindfors ([EMAIL PROTECTED])
  - * @author a href=mailto:[EMAIL PROTECTED];Jason Dillon/a
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
  -public class Selector
  -{
  -   public HashMap identifiers;
  -   public Object result;
  -   private Class resultType;
  -   
  -   static Category cat = Category.getInstance(Selector.class);
  +public class Selector {
  +   public HashMap   identifiers;
  +   // HashMap of Identifiers
  +   public Objectresult;
   
  -   public Selector(String sel) throws JMSException {
  +   static org.apache.log4j.Category cat = org.apache.log4j.Category.getInstance( 
Selector.class );
  +
  +   public Selector( String sel )
  +  throws JMSException {
 parser bob = new parser();
 identifiers = new HashMap();
   
 try {
  - result = bob.parse(sel, identifiers);
  - resultType = result.getClass();
  -  }
  -  catch (Exception e) {
  - InvalidSelectorException exception =
  -new InvalidSelectorException(The selector is invalid.);
  - exception.setLinkedException(e);
  + result = bob.parse( sel, identifiers );
  +  } catch ( Exception e ) {
  + InvalidSelectorException exception = new InvalidSelectorException( The 
selector is invalid. );
  + exception.setLinkedException( e );
throw exception;
 }
   
  -//   if (cat.isDebugEnabled()) {
  -//  cat.debug(result:  + resultType +  =  + result);
  -//   }
  +  //Log.notice(result.toString());
  }
  +
  +   public boolean test( SpyMessage mes )
  +  throws JMSException {
   
  -   public boolean test(SpyMessage mes) throws JMSException {
 try {
  - // Set the identifiers values
  +
  + //Set the identifiers values
Iterator i = identifiers.values().iterator();
  +
  + while ( i.hasNext() ) {
  +Identifier id = ( Identifier )i.next();
   
  - while 

[JBoss-dev] CVS update: jbossmq/src/build build.xml

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:08

  Modified:src/build Tag: Branch_2_4 build.xml
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.8.2.1   +13 -14jbossmq/src/build/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/build/Attic/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -r1.8 -r1.8.2.1
  --- build.xml 2001/06/24 02:15:11 1.8
  +++ build.xml 2001/08/23 03:57:08 1.8.2.1
  @@ -19,7 +19,7 @@
   
 property name=Name value=JBossMQ/
 property name=name value=jbossmq/
  -  property name=version value=0.8/
  +  property name=version value=1.0.0/
 
 property name=bin.dir value=${basedir}/bin/
 property name=src.bin.dir value=${basedir}/src/bin/
  @@ -40,7 +40,7 @@
 property name=build.javadocs.dir value=${build.dir}/docs/api/
 property name=dist.dir value=dist/
 
  -  property name=packages value=org.jbossmq.* /
  +  property name=packages value=org.jboss.mq.* /
 
 property name=build.compiler value=classic/
 
  @@ -83,15 +83,14 @@
   !--
   javac srcdir=${examples.dir} destdir=${build.examples} 
classpath=${build.lib}/**/*.jar;${build.dest} debug=${debug}/
   --
  - 
   rmic base=${build.classes.dir} 
  - classname=org.jbossmq.distributed.server.DistributedJMSServerRMIImpl 
  + classname=org.jboss.mq.il.rmi.RMIServerIL 
stubVersion=1.2 
   classpath refid=classpath/
   /rmic
   
   rmic base=${build.classes.dir} 
  - classname=org.jbossmq.distributed.server.ConnectionReceiverRMIImpl 
  + classname=org.jboss.mq.il.rmi.RMIClientIL 
stubVersion=1.2 
   classpath refid=classpath/
   /rmic
  @@ -103,11 +102,9 @@
 !-- === --
 target name=jar depends=compile
   
  -!--
   copy todir=${build.classes.dir}
fileset dir=${src.resources}/
   /copy
  ---
   
   mkdir dir=${build.lib.dir}/ext/
jar jarfile=${build.lib.dir}/ext/jbossmq.jar 
  @@ -117,13 +114,13 @@
   mkdir dir=${build.dir}/client/
jar jarfile=${build.dir}/client/jbossmq-client.jar 
basedir=${build.classes.dir} 
  - includes=org/jbossmq/*,
  - org/jbossmq/referenceable/**,
  - org/jbossmq/distributed/**,
  - org/jbossmq/cluster/**,
  - org/jbossmq/xml/**,
  - org/jbossmq/multiplexor/**,
  - org/jbossmq/selectors/**/
  + includes=log4j.properties,
  +  org/jboss/mq/*
  +  org/jboss/mq/referenceable/**
  +   org/jboss/mq/il/**
  +   org/jboss/mq/cluster/**
  +   org/jboss/mq/xml/**
  +   org/jboss/mq/selectors/**/
   
 /target
   
  @@ -187,6 +184,8 @@
includes=oswego-concurrent.jar,
gnu-regexp-1.0.8.jar,
jndi.jar,
  + oswego-concurrent.jar,
  + log4j.jar,
jboss-j2ee.jar/
/copy
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/xml XElement.java XElementConsumer.java XElementException.java XElementProducer.java XElementTester.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:12

  Added:   src/main/org/jboss/mq/xml Tag: Branch_2_4 XElement.java
XElementConsumer.java XElementException.java
XElementProducer.java XElementTester.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.3.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/xml/XElement.java
  
  Index: XElement.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/xml/XElement.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- XElement.java 2001/08/17 13:47:50 1.3
  +++ XElement.java 2001/08/23 03:57:12 1.3.2.1
  @@ -48,7 +48,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public class XElement {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/xml/XElementConsumer.java
  
  Index: XElementConsumer.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/xml/XElementConsumer.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- XElementConsumer.java 2001/08/17 03:04:07 1.2
  +++ XElementConsumer.java 2001/08/23 03:57:12 1.2.2.1
  @@ -43,7 +43,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface XElementConsumer {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/xml/XElementException.java
  
  Index: XElementException.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/xml/XElementException.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- XElementException.java2001/08/17 03:04:07 1.2
  +++ XElementException.java2001/08/23 03:57:12 1.2.2.1
  @@ -41,7 +41,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class XElementException extends Exception {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/xml/XElementProducer.java
  
  Index: XElementProducer.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/xml/XElementProducer.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- XElementProducer.java 2001/08/17 03:04:07 1.2
  +++ XElementProducer.java 2001/08/23 03:57:12 1.2.2.1
  @@ -25,7 +25,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class XElementProducer {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/xml/XElementTester.java
  
  Index: XElementTester.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/xml/XElementTester.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- XElementTester.java   2001/08/17 03:04:07 1.2
  +++ XElementTester.java   2001/08/23 03:57:12 1.2.2.1
  @@ -41,7 +41,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class XElementTester {
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/pm PersistenceManager.java Tx.java TxManager.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/pm Tag: Branch_2_4
PersistenceManager.java Tx.java TxManager.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/PersistenceManager.java
  
  Index: PersistenceManager.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/PersistenceManager.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManager.java   2001/08/17 03:04:04 1.2
  +++ PersistenceManager.java   2001/08/23 03:57:11 1.2.2.1
  @@ -23,7 +23,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Paul Kendall ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface PersistenceManager {
   
  
  
  
  1.2.2.1   +0 -0  jbossmq/src/main/org/jboss/mq/pm/Tx.java
  
  Index: Tx.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/Tx.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/TxManager.java
  
  Index: TxManager.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/TxManager.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- TxManager.java2001/08/17 03:04:04 1.2
  +++ TxManager.java2001/08/23 03:57:11 1.2.2.1
  @@ -24,7 +24,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Paul Kendall ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class TxManager {
   
  
  
  

___
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/uil UILClientIL.java UILClientILService.java UILServerIL.java UILServerILService.java UILServerILServiceMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/il/uil Tag: Branch_2_4
UILClientIL.java UILClientILService.java
UILServerIL.java UILServerILService.java
UILServerILServiceMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/uil/UILClientIL.java
  
  Index: UILClientIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILClientIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UILClientIL.java  2001/08/17 03:04:04 1.2
  +++ UILClientIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -28,7 +28,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class UILClientIL implements ClientIL, java.io.Serializable {
  transient SocketMultiplexor mSocket;
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/uil/UILClientILService.java
  
  Index: UILClientILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILClientILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UILClientILService.java   2001/08/17 03:04:04 1.2
  +++ UILClientILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -29,7 +29,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class UILClientILService implements Runnable, 
org.jboss.mq.il.ClientILService {
  //the client IL
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/uil/UILServerIL.java
  
  Index: UILServerIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UILServerIL.java  2001/08/17 03:04:04 1.2
  +++ UILServerIL.java  2001/08/23 03:57:10 1.2.2.1
  @@ -37,7 +37,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class UILServerIL implements java.io.Serializable, Cloneable, 
org.jboss.mq.il.ServerIL {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java
  
  Index: UILServerILService.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- UILServerILService.java   2001/08/17 03:04:04 1.2
  +++ UILServerILService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -51,7 +51,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class UILServerILService extends org.jboss.mq.il.ServerILJMXService 
implements Runnable, UILServerILServiceMBean {
  protected ServerSocket serverSocket;
  
  
  
  1.2.2.1   +0 -0  
jbossmq/src/main/org/jboss/mq/il/uil/UILServerILServiceMBean.java
  
  Index: UILServerILServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/UILServerILServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/etc/conf/default jbossmq-state.xml jboss.jcml jbossmq.properties jbossmq.xml

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:08

  Modified:src/etc/conf/default Tag: Branch_2_4 jboss.jcml
  Added:   src/etc/conf/default Tag: Branch_2_4 jbossmq-state.xml
  Removed: src/etc/conf/default Tag: Branch_2_4 jbossmq.properties
jbossmq.xml
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.3.2.1   +63 -2 jbossmq/src/etc/conf/default/Attic/jboss.jcml
  
  Index: jboss.jcml
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/etc/conf/default/Attic/jboss.jcml,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- jboss.jcml2001/06/24 21:15:30 1.3
  +++ jboss.jcml2001/08/23 03:57:08 1.3.2.1
  @@ -22,7 +22,68 @@
 /mbean
 mbean code=org.jboss.naming.JNDIView name=DefaultDomain:service=JNDIView /
   
  -  !-- For Message Driven Beans --
  -  mbean code=org.jbossmq.server.JBossMQService 
name=DefaultDomain:service=JBossMQ /
  +  !--  --
  +  !-- JBossMQ  --
  +  !--  --
  +  mbean code=org.jboss.mq.server.JBossMQService name=JBossMQ:service=Server/
  +
  +  !-- The StateManager is used to keep JMS perisitent state data. --
  +  !-- For example: what durable subscriptions are active. --
  +  mbean code=org.jboss.mq.server.StateManager 
name=JBossMQ:service=StateManager
  + attribute name=StateFilejbossmq-state.xml/attribute
  +  /mbean
  +
  +  !-- The PersistenceManager is used to store messages to disk. --
  +  mbean code=org.jboss.mq.pm.rollinglogged.PersistenceManager 
name=JBossMQ:service=PersistenceManager
  +attribute name=DataDirectory../../db/jbossmq//attribute
  +  /mbean
  +
  +  !-- InvocationLayers are the different transport methods that can be used to 
access the server --
  +  mbean code=org.jboss.mq.il.jvm.JVMServerILService 
name=JBossMQ:service=InvocationLayer,type=JVM
  +attribute name=ConnectionFactoryJNDIRefjava:/ConnectionFactory/attribute
  +attribute 
name=XAConnectionFactoryJNDIRefjava:/XAConnectionFactory/attribute
  +  /mbean
  +
  +  mbean code=org.jboss.mq.il.rmi.RMIServerILService 
name=JBossMQ:service=InvocationLayer,type=RMI 
  +attribute name=ConnectionFactoryJNDIRefRMIConnectionFactory/attribute
  +attribute name=XAConnectionFactoryJNDIRefRMIXAConnectionFactory/attribute
  +  /mbean
  +
  +  mbean code=org.jboss.mq.il.oil.OILServerILService 
name=JBossMQ:service=InvocationLayer,type=OIL
  +attribute name=ConnectionFactoryJNDIRefConnectionFactory/attribute
  +attribute name=XAConnectionFactoryJNDIRefXAConnectionFactory/attribute
  +  /mbean
  +
  +  mbean code=org.jboss.mq.il.uil.UILServerILService 
name=JBossMQ:service=InvocationLayer,type=UIL
  +attribute name=ConnectionFactoryJNDIRefUILConnectionFactory/attribute
  +attribute name=XAConnectionFactoryJNDIRefUILXAConnectionFactory/attribute
  +  /mbean
  +
  +  !-- The following three line create 3 topics named: testTopic, example, and bob 
--
  +  mbean code=org.jboss.mq.server.TopicManager 
name=JBossMQ:service=Topic,name=testTopic/
  +  mbean code=org.jboss.mq.server.TopicManager 
name=JBossMQ:service=Topic,name=example/
  +  mbean code=org.jboss.mq.server.TopicManager 
name=JBossMQ:service=Topic,name=bob/
  +
  +  !-- The following 9 line create 9 topics named: testQueue, controlQueue, A, B, 
--
  +  !-- C, D, E, F, and ex -- 
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=testQueue/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=controlQueue/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=A/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=B/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=C/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=D/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=E/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=F/
  +  mbean code=org.jboss.mq.server.QueueManager 
name=JBossMQ:service=Queue,name=ex/
  +
  +  !-- Used for backwards compatability with JBossMQ versions before 1.0.0 --
  +  mbean code=org.jboss.naming.NamingAlias 
name=DefaultDomain:service=NamingAlias,fromName=QueueConnectionFactory
  +attribute name=ToNameConnectionFactory/attribute
  +attribute name=FromNameQueueConnectionFactory/attribute
  +  /mbean
  +  mbean code=org.jboss.naming.NamingAlias 
name=DefaultDomain:service=NamingAlias,fromName=TopicConnectionFactory
  +attribute name=ToNameConnectionFactory/attribute
  +attribute 

[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/cluster/transport InvalidConfigurationException.java InvalidStateException.java NodeId.java SerializerUtil.java Transport.java TransportListener.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/cluster/transport Tag: Branch_2_4
InvalidConfigurationException.java
InvalidStateException.java NodeId.java
SerializerUtil.java Transport.java
TransportListener.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/pm/jdbc MessageLog.java PersistenceManager.java PersistenceManagerMBean.java TxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/pm/jdbc Tag: Branch_2_4
MessageLog.java PersistenceManager.java
PersistenceManagerMBean.java TxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/jdbc/MessageLog.java
  
  Index: MessageLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/jdbc/MessageLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- MessageLog.java   2001/08/17 03:04:05 1.2
  +++ MessageLog.java   2001/08/23 03:57:11 1.2.2.1
  @@ -29,7 +29,7 @@
*
* @createdAugust 16, 2001
* @author:Jayesh Parayali ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class MessageLog {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/jdbc/PersistenceManager.java
  
  Index: PersistenceManager.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/jdbc/PersistenceManager.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManager.java   2001/08/17 03:04:05 1.2
  +++ PersistenceManager.java   2001/08/23 03:57:11 1.2.2.1
  @@ -41,7 +41,7 @@
*
* @createdAugust 16, 2001
* @author:Jayesh Parayali ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class PersistenceManager extends org.jboss.util.ServiceMBeanSupport 
implements PersistenceManagerMBean, org.jboss.mq.pm.PersistenceManager {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/jdbc/PersistenceManagerMBean.java
  
  Index: PersistenceManagerMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/jdbc/PersistenceManagerMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManagerMBean.java  2001/08/17 03:04:05 1.2
  +++ PersistenceManagerMBean.java  2001/08/23 03:57:11 1.2.2.1
  @@ -41,7 +41,7 @@
* @author Vincent Sheffer ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seerelated
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface PersistenceManagerMBean
  extends org.jboss.util.ServiceMBean {
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/jdbc/TxLog.java
  
  Index: TxLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/jdbc/TxLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- TxLog.java2001/08/17 03:04:05 1.2
  +++ TxLog.java2001/08/23 03:57:11 1.2.2.1
  @@ -25,7 +25,7 @@
*
* @createdAugust 16, 2001
* @author:Jayesh Parayali ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class TxLog {
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/cluster/jms ClusterConnectionMetaData.java ClusterTemporaryTopic.java ClusterTopic.java ClusterTopicConnection.java ClusterTopicConnectionFactory.java ClusterTopicPublisher.java ClusterTopicSession.java ClusterTopicSubscriber.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/cluster/jms Tag: Branch_2_4
ClusterConnectionMetaData.java
ClusterTemporaryTopic.java ClusterTopic.java
ClusterTopicConnection.java
ClusterTopicConnectionFactory.java
ClusterTopicPublisher.java ClusterTopicSession.java
ClusterTopicSubscriber.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/pm/file MessageLog.java PersistenceManager.java PersistenceManagerMBean.java TxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/pm/file Tag: Branch_2_4
MessageLog.java PersistenceManager.java
PersistenceManagerMBean.java TxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/file/MessageLog.java
  
  Index: MessageLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/file/MessageLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- MessageLog.java   2001/08/17 03:04:05 1.2
  +++ MessageLog.java   2001/08/23 03:57:11 1.2.2.1
  @@ -24,7 +24,7 @@
*
* @createdAugust 16, 2001
* @author:Paul Kendall ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class MessageLog {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/file/PersistenceManager.java
  
  Index: PersistenceManager.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/file/PersistenceManager.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManager.java   2001/08/17 03:04:05 1.2
  +++ PersistenceManager.java   2001/08/23 03:57:11 1.2.2.1
  @@ -32,7 +32,7 @@
*
* @author Paul Kendall ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class PersistenceManager extends org.jboss.util.ServiceMBeanSupport 
implements PersistenceManagerMBean, org.jboss.mq.pm.PersistenceManager {
  protected java.util.ArrayList txPool = new java.util.ArrayList();
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/file/PersistenceManagerMBean.java
  
  Index: PersistenceManagerMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/file/PersistenceManagerMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManagerMBean.java  2001/08/17 03:04:05 1.2
  +++ PersistenceManagerMBean.java  2001/08/23 03:57:11 1.2.2.1
  @@ -41,7 +41,7 @@
* @author Vincent Sheffer ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seerelated
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface PersistenceManagerMBean
  extends org.jboss.util.ServiceMBean {
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/file/TxLog.java
  
  Index: TxLog.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/file/TxLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- TxLog.java2001/08/17 03:04:05 1.2
  +++ TxLog.java2001/08/23 03:57:11 1.2.2.1
  @@ -20,7 +20,7 @@
*
* @createdAugust 16, 2001
* @author:Paul Kendall ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class TxLog {
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/cluster/transport InvalidConfigurationException.java InvalidStateException.java NodeId.java SerializerUtil.java Transport.java TransportListener.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:09

  Added:   src/main/org/jboss/mq/cluster/transport Tag: Branch_2_4
InvalidConfigurationException.java
InvalidStateException.java NodeId.java
SerializerUtil.java Transport.java
TransportListener.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/InvalidConfigurationException.java
  
  Index: InvalidConfigurationException.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/InvalidConfigurationException.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- InvalidConfigurationException.java2001/08/17 03:04:03 1.2
  +++ InvalidConfigurationException.java2001/08/23 03:57:09 1.2.2.1
  @@ -11,7 +11,7 @@
   /**
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class InvalidConfigurationException extends Exception {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/InvalidStateException.java
  
  Index: InvalidStateException.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/InvalidStateException.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- InvalidStateException.java2001/08/17 03:04:03 1.2
  +++ InvalidStateException.java2001/08/23 03:57:09 1.2.2.1
  @@ -11,7 +11,7 @@
   /**
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class InvalidStateException extends Exception {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/cluster/transport/NodeId.java
  
  Index: NodeId.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/NodeId.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- NodeId.java   2001/08/17 03:04:03 1.2
  +++ NodeId.java   2001/08/23 03:57:09 1.2.2.1
  @@ -5,7 +5,7 @@
   /**
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface NodeId {
   }
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/SerializerUtil.java
  
  Index: SerializerUtil.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/SerializerUtil.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SerializerUtil.java   2001/08/17 03:04:03 1.2
  +++ SerializerUtil.java   2001/08/23 03:57:09 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SerializerUtil {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/cluster/transport/Transport.java
  
  Index: Transport.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/Transport.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- Transport.java2001/08/17 03:04:03 1.2
  +++ Transport.java2001/08/23 03:57:09 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface Transport {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/cluster/transport/TransportListener.java
  
  Index: TransportListener.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/cluster/transport/TransportListener.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- TransportListener.java2001/08/17 03:04:03 1.2
  +++ TransportListener.java2001/08/23 03:57:09 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public 

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il ClientIL.java ClientILService.java ServerIL.java ServerILFactory.java ServerILJMXService.java ServerILJMXServiceMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:10

  Added:   src/main/org/jboss/mq/il Tag: Branch_2_4 ClientIL.java
ClientILService.java ServerIL.java
ServerILFactory.java ServerILJMXService.java
ServerILJMXServiceMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ClientIL.java
  
  Index: ClientIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ClientIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClientIL.java 2001/08/17 03:04:03 1.2
  +++ ClientIL.java 2001/08/23 03:57:10 1.2.2.1
  @@ -16,7 +16,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface ClientIL {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ClientILService.java
  
  Index: ClientILService.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ClientILService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ClientILService.java  2001/08/17 03:04:03 1.2
  +++ ClientILService.java  2001/08/23 03:57:10 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface ClientILService {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ServerIL.java
  
  Index: ServerIL.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ServerIL.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ServerIL.java 2001/08/17 03:04:03 1.2
  +++ ServerIL.java 2001/08/23 03:57:10 1.2.2.1
  @@ -26,7 +26,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author Norbert Lataille ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface ServerIL {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ServerILFactory.java
  
  Index: ServerILFactory.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ServerILFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ServerILFactory.java  2001/08/17 03:04:03 1.2
  +++ ServerILFactory.java  2001/08/23 03:57:10 1.2.2.1
  @@ -15,7 +15,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface ServerILFactory {
  // init is called before any calls are made to getServerIL()
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ServerILJMXService.java
  
  Index: ServerILJMXService.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ServerILJMXService.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ServerILJMXService.java   2001/08/17 03:04:03 1.2
  +++ ServerILJMXService.java   2001/08/23 03:57:10 1.2.2.1
  @@ -23,7 +23,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public abstract class ServerILJMXService extends org.jboss.util.ServiceMBeanSupport 
implements ServerILJMXServiceMBean {
  private String   connectionFactoryJNDIRef;
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/ServerILJMXServiceMBean.java
  
  Index: ServerILJMXServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/ServerILJMXServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ServerILJMXServiceMBean.java  2001/08/17 03:04:03 1.2
  +++ ServerILJMXServiceMBean.java  2001/08/23 03:57:10 1.2.2.1
  @@ -13,7 +13,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface ServerILJMXServiceMBean extends 

[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/il/uil/multiplexor DemuxInputStream.java MultiplexorTest.java MuxOutputStream.java SocketMultiplexor.java StreamDemux.java StreamMux.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:11

  Added:   src/main/org/jboss/mq/il/uil/multiplexor Tag: Branch_2_4
DemuxInputStream.java MultiplexorTest.java
MuxOutputStream.java SocketMultiplexor.java
StreamDemux.java StreamMux.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/DemuxInputStream.java
  
  Index: DemuxInputStream.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/DemuxInputStream.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- DemuxInputStream.java 2001/08/17 03:04:04 1.2
  +++ DemuxInputStream.java 2001/08/23 03:57:11 1.2.2.1
  @@ -16,7 +16,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   class DemuxInputStream extends InputStream {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/MultiplexorTest.java
  
  Index: MultiplexorTest.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/MultiplexorTest.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- MultiplexorTest.java  2001/08/17 03:04:04 1.2
  +++ MultiplexorTest.java  2001/08/23 03:57:11 1.2.2.1
  @@ -25,7 +25,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class MultiplexorTest {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/MuxOutputStream.java
  
  Index: MuxOutputStream.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/MuxOutputStream.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- MuxOutputStream.java  2001/08/17 03:04:04 1.2
  +++ MuxOutputStream.java  2001/08/23 03:57:11 1.2.2.1
  @@ -16,7 +16,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   class MuxOutputStream extends OutputStream {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/SocketMultiplexor.java
  
  Index: SocketMultiplexor.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/SocketMultiplexor.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SocketMultiplexor.java2001/08/17 03:04:04 1.2
  +++ SocketMultiplexor.java2001/08/23 03:57:11 1.2.2.1
  @@ -19,7 +19,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SocketMultiplexor {
  StreamMuxmux;
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/StreamDemux.java
  
  Index: StreamDemux.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/StreamDemux.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- StreamDemux.java  2001/08/17 03:04:04 1.2
  +++ StreamDemux.java  2001/08/23 03:57:11 1.2.2.1
  @@ -15,7 +15,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class StreamDemux {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/StreamMux.java
  
  Index: StreamMux.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/uil/multiplexor/StreamMux.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- StreamMux.java2001/08/17 03:04:04 1.2
  +++ StreamMux.java2001/08/23 03:57:11 1.2.2.1
  @@ -14,7 +14,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class StreamMux {
   
  
  
  

___
Jboss-development mailing 

[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/distributed/interfaces ConnectionReceiver.java ConnectionReceiverSetup.java DistributedConnectionFactory.java DistributedConnectionFactoryMBean.java DistributedJMSServer.java DistributedJMSServerSetup.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/distributed/interfaces Tag: Branch_2_4
ConnectionReceiver.java
ConnectionReceiverSetup.java
DistributedConnectionFactory.java
DistributedConnectionFactoryMBean.java
DistributedJMSServer.java
DistributedJMSServerSetup.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/pm/rollinglogged IntegrityLog.java PersistenceManager.java PersistenceManagerMBean.java SpyMessageLog.java SpyTxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:12

  Added:   src/main/org/jboss/mq/pm/rollinglogged Tag: Branch_2_4
IntegrityLog.java PersistenceManager.java
PersistenceManagerMBean.java SpyMessageLog.java
SpyTxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/rollinglogged/IntegrityLog.java
  
  Index: IntegrityLog.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/rollinglogged/IntegrityLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- IntegrityLog.java 2001/08/17 03:04:05 1.2
  +++ IntegrityLog.java 2001/08/23 03:57:11 1.2.2.1
  @@ -17,7 +17,7 @@
*
* @createdAugust 16, 2001
* @author:David Maplesden ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class IntegrityLog {
   
  
  
  
  1.3.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/rollinglogged/PersistenceManager.java
  
  Index: PersistenceManager.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/rollinglogged/PersistenceManager.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- PersistenceManager.java   2001/08/17 03:04:05 1.3
  +++ PersistenceManager.java   2001/08/23 03:57:11 1.3.2.1
  @@ -28,7 +28,7 @@
*
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public class PersistenceManager extends org.jboss.util.ServiceMBeanSupport 
implements org.jboss.mq.pm.PersistenceManager, PersistenceManagerMBean {
   
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/rollinglogged/PersistenceManagerMBean.java
  
  Index: PersistenceManagerMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/rollinglogged/PersistenceManagerMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- PersistenceManagerMBean.java  2001/08/17 03:04:05 1.2
  +++ PersistenceManagerMBean.java  2001/08/23 03:57:11 1.2.2.1
  @@ -13,7 +13,7 @@
* @author Vincent Sheffer ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seerelated
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface PersistenceManagerMBean
  extends org.jboss.util.ServiceMBean {
  
  
  
  1.2.2.1   +1 -1  
jbossmq/src/main/org/jboss/mq/pm/rollinglogged/SpyMessageLog.java
  
  Index: SpyMessageLog.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/rollinglogged/SpyMessageLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyMessageLog.java2001/08/17 03:04:05 1.2
  +++ SpyMessageLog.java2001/08/23 03:57:11 1.2.2.1
  @@ -20,7 +20,7 @@
*
* @createdAugust 16, 2001
* @author:Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SpyMessageLog {
   
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/pm/rollinglogged/SpyTxLog.java
  
  Index: SpyTxLog.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/pm/rollinglogged/SpyTxLog.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- SpyTxLog.java 2001/08/17 03:04:05 1.2
  +++ SpyTxLog.java 2001/08/23 03:57:11 1.2.2.1
  @@ -18,7 +18,7 @@
*
* @createdAugust 16, 2001
* @author:Hiram Chirino ([EMAIL PROTECTED])
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class SpyTxLog {
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/server BasicQueue.java ClientConsumer.java JBossMQService.java JBossMQServiceMBean.java JMSDestination.java JMSQueue.java JMSServer.java JMSServerMBean.java JMSTopic.java PersistentQueue.java QueueManager.java QueueManagerMBean.java StateManager.java StateManagerMBean.java TopicManager.java TopicManagerMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:12

  Added:   src/main/org/jboss/mq/server Tag: Branch_2_4 BasicQueue.java
ClientConsumer.java JBossMQService.java
JBossMQServiceMBean.java JMSDestination.java
JMSQueue.java JMSServer.java JMSServerMBean.java
JMSTopic.java PersistentQueue.java
QueueManager.java QueueManagerMBean.java
StateManager.java StateManagerMBean.java
TopicManager.java TopicManagerMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.4.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/BasicQueue.java
  
  Index: BasicQueue.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/BasicQueue.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- BasicQueue.java   2001/08/17 03:04:06 1.4
  +++ BasicQueue.java   2001/08/23 03:57:12 1.4.2.1
  @@ -30,7 +30,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.4 $
  + * @version$Revision: 1.4.2.1 $
*/
   //abstract public class BasicQueue implements Runnable {
   public class BasicQueue {
  
  
  
  1.4.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/ClientConsumer.java
  
  Index: ClientConsumer.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/ClientConsumer.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- ClientConsumer.java   2001/08/17 03:04:06 1.4
  +++ ClientConsumer.java   2001/08/23 03:57:12 1.4.2.1
  @@ -25,7 +25,7 @@
*
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.4 $
  + * @version$Revision: 1.4.2.1 $
*/
   public class ClientConsumer implements Runnable {
  //The JMSServer object
  
  
  
  1.3.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/JBossMQService.java
  
  Index: JBossMQService.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/JBossMQService.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- JBossMQService.java   2001/08/18 00:07:49 1.3
  +++ JBossMQService.java   2001/08/23 03:57:12 1.3.2.1
  @@ -26,7 +26,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seeJBossMQ subproject
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public class JBossMQService extends org.jboss.util.ServiceMBeanSupport implements 
JBossMQServiceMBean {
  MBeanServer  mBeanServer = null;
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/JBossMQServiceMBean.java
  
  Index: JBossMQServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/JBossMQServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- JBossMQServiceMBean.java  2001/08/17 03:04:06 1.2
  +++ JBossMQServiceMBean.java  2001/08/23 03:57:12 1.2.2.1
  @@ -62,7 +62,7 @@
* @author Vincent Sheffer ([EMAIL PROTECTED])
* @createdAugust 16, 2001
* @seerelated
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public interface JBossMQServiceMBean
  extends org.jboss.util.ServiceMBean {
  
  
  
  1.3.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/JMSDestination.java
  
  Index: JMSDestination.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/JMSDestination.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- JMSDestination.java   2001/08/17 03:04:06 1.3
  +++ JMSDestination.java   2001/08/23 03:57:12 1.3.2.1
  @@ -26,7 +26,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public abstract class JMSDestination {
   
  
  
  
  1.4.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/server/JMSQueue.java
  
  Index: JMSQueue.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/JMSQueue.java,v
  retrieving revision 1.4
  

[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/distributed/server ConnectionReceiverINVM.java ConnectionReceiverOIL.java ConnectionReceiverOILClient.java ConnectionReceiverRMI.java ConnectionReceiverRMIImpl.java ConnectionReceiverUIL.java ConnectionReceiverUILClient.java DistributedJMSServerINVM.java DistributedJMSServerINVMMBean.java DistributedJMSServerOIL.java DistributedJMSServerOILClient.java DistributedJMSServerOILMBean.java DistributedJMSServerRMI.java DistributedJMSServerRMIImpl.java DistributedJMSServerRMIImplMBean.java DistributedJMSServerUIL.java DistributedJMSServerUILClient.java DistributedJMSServerUILMBean.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/distributed/server Tag: Branch_2_4
ConnectionReceiverINVM.java
ConnectionReceiverOIL.java
ConnectionReceiverOILClient.java
ConnectionReceiverRMI.java
ConnectionReceiverRMIImpl.java
ConnectionReceiverUIL.java
ConnectionReceiverUILClient.java
DistributedJMSServerINVM.java
DistributedJMSServerINVMMBean.java
DistributedJMSServerOIL.java
DistributedJMSServerOILClient.java
DistributedJMSServerOILMBean.java
DistributedJMSServerRMI.java
DistributedJMSServerRMIImpl.java
DistributedJMSServerRMIImplMBean.java
DistributedJMSServerUIL.java
DistributedJMSServerUILClient.java
DistributedJMSServerUILMBean.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq AcknowledgementRequest.java Connection.java ConnectionToken.java DurableSubcriptionID.java GenericConnectionFactory.java Mutex.java ReceiveRequest.java SpyBytesMessage.java SpyConnection.java SpyConnectionConsumer.java SpyConnectionFactory.java SpyConnectionMetaData.java SpyConsumer.java SpyDestination.java SpyEncapsulatedMessage.java SpyJMSException.java SpyMapMessage.java SpyMessage.java SpyMessageConsumer.java SpyMessageProducer.java SpyObjectMessage.java SpyQueue.java SpyQueueBrowser.java SpyQueueReceiver.java SpyQueueSender.java SpyQueueSession.java SpySession.java SpyStreamMessage.java SpyTemporaryQueue.java SpyTemporaryTopic.java SpyTextMessage.java SpyTopic.java SpyTopicPublisher.java SpyTopicSession.java SpyTopicSubscriber.java SpyXAConnection.java SpyXAConnectionFactory.java SpyXAResource.java SpyXAResourceManager.java Subscription.java TransactionRequest.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:09

  Added:   src/main/org/jboss/mq Tag: Branch_2_4
AcknowledgementRequest.java Connection.java
ConnectionToken.java DurableSubcriptionID.java
GenericConnectionFactory.java Mutex.java
ReceiveRequest.java SpyBytesMessage.java
SpyConnection.java SpyConnectionConsumer.java
SpyConnectionFactory.java
SpyConnectionMetaData.java SpyConsumer.java
SpyDestination.java SpyEncapsulatedMessage.java
SpyJMSException.java SpyMapMessage.java
SpyMessage.java SpyMessageConsumer.java
SpyMessageProducer.java SpyObjectMessage.java
SpyQueue.java SpyQueueBrowser.java
SpyQueueReceiver.java SpyQueueSender.java
SpyQueueSession.java SpySession.java
SpyStreamMessage.java SpyTemporaryQueue.java
SpyTemporaryTopic.java SpyTextMessage.java
SpyTopic.java SpyTopicPublisher.java
SpyTopicSession.java SpyTopicSubscriber.java
SpyXAConnection.java SpyXAConnectionFactory.java
SpyXAResource.java SpyXAResourceManager.java
Subscription.java TransactionRequest.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/AcknowledgementRequest.java
  
  Index: AcknowledgementRequest.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/AcknowledgementRequest.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- AcknowledgementRequest.java   2001/08/17 03:04:01 1.2
  +++ AcknowledgementRequest.java   2001/08/23 03:57:08 1.2.2.1
  @@ -16,7 +16,7 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class AcknowledgementRequest
  implements java.io.Serializable, java.io.Externalizable {
  
  
  
  1.3.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/Connection.java
  
  Index: Connection.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/Connection.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- Connection.java   2001/08/17 22:57:42 1.3
  +++ Connection.java   2001/08/23 03:57:08 1.3.2.1
  @@ -36,7 +36,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.3 $
  + * @version$Revision: 1.3.2.1 $
*/
   public class Connection implements java.io.Serializable, javax.jms.Connection {
  //Maps a destination to a LinkedList of Subscriptions
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/ConnectionToken.java
  
  Index: ConnectionToken.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/ConnectionToken.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- ConnectionToken.java  2001/08/17 03:04:01 1.2
  +++ ConnectionToken.java  2001/08/23 03:57:08 1.2.2.1
  @@ -18,7 +18,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class ConnectionToken
  implements Serializable {
  
  
  
  1.2.2.1   +1 -1  jbossmq/src/main/org/jboss/mq/DurableSubcriptionID.java
  
  Index: DurableSubcriptionID.java
  ===
  RCS file: /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/DurableSubcriptionID.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- DurableSubcriptionID.java 2001/08/17 03:04:01 1.2
  +++ DurableSubcriptionID.java 2001/08/23 03:57:08 1.2.2.1
  @@ -12,7 +12,7 @@
* @author Norbert Lataille ([EMAIL PROTECTED])
* @author Hiram Chirino ([EMAIL PROTECTED])
* @createdAugust 16, 2001
  - * @version$Revision: 1.2 $
  + * @version$Revision: 1.2.2.1 $
*/
   public class DurableSubcriptionID implements java.io.Serializable {
  String   clientID;
  
  
  
  1.2.2.1   +1 -1  

[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/cluster/transport/udp Datagram.java UDPAdminStream.java UDPNodeId.java UDPStream.java UDPTransport.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/cluster/transport/udp Tag: Branch_2_4
Datagram.java UDPAdminStream.java UDPNodeId.java
UDPStream.java UDPTransport.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq AcknowledgementRequest.java Log.java Mutex.java ReceiveRequest.java SpyBytesMessage.java SpyConnection.java SpyConnectionConsumer.java SpyConnectionMetaData.java SpyConsumer.java SpyDestination.java SpyDistributedConnection.java SpyEncapsulatedMessage.java SpyMapMessage.java SpyMessage.java SpyMessageConsumer.java SpyMessageProducer.java SpyObjectMessage.java SpyQueue.java SpyQueueBrowser.java SpyQueueConnection.java SpyQueueConnectionFactory.java SpyQueueReceiver.java SpyQueueSender.java SpyQueueSession.java SpySession.java SpyStreamMessage.java SpyTemporaryQueue.java SpyTemporaryTopic.java SpyTextMessage.java SpyTopic.java SpyTopicConnection.java SpyTopicConnectionFactory.java SpyTopicPublisher.java SpyTopicSession.java SpyTopicSubscriber.java SpyXAQueueConnection.java SpyXAQueueConnectionFactory.java SpyXAResource.java SpyXAResourceManager.java SpyXATopicConnection.java SpyXATopicConnectionFactory.java Subscription.java TransactionRequest.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq Tag: Branch_2_4
AcknowledgementRequest.java Log.java Mutex.java
ReceiveRequest.java SpyBytesMessage.java
SpyConnection.java SpyConnectionConsumer.java
SpyConnectionMetaData.java SpyConsumer.java
SpyDestination.java SpyDistributedConnection.java
SpyEncapsulatedMessage.java SpyMapMessage.java
SpyMessage.java SpyMessageConsumer.java
SpyMessageProducer.java SpyObjectMessage.java
SpyQueue.java SpyQueueBrowser.java
SpyQueueConnection.java
SpyQueueConnectionFactory.java
SpyQueueReceiver.java SpyQueueSender.java
SpyQueueSession.java SpySession.java
SpyStreamMessage.java SpyTemporaryQueue.java
SpyTemporaryTopic.java SpyTextMessage.java
SpyTopic.java SpyTopicConnection.java
SpyTopicConnectionFactory.java
SpyTopicPublisher.java SpyTopicSession.java
SpyTopicSubscriber.java SpyXAQueueConnection.java
SpyXAQueueConnectionFactory.java SpyXAResource.java
SpyXAResourceManager.java SpyXATopicConnection.java
SpyXATopicConnectionFactory.java Subscription.java
TransactionRequest.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/filepersistence MessageLog.java PersistenceManager.java TxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/filepersistence Tag: Branch_2_4
MessageLog.java PersistenceManager.java TxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/persistence IntegrityLog.java ObjectIntegrityLog.java PersistenceManager.java SpyMessageLog.java SpyMessageLogTester.java SpyTxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:14

  Removed: src/main/org/jbossmq/persistence Tag: Branch_2_4
IntegrityLog.java ObjectIntegrityLog.java
PersistenceManager.java SpyMessageLog.java
SpyMessageLogTester.java SpyTxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/multiplexor DemuxInputStream.java MultiplexorTest.java MuxOutputStream.java SocketMultiplexor.java StreamDemux.java StreamMux.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/multiplexor Tag: Branch_2_4
DemuxInputStream.java MultiplexorTest.java
MuxOutputStream.java SocketMultiplexor.java
StreamDemux.java StreamMux.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/referenceable ObjectRefAddr.java SpyConnectionFactoryObjectFactory.java SpyDestinationObjectFactory.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:14

  Removed: src/main/org/jbossmq/referenceable Tag: Branch_2_4
ObjectRefAddr.java
SpyConnectionFactoryObjectFactory.java
SpyDestinationObjectFactory.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/jdbcpersistence MessageLog.java PersistenceManager.java TxLog.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:13

  Removed: src/main/org/jbossmq/jdbcpersistence Tag: Branch_2_4
MessageLog.java PersistenceManager.java TxLog.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/selectors Identifier.java Operator.java Selector.java parser.java parserval.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:14

  Removed: src/main/org/jbossmq/selectors Tag: Branch_2_4
Identifier.java Operator.java Selector.java
parser.java parserval.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jboss/src/client jbossmq-client.jar

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:58:14

  Modified:src/client Tag: Branch_2_4 jbossmq-client.jar
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.6.4.3   +775 -694  jboss/src/client/Attic/jbossmq-client.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/xml XElement.java XElementConsumer.java XElementException.java XElementProducer.java XElementTester.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:14

  Removed: src/main/org/jbossmq/xml Tag: Branch_2_4 XElement.java
XElementConsumer.java XElementException.java
XElementProducer.java XElementTester.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



[JBoss-dev] CVS update: jboss/src/lib jbossmq.jar

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:58:14

  Modified:src/lib  Tag: Branch_2_4 jbossmq.jar
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.8.4.3   +1137 -960 jboss/src/lib/Attic/jbossmq.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: jbossmq/src/main/org/jbossmq/server AbstractQueue.java BasicQueue.java ClientConsumer.java ExclusiveQueue.java InvocationLayerFactory.java JBossMQService.java JBossMQServiceMBean.java JMSDestination.java JMSServer.java JMSServerMBean.java PersistenceManager.java SharedQueue.java StartServer.java Task.java UserManager.java

2001-08-22 Thread Hiram Chirino

  User: chirino 
  Date: 01/08/22 20:57:14

  Removed: src/main/org/jbossmq/server Tag: Branch_2_4
AbstractQueue.java BasicQueue.java
ClientConsumer.java ExclusiveQueue.java
InvocationLayerFactory.java JBossMQService.java
JBossMQServiceMBean.java JMSDestination.java
JMSServer.java JMSServerMBean.java
PersistenceManager.java SharedQueue.java
StartServer.java Task.java UserManager.java
  Log:
  Back porting JBossMQ 1.0.0 BETA 1 to 2_4 branch

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



  1   2   >