RE: [JBoss-dev] Sourceforge cvs problem

2001-03-29 Thread Micheal J

Some ideas:
1. Use an RSA key-pair for SSH1. Ensure that the keys have no passphrase (no
pint in going password-less only to be asked for the passphrase instead)
2. Use the "Edit key" feature of the account management page to upload your
*public* key file only to all the relevant SF servers (this requires a 6
hour wait for full propagation)
3. Ensure your machine has the corresponding private+public keyfiles as your
default (or only) SSH1 identity. Actually it may be enough for it to be just
one of many identities but no point in complicating things right?

Good luck,

Micheal

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of
> Vladimir Blagojevic
> Sent: 29 March 2001 05:04
> To: [EMAIL PROTECTED]
> Subject: Re: [JBoss-dev] Sourceforge cvs problem
>
>
> Hey,
>
> I still can not do this on Redhat 7 although I am close.  Used
> ssh-keygen, created both RSA and DSA
> key pairs, added them to running ssh-agent, uploaded pub keys to
> server. Did you use website upload
> or scp command?


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



[JBoss-dev] CVS update: contrib/catalina/src/build build.sh

2001-03-29 Thread phox

  User: phox
  Date: 01/03/29 00:27:17

  Modified:catalina/src/build build.sh
  Log:
  Upgrade for ant1.3
  
  Revision  ChangesPath
  1.2   +2 -1  contrib/catalina/src/build/build.sh
  
  Index: build.sh
  ===
  RCS file: /cvsroot/jboss/contrib/catalina/src/build/build.sh,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.sh  2001/02/22 14:51:03 1.1
  +++ build.sh  2001/03/29 08:27:17 1.2
  @@ -1,11 +1,12 @@
   #!/bin/bash
   
   ABORT=0
  +
   if [ "X${JBOSS_HOME}" = "X" ] ; then echo "JBOSS_HOME is not set. You need jboss 
2.1+" ; ABORT=1 ; fi
   if [ "X${TOMCAT_HOME}" = "X" ] ; then echo "TOMCAT_HOME is not set. You need tomcat 
4.0-b1+" ; ABORT=1 ; fi
   if [ $ABORT = 1 ] ; then echo "Aborting..." ; exit ; fi
   
  -TARGET_CLASSPATH=${JBOSS_HOME}/lib/ant.jar:\
  +TARGET_CLASSPATH=${JBOSS_HOME}/lib/ant-1.3.jar:\
   ${TOMCAT_HOME}/server/crimson.jar:\
   ${TOMCAT_HOME}/server/jaxp.jar:\
   ${JBOSS_HOME}/lib/javac.jar
  
  
  

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



[JBoss-dev] CVS update: newsite/documentation jboss1.html jboss_win32_1.html

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 00:27:53

  Modified:documentation jboss1.html jboss_win32_1.html
  Log:
  Change the obsolete java -jar run.jar to run.bat and run.sh
  
  Revision  ChangesPath
  1.3   +1 -1  newsite/documentation/jboss1.html
  
  Index: jboss1.html
  ===
  RCS file: /cvsroot/jboss/newsite/documentation/jboss1.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jboss1.html   2001/02/08 05:31:32 1.2
  +++ jboss1.html   2001/03/29 08:27:53 1.3
  @@ -40,7 +40,7 @@
   rm -f install.zip
   You could try running the server now. 
Change to the bin directory, and run the program like this:
cd bin
  -java -jar run.jar
  +run.sh
   In a proper installation, the server 
should start without any error messages or exceptions being thrown. It will produce 
about three pages of output on startup.
   The JBoss distribution is supplied with 
one test Bean, packaged as bank.jar. This is supplied in the `deploy' 
subdirectory, which is where Beans are placed to deploy them. The effect of this is to 
deploy the `bank' bean when the server starts up. This is fine the first time, as it 
tests that the SQL server is working, but you can usefully move bank.jar 
out of the deploy directory when you are sure that everything's OK, and 
the server will start up more quickly.

  
  
  
  1.3   +1 -1  newsite/documentation/jboss_win32_1.html
  
  Index: jboss_win32_1.html
  ===
  RCS file: /cvsroot/jboss/newsite/documentation/jboss_win32_1.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jboss_win32_1.html2001/02/08 05:31:33 1.2
  +++ jboss_win32_1.html2001/03/29 08:27:53 1.3
  @@ -30,7 +30,7 @@
   On a Windows NT system, you will not need 
Administrator priviledges. JBoss itself will work perfectly well if installed in a user directory and run 
as an ordinary user. I will assume in this tutorial that you are installing in 
c:\jboss. If you haven't, change the paths as appropriate.
You could try running the server now.  Open a Command Prompt 
(DOS window), change to the \jboss\bin directory and run
cd c:\jboss\bin
  -java -jar run.jar
  +run.bat
   The server should start without any 
error messages or exceptions being thrown. It will produce about three pages of output 
on startup.
   
   To deploy your beans, put them in 
C:\jboss\deploy\. JBoss' AutoDeploy system will detect a new or revised 
.jar file and automatically deploy your beans. If you still have the 
JBoss window open, you'll see some messages scroll by as your bean deploys. (Note: 
C:\jboss\deploy\ must exist when you start JBoss or you'll need to 
restart the server to activate the AutoDeploy mechanism.) 
  
  
  

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



[JBoss-dev] CVS update: newsite/documentation jboss_win32_1.html

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 02:05:54

  Modified:documentation jboss_win32_1.html
  Log:
  Change another java -jar run.jar example to run.bat
  
  Revision  ChangesPath
  1.4   +1 -1  newsite/documentation/jboss_win32_1.html
  
  Index: jboss_win32_1.html
  ===
  RCS file: /cvsroot/jboss/newsite/documentation/jboss_win32_1.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jboss_win32_1.html2001/03/29 08:27:53 1.3
  +++ jboss_win32_1.html2001/03/29 10:05:54 1.4
  @@ -69,7 +69,7 @@
run.jar
You're not in the right directory and Java can't find file 
run.jar. Try this:
cd c:\jboss\bin
  -java -jar run.jar
  +run.bat



  
  
  

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



[JBoss-dev] CVS update: manual/src/docs/images/jbosssx - New directory

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 03:08:05

  manual/src/docs/images/jbosssx - New directory

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



[JBoss-dev] CVS update: manual/src/docs/images/jbosssx sx.SecurityInterceptor.classes.gif sx.SecurityInterceptor.model.gif sx.jbossSecurityDTD.jpg

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 03:09:08

  Added:   src/docs/images/jbosssx sx.SecurityInterceptor.classes.gif
sx.SecurityInterceptor.model.gif
sx.jbossSecurityDTD.jpg
  Log:
  
  
  Revision  ChangesPath
  1.1  
manual/src/docs/images/jbosssx/sx.SecurityInterceptor.classes.gif
  
<>
  
  
  1.1  manual/src/docs/images/jbosssx/sx.SecurityInterceptor.model.gif
  
<>
  
  
  1.1  manual/src/docs/images/jbosssx/sx.jbossSecurityDTD.jpg
  
<>
  
  

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



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

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 03:24:50

  Modified:src/docs jbosssx.xml
  Log:
  Added the DatabaseServerLogin module tables figure
  
  Revision  ChangesPath
  1.2   +14 -8 manual/src/docs/jbosssx.xml
  
  Index: jbosssx.xml
  ===
  RCS file: /cvsroot/jboss/manual/src/docs/jbosssx.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jbosssx.xml   2001/03/29 11:12:46 1.1
  +++ jbosssx.xml   2001/03/29 11:24:50 1.2
  @@ -1,5 +1,5 @@
   
  -
  +
   
  
JBossSX Security Extension Framework   
  @@ -626,7 +626,7 @@
non-classpath LoginModule.   
 
  
  - 
org.jboss.security.LdapLoginModule  
  + 
org.jboss.security.plugins.samples.LdapLoginModule  
An implementation of LoginModule that 
authenticates against an LDAP server using JNDI based on the configuration properties.
   
   The LoginModule options include whatever options your LDAP JNDI provider
  @@ -673,12 +673,18 @@



  - DatabaseServerLoginModule
  - A JDBC based login module that supports 
authentication and role mapping. It is based on two logical tables:
  + 
org.jboss.security.plugins.samples.DatabaseServerLoginModule  
  + DatabaseServerLoginModule is a JDBC 
based login module that supports authentication and role mapping. It is based on two 
logical tables, Principals and Roles.
  +A simple view of the schema is given in 
  + 
  + The DatabaseServerLoginModule Logical Tables
  +
  +  
  +
  +  
  +   
  + 
   
  - Principals(PrincipalID text, Password text)
  - Roles(PrincipalID text, Role text, RoleGroup text)
  -
   The Principals table associates the user principalID with the valid password and 
the Roles table associates the principalIDd with its role sets. The tables are logical 
in that you can specify the sql query that the login module uses so as long as the 
result set has the same structure the tables and columns can be called anything.
   
   The module options are:
  @@ -785,4 +791,4 @@
  
   
 
  -
  \ No newline at end of file
  +
  
  
  

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



[JBoss-dev] CVS update: manual/src/docs/images/jbosssx LMDatabaseModel.jpg

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 03:24:50

  Added:   src/docs/images/jbosssx LMDatabaseModel.jpg
  Log:
  Added the DatabaseServerLogin module tables figure
  
  Revision  ChangesPath
  1.1  manual/src/docs/images/jbosssx/LMDatabaseModel.jpg
  
<>
  
  

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



[JBoss-dev] CVS update: jbossmx - Imported sources

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 05:49:37

  Log:
  This is fhe first check in of failover / high availability software for JMX
  
  Status:
  
  Vendor Tag:   jbossmx
  Release Tags: jbossmx_1
  
  N jbossmx/src/examples/ActiveAgentMLet.xml
  N jbossmx/src/examples/FailoverAgentMLet.xml
  N jbossmx/src/examples/rmid.policy
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/Configuration.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/HermesException.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/SwapMachines.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/SwapMachinesRemoteInterface.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentRemoteInterface.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentStarter.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentStopper.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/BaseAgent.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/Setup.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/EmailWatchdogListener.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Startable.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/StartableMBean.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Test1.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Test1MBean.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Watchdog.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogCorrectiveAction.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEvent.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventDispatcher.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventDispatcherSupport.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventManager.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventManagerMBean.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventManagerRemoteInterface.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogListener.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogMBean.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/BaseCorrectiveAction.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CallScriptCorrectiveAction.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveAction.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveActionContext.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveActionContextConstants.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveActionContextException.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveActionException.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CorrectiveActionSequence.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/InvokeMethodCorrectiveAction.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/RestartAgentCorrectiveAction.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Watchdog2.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Watchdog2MBean.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/FailedMBeanPacker.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/SimpleFailedMBeanPacker.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/TolerantFailedMBeanPacker.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLet.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetEntry.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetException.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetMBean.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetNodeProcessor.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetObjectInputStream.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/CompoundException.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/FlexibleHTMLParser.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/FlexibleHTMLParserMBean.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/HermesMachineProperties.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/ListRegistry.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/MBeanMirror.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/MirroringService.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/MirroringServiceMBean.java
  N 
jbossmx/src/main/org/jbossmx/cluster/watchdog/util/MirroringServiceRemoteInterface.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/MirrorServiceRemoteListener.java
  N jbossmx/src/main/org/jbossmx/cluster/watchdog/util/RegisterActivatableObjects.java
  N jbossmx/src/mai

RE: [JBoss-dev] CVS update: jbossmx - Imported sources

2001-03-29 Thread marc fleury

FINALLY, thanks stacy

Ok we can manage the clusters of JMX instances

ANYONE UP FOR A SIMPLE STATEFUL BEAN

Come on guys! i can believe you talk so much and when the request for real
stuff comes in, all the "experts" run away...

COME ON

SOMETHING, ANYTHING in CVS will impress me, THAT requires balls,

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|[EMAIL PROTECTED]
|Sent: Thursday, March 29, 2001 8:50 AM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-dev] CVS update: jbossmx - Imported sources
|
|
|  User: stacycurl
|  Date: 01/03/29 05:49:37
|
|  Log:
|  This is fhe first check in of failover / high availability
|software for JMX
|
|  Status:
|
|  Vendor Tag:  jbossmx
|  Release Tags:jbossmx_1
|
|  N jbossmx/src/examples/ActiveAgentMLet.xml
|  N jbossmx/src/examples/FailoverAgentMLet.xml
|  N jbossmx/src/examples/rmid.policy
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/Configuration.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/HermesException.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/SwapMachines.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/SwapMachinesRemoteInt
|erface.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentRemoteInte
|rface.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentStarter.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/AgentStopper.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/BaseAgent.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/agent/Setup.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/EmailWatchdogLi
|stener.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Startable.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/StartableMBean.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Test1.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Test1MBean.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/Watchdog.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogCorrect
|iveAction.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEvent.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventDi
|spatcher.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventDi
|spatcherSupport.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventMa
|nager.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventMa
|nagerMBean.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogEventMa
|nagerRemoteInterface.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogListener.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/WatchdogMBean.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/BaseCo
|rrectiveAction.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/CallSc
|riptCorrectiveAction.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveAction.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveActionContext.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveActionContextConstants.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveActionContextException.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveActionException.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Correc
|tiveActionSequence.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Invoke
|MethodCorrectiveAction.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Restar
|tAgentCorrectiveAction.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Watchdog2.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/watchdog/Watchd
|og2MBean.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/FailedMBe
|anPacker.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/SimpleFai
|ledMBeanPacker.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/TolerantF
|ailedMBeanPacker.java
|  N jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLet.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetEntry.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetExce
|ption.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetMBean.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetNode
|Processor.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/mbean/xmlet/XMLetObje
|ctInputStream.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/util/CompoundException.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/util/FlexibleHTMLParser.java
|  N
|jbossmx/src/main/org/jbossmx/cluster/watchdog/util/FlexibleH

RE: [JBoss-dev] ANT Verifier task?

2001-03-29 Thread marc fleury

Oh goodness!!! it is of course well documented isn't it?

marc


|-Original Message-
|From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
|Sent: Thursday, March 29, 2001 2:37 AM
|To: marc fleury
|Cc: Jboss-Development@Lists. Sourceforge. Net
|Subject: Re: [JBoss-dev] ANT Verifier task?
|
|
|
|You don't need an explicit task for it,
|see admin/build.xml for an example
|http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/admin/build/build.xml
|?cvsroot=jboss
|
|--8<--
|
|
|
|
|
|
|
|--8<--
|
|-- Juha
|
|
|On Thu, 29 Mar 2001, marc fleury wrote:
|
|> Any news on the Task for ANT that does "verification"?
|>
|> marc
|>
|> _
|> Marc Fleury, Ph.D
|> [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



[JBoss-dev] EJB deploy/undeploy problem

2001-03-29 Thread Stanislav Pavlíček

Hello,

   I have following problem under JBoss-2.1: Deployed Ejbs are unpacked
into /tmp/Default/... on the startup, but content of this
directory is deleted on the shutdown, so any file modifications or even
newly created files are lost. Is there any chance to modify Jboss's
Container Factory behaviour in at least the manner of Sun's J2EE? (Sun's
j2sdkee1.3beta webapps contexts reside in $J2EE_HOME/public_html and
this directory is NOT DELETED on the shutdown, so any newly created
files are kept, but only files originated from ear/war are overwritten
on the startup).
ST7A
-- 
Stanislav Pavlicek
Developer
IDOOX

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



Re: [JBoss-dev] JDBC provider redundant and XA stuff

2001-03-29 Thread Bill Burke

One more thing on this that I've commented on before.

The Oracle 8.1.7 drivers do connection and statement pooling as well as 
XAConnections, so there is no need to use Minerva.  Unfortunately, 
Minerva does all the work of hooking up the XAResources with the 
Transaction Manager and such.  It would be nice if there was some 
XADataSourceLoader framework so that developers could write optimized 
driver specific datasources that can connect up to JBoss's connection 
manager and be their own connection pool.  Am I making any sense here?

Anyways, I'm very interested in putting together this simple "framework" 
and writing an Oracle 8.1.7 specific JBoss DataSource, and, if you want 
I would also clean up the JDBCProvider stuff you talked about.  Let me know.

Bill

P.S.  I know I'm new here, and there's a trust factor involved, but I'm 
serious about contributing to any JBoss effort.



marc fleury wrote:

> Guys, (Aaron, Rickard)
> 
> Looking at the jdbc configuration and packages.
> 
> If I understand the JDBCProvider class well, it is about 80 lines of code
> that does essentially one thing
> 
> Class.forName("driver");
> 
> With a fancy MBean structure around it.  Also the usage of the
> System.get/setProperty is strange (useless).
> 
> On the other hand it requires the fairly complex JDBC MBean structure in the
> configuration files.
> 
> Then when I look at the parameters passed to the XADataSourceLoader, there
> is a TON of stuff that is never modified, and frankly could go as defaults
> in the codebase.
> 
> I therefore propose the following
> 
> 1- Axe the JDBCProvider class
> 2- Add the "Driver" property to the XADataSource class and let IT initialize
> (I am talking about the jboss classes)
> 3- Put the defaults in the class so that if you don't specify anything in
> XML, it still works.
> 
> >From an admin standpoint we will be able to make sense of the jboss.jcml
> mbeans and that is a step in the right direction, also it will mean that we
> will be able to add dbs dynamically (with a differential driver
> specification)
> 
> I don't know... any howlers out there?
> 
> marc
> 
> _
> Marc Fleury, Ph.D
> [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



[JBoss-dev] Rewrite of ejb.jar, et al

2001-03-29 Thread Jay Walters

Thanks to everybody working on writing the various packages.

So we are beginning to get the various jar files which are under the scsl
rewritten, which of course leads to the question of where we should put this
stuff into cvs.  I've been poking around and it seems there are a fair
amount of dependencies, not so much on ejb.jar, but on the jta stuff.
Initially we were thinking of spreading this source code around the various
subprojects, but it seems like there are so many dependencies it might be
better to put it into a new subproject.  I'm not good with names, but how
about jboss-ee, jboss-external, ee-spec or just external?

Does this seem reasonable?  Problems?  Questions?

Cheers
Jay Walters


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



[JBoss-dev] CVS update: jboss/src/main/org/jboss/jmx/server RMIConnectorServiceMBean.java RMIConnectorService.java

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 09:44:10

  Modified:src/main/org/jboss/jmx/server RMIConnectorServiceMBean.java
RMIConnectorService.java
  Log:
  Each JMX agent needs to build a RMIConnector into JNDI, previously there
  seem to have been only 1 agent running. I need to run multiple so I need to
  have multiple JNDI entries. Hence I've added an additional constructor, also
  added an accessor to obtain the JNDI Name.
  
  Revision  ChangesPath
  1.3   +3 -2  
jboss/src/main/org/jboss/jmx/server/RMIConnectorServiceMBean.java
  
  Index: RMIConnectorServiceMBean.java
  ===
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/jmx/server/RMIConnectorServiceMBean.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RMIConnectorServiceMBean.java 2000/12/07 15:44:56 1.2
  +++ RMIConnectorServiceMBean.java 2001/03/29 17:44:10 1.3
  @@ -8,8 +8,8 @@
   package org.jboss.jmx.server;
   
   /**
  -* Server side MBean for the RMI connector 
  -*  
  +* Server side MBean for the RMI connector
  +*
   * @author Rickard Öberg ([EMAIL PROTECTED])
   * @author mailto:[EMAIL PROTECTED]">Andreas "Mad" 
Schaefer
   **/
  @@ -20,4 +20,5 @@
public static final String OBJECT_NAME = "Connector:name=RMI";
   
// Public 
  +public String getJNDIName();
   }
  
  
  
  1.4   +35 -14jboss/src/main/org/jboss/jmx/server/RMIConnectorService.java
  
  Index: RMIConnectorService.java
  ===
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/jmx/server/RMIConnectorService.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RMIConnectorService.java  2000/12/07 15:44:56 1.3
  +++ RMIConnectorService.java  2001/03/29 17:44:10 1.4
  @@ -4,7 +4,7 @@
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
  - 
  +
   package org.jboss.jmx.server;
   
   import java.io.File;
  @@ -32,8 +32,8 @@
   import org.jboss.util.ServiceMBeanSupport;
   
   /**
  -*
  -*  
  +*   
  +*
   * @author Rickard Öberg ([EMAIL PROTECTED])
   * @author mailto:[EMAIL PROTECTED]">Andreas "Mad" 
Schaefer
   **/
  @@ -47,42 +47,63 @@
public static String JNDI_NAME = "jmx:rmi";
public static String JMX_NAME = "jmx";
public static String PROTOCOL_NAME = "rmi";
  - 
  +
// Attributes 
private MBeanServer server;
private RMIConnectorImpl adaptor;
private String mHost;
  - 
  +private String mName;
  +
// Static 
  - 
  +
// Constructors --
  - 
  +public RMIConnectorService() {
  +mName = null;
  +}
  +
  +public RMIConnectorService(
  +String name
  +) {
  +mName = name;
  +}
  +
// Public 
public ObjectName getObjectName(
  - MBeanServer server, 
  + MBeanServer server,
ObjectName name
) throws javax.management.MalformedObjectNameException {
this.server = server;
return new ObjectName( OBJECT_NAME );
}
  - 
  +
public String getName() {
return "JMX RMI Connector";
}
  - 
  +
  +public String getJNDIName() {
  +if (mName != null)
  +{
  +return JMX_NAME + ":" + mHost + ":" + PROTOCOL_NAME + ":" + mName;
  +}
  +else
  +{
  +return JMX_NAME + ":" + mHost + ":" + PROTOCOL_NAME;
  +}
  +}
  +
// Protected -
protected void initService() throws Exception {
mHost = InetAddress.getLocalHost().getHostName();
adaptor = new RMIConnectorImpl( server );
}
  - 
  +
protected void startService() throws Exception {
  - new InitialContext().bind( JMX_NAME + ":" + mHost + ":" + 
PROTOCOL_NAME, adaptor );
  + new InitialContext().bind( getJNDIName(), adaptor );
}
  - 
  +
protected void stopService() {
try {
  - new InitialContext().unbind( JMX_NAME + ":" + mHost + ":" + 
PROTOCOL_NAME );
  + new InitialContext().unbind( getJNDIName() );
}
catch( Exception e ){
log.exception( e );
  
  
  

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



[JBoss-dev] CVS update: jboss/src/main/org/jboss/logging Log.java

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 09:47:47

  Modified:src/main/org/jboss/logging Log.java
  Log:
  Log.createLog checks an environment property JBOSS_LOG_CLASS and
  instantiates that class, if JBOSS_LOG_CLASS is missing it reverts back to the
  previous behaviour of creating org.jboss.logging.DefaultLog
  
  Revision  ChangesPath
  1.8   +61 -47jboss/src/main/org/jboss/logging/Log.java
  
  Index: Log.java
  ===
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/logging/Log.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Log.java  2000/12/08 17:41:31 1.7
  +++ Log.java  2001/03/29 17:47:47 1.8
  @@ -14,25 +14,29 @@
   import javax.management.*;
   
   /**
  - *  
  + *
*   @see 
*   @author Rickard Öberg ([EMAIL PROTECTED])
  - *   @version $Revision: 1.7 $
  + *   @version $Revision: 1.8 $
*/
   public abstract class Log
   {
  // Constants -
  -
  +   private static final String m_sInformation = "Information";
  +   private static final String m_sDebug = "Debug";
  +   private static final String m_sWarning = "Warning";
  +   private static final String m_sError = "Error";
  +
  // Attributes 
  long count = 0;
  -   
  +
  Date now = new Date();
  -   
  +
  Object source = null;
  -   
  +
  // Static 
   //   static ThreadLocal currentLog = new ThreadLocal();
  -   
  +
  static ThreadLocal currentLog = new InheritableThreadLocal()
  {
// Child threads should get same stack, but only a copy of it
  @@ -40,13 +44,13 @@
{
if (obj != null)
return ((Stack)obj).clone();
  - else
  + else
return null;
}
  };
  -  
  +
 protected static Log defaultLog;
  -   
  +
  public static void setLog(Log log)
  {
 Stack s;
  @@ -60,7 +64,7 @@
s.push(log);
 }
  }
  -   
  +
  public static void unsetLog()
  {
 if (currentLog.get() != null)
  @@ -71,7 +75,7 @@
   currentLog.set(null);
 }
  }
  -   
  +
  public static Log getLog()
  {
 Stack s = (Stack)currentLog.get();
  @@ -85,11 +89,13 @@
return (Log)s.peek();
}
  }
  -  
  +
 public static Log createLog( Object pSource ) {
 Log lReturn;
try {
  - Class lLog = 
Thread.currentThread().getContextClassLoader().loadClass( 
"org.jboss.logging.DefaultLog" );
  +final String logClass = System.getProperty("JBOSS_LOG_CLASS", 
"org.jboss.logging.DefaultLog");
  +
  + Class lLog = 
Thread.currentThread().getContextClassLoader().loadClass( logClass );
   //AS Class lLog = Class.forName( "org.jboss.logging.DefaultLog" );
lReturn = (Log) lLog.getConstructor( new Class[] { 
Object.class } ).newInstance(
new Object[] { pSource }
  @@ -100,81 +106,89 @@
}
return lReturn;
 }
  -   
  +
  // Constructors --
  public Log()
  {
 this("Default");
  }
  -   
  +
  public Log(Object source)
  {
 this.source = source;
  }
  -   
  +
  // Public 
  public abstract void log(String type, String message);
  -   
  +
  public synchronized void log(String message)
  {
  -  log("Information", message);
  +  log(m_sInformation, message);
  }
  -   
  +
  public synchronized void error(String message)
  {
  -  log("Error", message);
  +  log(m_sError, message);
  }
  -   
  +
  public synchronized void warning(String message)
  {
  -  log("Warning", message);
  -   }   
  -   
  +  log(m_sWarning, message);
  +   }
  +
  public synchronized void debug(String message)
  +   {
  +  log(m_sDebug, message);
  +   }
  +
  +   public synchronized void log(Throwable exception)
  +   {
  +  logException(m_sInformation, exception);
  +   }
  +
  +   public synchronized void error(Throwable exception)
  {
  -  log("Debug", message);
  -   }   
  -   
  +  logException(m_sError, exception);
  +   }
  +
  public synchronized void exception(Throwable exception)
  {
  -  ByteArrayOutputStream baos = new ByteArrayOutputStream();
  -  PrintStream out = new PrintStream(baos);
  -  exception.printStackTrace(out);
  -  out.close();
  -  
  -  DataInputStream din = new D

RE: [JBoss-dev] ANT Verifier task?

2001-03-29 Thread Juha-P Lindfors


well.. ermm..

there's the ant documentation for the  task... *cough*

:)

-- Juha


On Thu, 29 Mar 2001, marc fleury wrote:

> Oh goodness!!! it is of course well documented isn't it?
>
> marc
>
>
> |-Original Message-
> |From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> |Sent: Thursday, March 29, 2001 2:37 AM
> |To: marc fleury
> |Cc: Jboss-Development@Lists. Sourceforge. Net
> |Subject: Re: [JBoss-dev] ANT Verifier task?
> |
> |
> |
> |You don't need an explicit task for it,
> |see admin/build.xml for an example
> |http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/admin/build/build.xml
> |?cvsroot=jboss
> |
> |--8<--
> |
> |
> |
> |
> |
> |
> |
> |--8<--
> |
> |-- Juha
> |
> |
> |On Thu, 29 Mar 2001, marc fleury wrote:
> |
> |> Any news on the Task for ANT that does "verification"?
> |>
> |> marc
> |>
> |> _
> |> Marc Fleury, Ph.D
> |> [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
>


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



Re: [JBoss-dev] JDBC provider redundant and XA stuff

2001-03-29 Thread Bill Burke

Hey Filip,

Take a look at the XADataSourceLoader code.  It uses a Minerva 
XAPoolDataSource.  getConnection() uses the Minerva code base to 
register the transaction with the JBoss transaction manager.  There is 
no code anywhere except in Minerva that registers the XAResources with 
the Transaction Manager that I can find.  Please tell me that I'm wrong.

Bill

Filip Hanik wrote:

> I thought that was already in place.
> Minerva was only used for non XA datasources, so I assumed the developers of
> JBoss already has implemented the support for real XA datasources.
> 
> maybe I was wrong :)
> 
> Filip
> 
> ~
> Namaste - I bow to the divine in you
> ~
> Filip Hanik
> Software Architect
> [EMAIL PROTECTED]
> www.filip.net
> 
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED]]On Behalf Of Bill
>> Burke
>> Sent: Thursday, March 29, 2001 9:08 AM
>> To: marc fleury
>> Cc: Jboss-Development@Lists. Sourceforge. Net
>> Subject: Re: [JBoss-dev] JDBC provider redundant and XA stuff
>> 
>> 
>> One more thing on this that I've commented on before.
>> 
>> The Oracle 8.1.7 drivers do connection and statement pooling as well as
>> XAConnections, so there is no need to use Minerva.  Unfortunately,
>> Minerva does all the work of hooking up the XAResources with the
>> Transaction Manager and such.  It would be nice if there was some
>> XADataSourceLoader framework so that developers could write optimized
>> driver specific datasources that can connect up to JBoss's connection
>> manager and be their own connection pool.  Am I making any sense here?
>> 
>> Anyways, I'm very interested in putting together this simple "framework"
>> and writing an Oracle 8.1.7 specific JBoss DataSource, and, if you want
>> I would also clean up the JDBCProvider stuff you talked about.
>> Let me know.
>> 
>> Bill
>> 
>> P.S.  I know I'm new here, and there's a trust factor involved, but I'm
>> serious about contributing to any JBoss effort.
>> 
>> 
>> 
>> marc fleury wrote:
>> 
>>> Guys, (Aaron, Rickard)
>>> 
>>> Looking at the jdbc configuration and packages.
>>> 
>>> If I understand the JDBCProvider class well, it is about 80
>> 
>> lines of code
>> 
>>> that does essentially one thing
>>> 
>>> Class.forName("driver");
>>> 
>>> With a fancy MBean structure around it.  Also the usage of the
>>> System.get/setProperty is strange (useless).
>>> 
>>> On the other hand it requires the fairly complex JDBC MBean
>> 
>> structure in the
>> 
>>> configuration files.
>>> 
>>> Then when I look at the parameters passed to the
>> 
>> XADataSourceLoader, there
>> 
>>> is a TON of stuff that is never modified, and frankly could go
>> 
>> as defaults
>> 
>>> in the codebase.
>>> 
>>> I therefore propose the following
>>> 
>>> 1- Axe the JDBCProvider class
>>> 2- Add the "Driver" property to the XADataSource class and let
>> 
>> IT initialize
>> 
>>> (I am talking about the jboss classes)
>>> 3- Put the defaults in the class so that if you don't specify
>> 
>> anything in
>> 
>>> XML, it still works.
>>> 
>>> >From an admin standpoint we will be able to make sense of the
>> 
>> jboss.jcml
>> 
>>> mbeans and that is a step in the right direction, also it will
>> 
>> mean that we
>> 
>>> will be able to add dbs dynamically (with a differential driver
>>> specification)
>>> 
>>> I don't know... any howlers out there?
>>> 
>>> marc
>>> 
>>> _
>>> Marc Fleury, Ph.D
>>> [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
>> 



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



[JBoss-dev] CVS update: jbossmx/src/lib - New directory

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 10:28:34

  jbossmx/src/lib - New directory

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



[JBoss-dev] CVS update: jbossmx/src/lib xerces.jar mail.jar log4j.jar junit.jar jmxtools.jar jmxri.jar activation.jar

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 10:31:20

  Added:   src/lib  xerces.jar mail.jar log4j.jar junit.jar
jmxtools.jar jmxri.jar activation.jar
  Log:
  Jars needed by JBossMX
  
  Revision  ChangesPath
  1.1  jbossmx/src/lib/xerces.jar
  
<>
  
  
  1.1  jbossmx/src/lib/mail.jar
  
<>
  
  
  1.1  jbossmx/src/lib/log4j.jar
  
<>
  
  
  1.1  jbossmx/src/lib/junit.jar
  
<>
  
  
  1.1  jbossmx/src/lib/jmxtools.jar
  
<>
  
  
  1.1  jbossmx/src/lib/jmxri.jar
  
<>
  
  
  1.1  jbossmx/src/lib/activation.jar
  
<>
  
  

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



[JBoss-dev] CVS update: jbossmx/src/build - New directory

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 10:32:10

  jbossmx/src/build - New directory

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



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

2001-03-29 Thread stacycurl

  User: stacycurl
  Date: 01/03/29 10:33:25

  Added:   src/build build.xml build.bat
  Log:
  Ant build files for JBossMX
  
  Revision  ChangesPath
  1.1  jbossmx/src/build/build.xml
  
  Index: build.xml
  ===
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  

  
  

  
  
  

  

  
  
  

  
  
  
  
  
  
  
  
  
  
  

  
  
  

  
  
  

  
  
  

  
  
  

  

  

  
  
  
  
  
  
  1.1  jbossmx/src/build/build.bat
  
  Index: build.bat
  ===
  ant %1 %2 %3 %4 %5 %6 %7 %8 %9
  
  
  

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



Re: [JBoss-dev] Rewrite of ejb.jar, et al

2001-03-29 Thread Juha-P Lindfors




On Thu, 29 Mar 2001, Jay Walters wrote:
> I'm not good with names, but how
> about jboss-ee, jboss-external, ee-spec or just external?

Why not just drop it under contrib/ in its own submodule (api?) and then a
module per API?  Seems these might find some use outside the JBoss project
as well.

-- Juha


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



RE: [JBoss-dev] Rewrite of ejb.jar, et al

2001-03-29 Thread Jay Walters

Ok, that seems like a good approach since it's actually pretty small right
now.  Any more ideas?  Complaints?

Pretty much ready to check some of it in once we sort out where it should
go.

Cheers

-Original Message-
From: Juha-P Lindfors [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 29, 2001 1:49 PM
Cc: Jboss-Development@Lists. Sourceforge. Net
Subject: Re: [JBoss-dev] Rewrite of ejb.jar, et al





On Thu, 29 Mar 2001, Jay Walters wrote:
> I'm not good with names, but how
> about jboss-ee, jboss-external, ee-spec or just external?

Why not just drop it under contrib/ in its own submodule (api?) and then a
module per API?  Seems these might find some use outside the JBoss project
as well.

-- 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] Rewrite of ejb.jar, et al

2001-03-29 Thread marc fleury

jboss-j2ee


marc

|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Jay
|Walters
|Sent: Thursday, March 29, 2001 12:35 PM
|To: Jboss-Development@Lists. Sourceforge. Net
|Subject: [JBoss-dev] Rewrite of ejb.jar, et al
|
|
|Thanks to everybody working on writing the various packages.
|
|So we are beginning to get the various jar files which are under the scsl
|rewritten, which of course leads to the question of where we
|should put this
|stuff into cvs.  I've been poking around and it seems there are a fair
|amount of dependencies, not so much on ejb.jar, but on the jta stuff.
|Initially we were thinking of spreading this source code around the various
|subprojects, but it seems like there are so many dependencies it might be
|better to put it into a new subproject.  I'm not good with names, but how
|about jboss-ee, jboss-external, ee-spec or just external?
|
|Does this seem reasonable?  Problems?  Questions?
|
|Cheers
|Jay Walters
|
|
|___
|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] Rewrite of ejb.jar, et al

2001-03-29 Thread Dan Christopherson

Are there similiar license issues with the JMX RI?

On Thu, 29 Mar 2001, Jay Walters wrote:

> Ok, that seems like a good approach since it's actually pretty small right
> now.  Any more ideas?  Complaints?
> 
> Pretty much ready to check some of it in once we sort out where it should
> go.
> 
> Cheers
> 
> -Original Message-
> From: Juha-P Lindfors [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 29, 2001 1:49 PM
> Cc: Jboss-Development@Lists. Sourceforge. Net
> Subject: Re: [JBoss-dev] Rewrite of ejb.jar, et al
> 
> 
> 
> 
> 
> On Thu, 29 Mar 2001, Jay Walters wrote:
> > I'm not good with names, but how
> > about jboss-ee, jboss-external, ee-spec or just external?
> 
> Why not just drop it under contrib/ in its own submodule (api?) and then a
> module per API?  Seems these might find some use outside the JBoss project
> as well.
> 
> -- 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
> 

-- 
Dan Christopherson (danch) 
nVisia Technical Architect (www.nvisia.com)

Opinions expressed are mine and do not neccessarily reflect any 
position or opinion of nVISIA.

---
If you're a capitalist and you have the best goods and they're 
free, you don't have to proselytize, you just have to wait.
-Eben Moglen


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



RE: [JBoss-dev] Rewrite of ejb.jar, et al

2001-03-29 Thread marc fleury

No except the "tools" which we shouldn't use (the 8082 port stuff) for the
rest it is kosher.

Reminds me we should really rewrite the tools ourselves... I will get there
with EJB soon.

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Dan
|Christopherson
|Sent: Thursday, March 29, 2001 2:24 PM
|To: Jay Walters
|Cc: Jboss-Development@Lists. Sourceforge. Net
|Subject: RE: [JBoss-dev] Rewrite of ejb.jar, et al
|
|
|Are there similiar license issues with the JMX RI?
|
|On Thu, 29 Mar 2001, Jay Walters wrote:
|
|> Ok, that seems like a good approach since it's actually pretty
|small right
|> now.  Any more ideas?  Complaints?
|>
|> Pretty much ready to check some of it in once we sort out where it should
|> go.
|>
|> Cheers
|>
|> -Original Message-
|> From: Juha-P Lindfors [mailto:[EMAIL PROTECTED]]
|> Sent: Thursday, March 29, 2001 1:49 PM
|> Cc: Jboss-Development@Lists. Sourceforge. Net
|> Subject: Re: [JBoss-dev] Rewrite of ejb.jar, et al
|>
|>
|>
|>
|>
|> On Thu, 29 Mar 2001, Jay Walters wrote:
|> > I'm not good with names, but how
|> > about jboss-ee, jboss-external, ee-spec or just external?
|>
|> Why not just drop it under contrib/ in its own submodule (api?)
|and then a
|> module per API?  Seems these might find some use outside the
|JBoss project
|> as well.
|>
|> -- 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
|>
|
|--
|Dan Christopherson (danch)
|nVisia Technical Architect (www.nvisia.com)
|
|Opinions expressed are mine and do not neccessarily reflect any
|position or opinion of nVISIA.
|
|---
|If you're a capitalist and you have the best goods and they're
|free, you don't have to proselytize, you just have to wait.
|-Eben Moglen
|
|
|___
|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/business binary.html

2001-03-29 Thread phox

  User: phox
  Date: 01/03/29 12:46:33

  Modified:business binary.html
  Log:
  Embedded Catalina added
  
  Revision  ChangesPath
  1.10  +2 -1  newsite/business/binary.html
  
  Index: binary.html
  ===
  RCS file: /cvsroot/jboss/newsite/business/binary.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- binary.html   2001/03/27 08:08:12 1.9
  +++ binary.html   2001/03/29 20:46:33 1.10
  @@ -46,6 +46,7 @@

JBoss_tomcat.zip (8.75M) [MAR-26-2001]
JBoss_jetty.zip (6.87M) 
[JAN-28-2001]
  + JBoss_catalina_b1.zip (7.52M) [MAR-26-2001] 
(realm with jboss and web application environment support not implemented)



  @@ -212,4 +213,4 @@
   
   
   
  -
  \ No newline at end of file
  +
  
  
  

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



RE: [JBoss-dev] CVS update: newsite/business binary.html

2001-03-29 Thread marc fleury

when can I make noise about this phox

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|[EMAIL PROTECTED]
|Sent: Thursday, March 29, 2001 3:47 PM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-dev] CVS update: newsite/business binary.html
|
|
|  User: phox
|  Date: 01/03/29 12:46:33
|
|  Modified:business binary.html
|  Log:
|  Embedded Catalina added
|  
|  Revision  ChangesPath
|  1.10  +2 -1  newsite/business/binary.html
|  
|  Index: binary.html
|  ===
|  RCS file: /cvsroot/jboss/newsite/business/binary.html,v
|  retrieving revision 1.9
|  retrieving revision 1.10
|  diff -u -r1.9 -r1.10
|  --- binary.html  2001/03/27 08:08:12 1.9
|  +++ binary.html  2001/03/29 20:46:33 1.10
|  @@ -46,6 +46,7 @@
|   
|   JBoss_tomcat.zip 
|(8.75M) [MAR-26-2001]
|   JBoss_jetty.zip (6.87M) [JAN-28-2001]
|  +JBoss_catalina_b1.zip 
|(7.52M) [MAR-26-2001] (realm with jboss and web application 
|environment support not implemented)
|   
|   
|   
|  @@ -212,4 +213,4 @@
|   
|   
|   
|  -
|  \ No newline at end of file
|  +
|  
|  
|  
|
|___
|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] add file to sourceforge

2001-03-29 Thread Fulco Muriglio

The following command:

cvs -z3 -d:ext:[EMAIL PROTECTED]:/cvsroot/jboss add -kb 
newsite/bin/jboss_catalina_b1.zip

should add that file at cvs.

The answer is:
[EMAIL PROTECTED]'s password: 
cvs add: in directory .:
cvs [add aborted]: there is no version here; do 'cvs checkout' first

What is the good command?
(I've tried cvs checkout  same result)

Bye
Fulco



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



[JBoss-dev] I need ammo

2001-03-29 Thread Bill Burke

All,

I need help.  I really need some references on who is using JBoss in 
production and to what scale.  I'm  meeting resistence on adopting JBoss 
at my company and really need this  information  to convince the 
nervous, uninformed, upper-upper management(CIO types) that this is the 
way to go.

Thanks very much in advance,

Bill Burke



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



R: [JBoss-dev] add file to sourceforge

2001-03-29 Thread Bordet, Simone

Ciao Fulco,

from which directory are you issuing this command ?
Best will probably be (although I'm not a cvs command-line guru):

cd newsite/bin
cvs -z3 -d:ext:[EMAIL PROTECTED]:/cvsroot/jboss add -kb
jboss_catalina_b1.zip

Simon

> -Messaggio originale-
> Da: Fulco Muriglio [mailto:[EMAIL PROTECTED]]
> Inviato: venerdi 30 marzo 2001 0:12
> A: [EMAIL PROTECTED]
> Oggetto: [JBoss-dev] add file to sourceforge
> 
> 
> The following command:
> 
> cvs -z3 -d:ext:[EMAIL PROTECTED]:/cvsroot/jboss 
> add -kb newsite/bin/jboss_catalina_b1.zip
> 
> should add that file at cvs.
> 
> The answer is:
> [EMAIL PROTECTED]'s password: 
> cvs add: in directory .:
> cvs [add aborted]: there is no version here; do 'cvs checkout' first
> 
> What is the good command?
> (I've tried cvs checkout  same result)
> 
> Bye
> Fulco
> 
> 
> 
> ___
> 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 index.html

2001-03-29 Thread starksm

  User: starksm 
  Date: 01/03/29 14:32:08

  Modified:.index.html
  Log:
  Fix the JBoss/Server link
  
  Revision  ChangesPath
  1.4   +1 -1  newsite/index.html
  
  Index: index.html
  ===
  RCS file: /cvsroot/jboss/newsite/index.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.html2001/03/21 14:54:59 1.3
  +++ index.html2001/03/29 22:32:08 1.4
  @@ -38,7 +38,7 @@

   
HOW WE ARE CODING THE FUTURE
  - The JBoss/Server 
is an Open Source, standards-compliant, Enterprise JavaBeans application server 
implemented in 100% Pure Java, as is our full product suite. The JBoss community of 
over 500 developers world wide is working to deliver the full range of J2EE tools as 
the premier Enterprise Java application server for the Java 2 Enterprise Edition 
platform. The JBoss/Server and complement of products are delivered under a public 
license. With 500 downloads per day on average, JBossServer is the fastest growing 
J2EE based server. 
  + The JBoss/Server is an Open Source, standards-compliant, 
Enterprise JavaBeans application server implemented in 100% Pure Java, as is our full 
product suite. The JBoss community of over 500 developers world wide is working to 
deliver the full range of J2EE tools as the premier Enterprise Java application server 
for the Java 2 Enterprise Edition platform. The JBoss/Server and complement of 
products are delivered under a public license. With 500 downloads per day on average, 
JBossServer is the fastest growing J2EE based server. 
Why should you pay tens or even hundreds of thousands 
of dollars to Java-enable your business enterprise? At those costs it doesn't take 
long to figure out there is no future in that, unless you are the server vendor! But 
JBoss is not just about zero cost. Our tools are innovative. We sport features, such 
as "hot deploy", "Dynamic Proxies", and a JMX based fully modular design that enables 
you to replace virtually every component of the server, that just can't be found in 
many commercial Enterprise Java servers, no matter how much you are willing to pay! 
So what are you waiting for? Download JBoss/Server and 
our other JBoss components, today and try them out. Join the community by contributing 
features and fixes. Tell your fellow architects, engineers, and programmers about 
JBoss-we are certain they will want to know! The hundreds of others who are obtaining 
JBoss products every day are finding out just why we have become so popular, why we 
are deployed all over the world.
We are JBoss.org. We are creating world-class J2EE 
technologies in open source. We are "coding the future."
  
  
  

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



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

2001-03-29 Thread kunle

  User: kunle   
  Date: 01/03/29 19:08:58

  Modified:src/docs howtomssql.xml
  Log:
  - undo name change
  
  Revision  ChangesPath
  1.5   +1 -1  manual/src/docs/howtomssql.xml
  
  Index: howtomssql.xml
  ===
  RCS file: /cvsroot/jboss/manual/src/docs/howtomssql.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- howtomssql.xml2001/03/30 02:30:43 1.4
  +++ howtomssql.xml2001/03/30 03:08:58 1.5
  @@ -2,7 +2,7 @@
   
   
   
  - Using MS SQL Server with JBoss (includes Sun JDBC-ODBC bridge)
  + Using MS SQL Server with JBoss


Kunle
  
  
  

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



[JBoss-dev] JMSProviderAdapter & Serializable

2001-03-29 Thread Jason Dillon

Hello, I just started playing around with JMSProvderAdapter (trying to get
SwiftMQ happy inside of JBoss) and found that if my concreate adapter did
not explicily implement Serializable it would fail.

I am wondering if it would make sence to modify JMSProviderAdapter to extend
from Serializable?

I would send a patch, but it would probably be easier to just modify the
source than apply a patch... or should I attach a patch?

--jason


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



[JBoss-dev] instantdb deadlock

2001-03-29 Thread Dominik Baranowski

FYI: I've encounted a deadlock while performing concurrent access to
instantDB
this is fixed in version 3.26 which can be downloaded from the enhydra site.

-dom


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



[JBoss-dev] Subscribe

2001-03-29 Thread Chidambara, Vinoth (CTS)
Title: Subscribe







With Regards,
Vinoth.C




This e-mail and any files transmitted with it are for the sole use of the intended 
recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message. 
Any unauthorised review, use, disclosure, dissemination, forwarding, printing or 
copying of this email or any action taken in reliance on this e-mail is strictly 
prohibited and may be unlawful.

Visit us at http://www.cognizant.com



Re: [JBoss-dev] Sourceforge cvs problem

2001-03-29 Thread Vladimir Blagojevic

Hey Michael,

Thanks a lot.  I got it working (password-less ssh authentication) on RH7.0.  I
did not touch anything since I played with it last nite.  So it was most likely
this 6 hour propagation time you talked about.

Thanks,
Vladimir

Micheal J wrote:

> Some ideas:
> 1. Use an RSA key-pair for SSH1. Ensure that the keys have no passphrase (no
> pint in going password-less only to be asked for the passphrase instead)
> 2. Use the "Edit key" feature of the account management page to upload your
> *public* key file only to all the relevant SF servers (this requires a 6
> hour wait for full propagation)
> 3. Ensure your machine has the corresponding private+public keyfiles as your
> default (or only) SSH1 identity. Actually it may be enough for it to be just
> one of many identities but no point in complicating things right?
>
> Good luck,
>
> Micheal


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



[JBoss-dev] CVS update: newsite/documentation mssql.htm

2001-03-29 Thread kunle

  User: kunle   
  Date: 01/03/23 17:23:11

  Modified:documentation mssql.htm
  Log:
  Finally got around to committing this re-write of the MSSQL howto.- now a quick 
start tutorial to using JBoss+MSSQL- illustrates the process for 3 (yes three!) 
different JDBC drivers- Merant Connect JDBC- i-net OPTA 2000 (thanks for the 
link Juha)- Sun JDBC-ODBC
  
  Revision  ChangesPath
  1.3   +737 -171  newsite/documentation/mssql.htm
  
  Index: mssql.htm
  ===
  RCS file: /cvsroot/jboss/newsite/documentation/mssql.htm,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mssql.htm 2001/02/08 05:31:34 1.2
  +++ mssql.htm 2001/03/24 01:23:11 1.3
  @@ -1,174 +1,740 @@
  +
   
  +
  +HowTo: Use MS SQL Server with JBoss (under development)
  +
  +
  +
  +
  +
  + 
  +  HowTo: Use MS SQL Server with JBoss (under development)
  +   
  +   
  +This document provides a concise and easy-to-read set of instructions that 
  +  will get you up to speed quickly on the basics of using Microsoft's SQL 
  +  Server relational database management system (RDBMS) with the JBoss J2EE 
  +  application server suite to develop, deploy and run Enterprise Java 
  +  applications that with CMP or BMP.
  +JBoss is the brand name of the leading, Open 
  +  Source, standards-compliant J2EE application server suite. The suite includes 
  +  the JBossServer EJB v1.1 container and server, the JBossMQ JMS 1.0 
implemetation, 
  +  the JBossNS JNDI implemetation, the JBossCMP advanced O/R mapper and JDBC 
  +  data object storage implementation and, the JAAS-based JBossSX security 
  +  framework. All the JBoss applications are 100% Pure Java applications and 
  +  are collectively the most innovative J2EE application server suite available 
  +  with features including a much admired modular construction and an advanced 
  +  plug-in architecture.  
  +http://www.microsoft.com/sql/">Microsoft SQL Server is a 
robust, 
  +  high performance and secure platforms for building and managing relational 
  +  databases. It is a Windows application that runs on the Windows 95, 98, 
  +  Me, NT and 2000 platforms. There is also a version for the Windows CE 
platform 
  +  but I guess it is safe to assume you aren't using that version with JBoss. 
  +  Or is it?
  +The combination of the JBoss suite of high performance, Open Source, 100% 
  +  Pure Java J2EE application servers and the ultra-high performance Microsoft 
  +  SQL Server RDBMS offers you a J2EE development and deployment environment 
  +  on the Windows platform with superior performance, good return on investment 
  +  (ROI) and substantially reduced time to market (TTM) compared to other J2EE 
  +  application suites and RDBMS solutions on the Windows platform.
  +  
  +  C'mon, show me already...
  +   
  +Not so fast amigos. You need to obtain a copy of the JBoss distribution 
  +  from the http://www.jboss.org/">JBoss website. General 
information 
  +  about all JBoss products as well as instructions on how to get a copy of 
  +  JBoss for yourself can be found in the http://www.jboss.org/newsite/business/faq.html">JBoss 
  +  FAQ or on the http://www.jboss.org/">JBoss website. The 
  +  rest of this document covers the following tasks: 
  +
  +  Install JDBC Driver
  +  Configure JBoss to use JDBC driver
  +  Troubleshooting
  +
  +Now it is important to be aware that both the JBoss application server 
  +  suite and MS SQL Server are still in active development. They are both 
evolving 
  +  as issues are reported & fixed and, new features are identified and 
  +  added. This means that  some of the information contained in this document 
  +  may be out of date with respect to your copy of JBoss or MS SQL Server. 
  +  This is even more likely to be the case if you have the latest experimental 
  +  or developer version of JBoss.  
  + If this is the case with you or, if you have any further comments or 
suggestions 
  +  about this document or JBoss then please join the http://www.jboss.org/newsite/business/list.html">JBoss 
  +  mailing list . You will then be able to contribute to the production 
  +  of this document and the development of JBoss.
  + 
  +
  +  
  +  1. Install JDBC driver
  +   
  +Before you can use Microsoft SQL Server with JBoss (or indeed any other 
  +  Java application) you must obtain and install a JDBC driver for Microsoft 
  +  SQL Server. Some of the many JDBC drivers that exist for Microsoft SQL Server 
  +  are listed below.
  +  
  +  
  + 
  +   
  +JDBC Driver
  +  
  +   
  +Supplier
  +  
  +   
  +JDBC Driver Type
  +  
  +   
  +Availability