RE: [JBoss-dev] A new user interface for JBoss

2001-08-08 Thread Schaefer, Andreas
Hi JSR-77 comes (by default) with a EJB front-end which each client can use to get the information about the management domain of application servers (this is mandatory). My idea about this is: - we have a dedicated, stripped-down application server running the management server - this server

RE: [JBoss-dev] A new user interface for JBoss

2001-08-08 Thread Schaefer, Andreas
Hi Don't be confused. I think JSR-77 group didn't want to rely on JMX therefore they came up with the EJB front-end. EJB would be easy to use within JSP and Java clients. The major reason not to use JMX is that there is no security. For JMX we have to wait. There are still discussions about

RE: [JBoss-dev] A new user interface for JBoss

2001-08-08 Thread Schaefer, Andreas
, August 08, 2001 12:10 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] A new user interface for JBoss on 1-08-08 19.39, Schaefer, Andreas at [EMAIL PROTECTED] wrote: - we have a dedicated, stripped-down application server running the management server Should'ent all servers in one

RE: [JBoss-dev] A new user interface for JBoss

2001-08-08 Thread Schaefer, Andreas
Hi -Original Message- From: Peter Fagerlund [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 1:48 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] A new user interface for JBoss on 1-08-08 22.03, Schaefer, Andreas at [EMAIL PROTECTED] wrote: Maybe you have

RE: [JBoss-dev] A new user interface for JBoss

2001-08-06 Thread Schaefer, Andreas
Hi Looking good ;-) I am starting to create a management GUI see project JBossMGT but right now I am only working on making JBoss manageable but have no clear idea how to create the GUI. A basic idea was to create GUI components and use JMX as communication layer between the components.

[JBoss-dev] JavaDoc Review

2001-08-06 Thread Schaefer, Andreas
Hi Geeks Maybe a few noticed but for all others I want to discuss what I added to the JBoss Coding Guidelines (JBoss Website - Contribution - Guidelines). I proposed the idea of a JavaDoc Review tag (review and /review) added to changes or when JavaDoc is added to indicate that someone else

RE: [JBoss-dev] package level fields

2001-08-03 Thread Schaefer, Andreas
Beside private Attributes I think you should always make the members private and add Setter/Getter methods. Even the developer of the class does not see how it could be useful only the people inheriting this class can tell if it is useful or not. This make Attributes object-oriented and also

RE: [JBoss-dev] package level fields

2001-08-03 Thread Schaefer, Andreas
03.35, Schaefer, Andreas at [EMAIL PROTECTED] wrote: What do you think ? I do not need o think when something is correct ... ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

RE: [JBoss-dev] Rabbit Hole Commits in 3.0

2001-08-02 Thread Schaefer, Andreas
Hi -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 02, 2001 12:26 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] Rabbit Hole Commits in 3.0 So how about including in the ear: 1. jboss-ear.xml with dtd like That's OK for me BUT what

[JBoss-dev] JBoss Management Architecture

2001-07-31 Thread Schaefer, Andreas
Hi Geeks As you maybe know JSR-77 delivers a logical and vendor neutral view to an application server. In order to implement this I have two basic ideas: 1) Use a central MBean knowing how to map JSR-77 to JBoss and vice versa. This would use other mapping classes (EJB, JDBC, JNDI etc.)

RE: [JBoss-dev] timer mbean - pls help

2001-07-27 Thread Schaefer, Andreas
Hi Have a look at the SchedulerMBean in org.jboss.util package. Please note that you don't have to register a timer everytime but you can register a listener for a serie of events (every 10 seconds 100 times etc.) Andy -Original Message- From: David L. Martin [mailto:[EMAIL

RE: !!!WHERE IS THIS CLASS?? Re: [JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb/plugins AbstractInstanceCache.java AbstractInstancePool.java BMPPersistenceManager.java CMPPersistenceManager.java EntityInstancePool.java LRUEnterpriseContextCachePolic

2001-07-23 Thread Schaefer, Andreas
Hi David First, could you compile now because for it is working fine and I don't have this JAR file modified ? The classes are developed outside of JBoss because they belong to JSR-77. Whenever I make a change I will add the compiled classes in the JAR file update it on CVS. I will also add a

RE: [JBoss-dev] new wait(1000) not good

2001-07-23 Thread Schaefer, Andreas
Hi Maybe also wrong but I think the distributed locking/synchr. will be necessary when you run EJBs in a clustered environment where there is not one EJB Container but several of them able to serve and transparent to the client. On the other hand I know that IBM WebSphere uses an external DB

RE: [JBoss-dev] jboss.jcml reading properties problem/bug.

2001-07-19 Thread Schaefer, Andreas
Hi Geeks I just took the latest code from CVS and when I start JBoss it tells me that the Document Root element is missing: java.io.IOException: Document root element is missing which comes from org.jboss.configuration.ConfigurationService.loadConfiguration line 433. Andy -Original

[JBoss-dev] Coding Style

2001-07-19 Thread Schaefer, Andreas
Hi Geeks Due the latest bunch of email I was getting a little bit confused how the actual Coding Style or Guidelines are. Do we have a document/page about this (or shouldn't we have one)? Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL PROTECTED] while( true ) { think(); write();

RE: [JBoss-dev] jboss.jcml reading properties problem/bug.

2001-07-19 Thread Schaefer, Andreas
Sorry Ignore it because it is fixed with the latest CVS updates from Scott. Andy -Original Message- From: Schaefer, Andreas [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 1:02 PM To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-dev] jboss.jcml reading properties problem/bug

RE: [JBoss-dev] Coding Style

2001-07-19 Thread Schaefer, Andreas
. - Original Message - From: Schaefer, Andreas [EMAIL PROTECTED] To: jBoss-Dev (E-mail) [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 1:20 PM Subject: [JBoss-dev] Coding Style Hi Geeks Due the latest bunch of email I was getting a little bit confused how the actual

[JBoss-dev] JBoss Guidelines Webpage

2001-07-19 Thread Schaefer, Andreas
Hi Geeks I just added guidelines.jsp to the JBoss CVS module newsite. Please have a look at this and give me feedback. It is linked from Contribution page. Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL PROTECTED] while( true ) { think(); write(); publish(); }

RE: [JBoss-dev] Any examples of using the scheduler

2001-07-18 Thread Schaefer, Andreas
Hi Tim The JBoss Scheduler is still under development but for a simple Scheduler ready to use. At the end of the jboss.jcml file there is a Scheduler MBean (commented out) with the example Scheduler. You have to do: - Create an implemenation of org.jboss.util.Schedulable interface - Adjust the

[JBoss-dev] JBoss Publication

2001-07-17 Thread Schaefer, Andreas
Hi Geeks No teaser anymore but real fact: http://www.onjava.com/pub/a/onjava/2001/07/16/jboss.html Enjoy Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL PROTECTED] while( true ) { think(); write(); publish(); } ___ Jboss-development

RE: [JBoss-dev] Announcement: Documentation update and latest progress

2001-07-12 Thread Schaefer, Andreas
Hi Tobias * HT06 JMX Connector Description as well as the HowTo JMX Timer is up to date with some bugfixes I added. Andy ___ Jboss-development mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-development

RE: [JBoss-dev] Shutting down JBoss

2001-06-29 Thread Schaefer, Andreas
The org.jboss.Shutdown works fine for me to shut down JBoss also from /etc/init.d on SuSE Linux 7.1. Andy -Original Message- From: Scott M Stark [mailto:[EMAIL PROTECTED]] Sent: Friday, June 29, 2001 12:13 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] Shutting down JBoss

RE: [JBoss-dev] does it really works ?

2001-06-27 Thread Schaefer, Andreas
Hi When you want to make it work you HAVE to use JDK 1.7 !!! MAD Andy -Original Message- From: jean [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 10:59 AM To: [EMAIL PROTECTED] Subject: [JBoss-dev] does it really works ? JBoss-2.4-BETA_Tomcat-3.2.2.zip9.7MJune 23, 2001

[JBoss-dev] JBossGUI: Let's start

2001-06-26 Thread Schaefer, Andreas
To finally bring the JBoss GUI flying let's start a project for that ;-) My idea of the JBoss GUI would be a dynamic, expandable and version aware GUI helping an administrator, deployer and Developer dealing with JBoss. The basic requirements for the GUI would be: - Able to add and remove GUI

RE: [JBoss-dev] JBoss Management GUI - Call for requirements!

2001-06-26 Thread Schaefer, Andreas
Hi Jim This will be delivered by JBoss's JSR-77 implementation and we only need to visualize them. Mad Andy -Original Message- From: Jim Archer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 12:43 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] JBoss Management GUI -

[JBoss-dev] Update JMX Reference Implementation

2001-06-26 Thread Schaefer, Andreas
Hi Geeks Today Sun announced that they added new stuff to the JMX-RI like remote access to MBeanServers but they they only released the binary code. Do we stay with what we have right now or do we want to move on an replace the actual JBoss RMI-Connector with the classes from the JMX-RI ? When

RE: The next generation GUI (was : Re: [JBoss-dev] EJX and XML)

2001-06-25 Thread Schaefer, Andreas
Oh man How short sighted you are. I aggree when you are a J2EE programmer then you don't need a GUI but the most future administrator of JBoss don't know J2EE well enough to do so. And also a management GUI is not only to configure a server but also to administer the EJBs, redeploy, restart

RE: [JBoss-dev] Problem with jaws.xml

2001-06-21 Thread Schaefer, Andreas
There have been some changes to the jaws.dtd and parsing the needs to be straightened out. I believe these are not compatible with the 2.2 version so check the code for the changes. - Original Message - From: Schaefer, Andreas [EMAIL PROTECTED] To: jBoss-Dev

RE: [JBoss-dev] JBoss Linux startup scripts

2001-06-20 Thread Schaefer, Andreas
Hi I am not quite sure what your problem is but one I had was that you had to start run.sh script at the /jboss/bin or /jboss/dist/bin directory. Therefore I created another script which makes a CD and then starts run.sh. Have fun - Andy BTW: To have more info try to start JBoss from the

[JBoss-dev] Problem with jaws.xml

2001-06-20 Thread Schaefer, Andreas
Hi Geeks After the recent changes I couldn't deploy my EJBs anymore. The Error: [Container Factory] org.jboss.ejb.DeploymentException: Error in jaws.xml: type-mapping Hypersonic SQL not found Even in the jaws.xml I specify PostgreSQL as the type mapping. I make a CVS checkout this morning and

RE: [JBoss-dev] JBoss on JBoss

2001-06-14 Thread Schaefer, Andreas
What a question ! How do you want to convince other people to use JBoss when you aren't going to use your own tool. Either JBoss is ready to be used in production and then we should use it. BTW We are going to create an interactive Survey which must store the info in a DB. Mad Andy

RE: [JBoss-dev] org.jboss.mgt.ContainerMgt now producing a InstanceAlreadyExistsException on redploy

2001-06-13 Thread Schaefer, Andreas
Hi Scott It is still the same problem but I fixed the NPE which is caused when the registration was not done in the ServiceMBeanSupport and then the log variable was not created. But now the registration ran into the problem that we have two MBeans registered at the same time on the MBeanServer

RE: Commit Messages was [RE: [JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb CacheKey.java]

2001-06-13 Thread Schaefer, Andreas
Yes, there is a way (don't ask me how) but we should ensure that it is at the end of the java class file otherwise you have to scroll through pages of logs before getting to the code. BTW shouldn't we create a JavaDoc policy to force people to update this damn JavaDoc. I know I am forgetting

RE: Commit Messages was [RE: [JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb CacheKey.java]

2001-06-13 Thread Schaefer, Andreas
:[EMAIL PROTECTED]]On Behalf Of Schaefer, Andreas Sent: Wednesday, June 13, 2001 6:25 PM To: '[EMAIL PROTECTED]' Subject: RE: Commit Messages was [RE: [JBoss-dev] CVS update: jboss/src/main/org/jboss/ejb CacheKey.java] Yes, there is a way (don't ask me how) but we should ensure

RE: [JBoss-dev] [ jboss-Feature Requests-432122 ] JMX RMI Connector Enhancements

2001-06-11 Thread Schaefer, Andreas
Hi Geeks According to the JMX Specification: - CONNECTORs create a transparent view to the remote MBS through Java which therefore needs Java on the client. Protocol examples are: RMI/RMI-IIOP/JMS - ADAPTORs allows you to connect to the remote MBeanServer through its protocol and needs not

[JBoss-dev] Revamp of the JBoss startup and properties files

2001-06-05 Thread Schaefer, Andreas
Hi Geeks and Nerds To make a long discussion short I would propose the following to get ride of jboss.conf and only use jboss.jcml: - create a JBoss MLET class able to load mbean tags - add two tags under server in jboss.jcml: - startup: containing all MBeans needed during startup and not

[JBoss-dev] Revamp of the JBoss startup and properties files

2001-06-05 Thread Schaefer, Andreas
Hi Geeks and Nerds To make a long discussion short I would propose the following to get ride of jboss.conf and only use jboss.jcml: - create a JBoss MLET class able to load mbean tags - add two tags under server in jboss.jcml: - startup: containing all MBeans needed during startup and not

RE: [JBoss-dev] Call for Help

2001-05-22 Thread Schaefer, Andreas
automatically by the AbstractWebContainer itself. - Original Message - From: Schaefer, Andreas [EMAIL PROTECTED] To: jBoss-Dev (E-mail) [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 9:59 AM Subject: [JBoss-dev] Call for Help Hi Geeks I am wondering if the intergrator

[JBoss-dev] Manual: Problems with generating

2001-05-18 Thread Schaefer, Andreas
Hi Geeks I have problem generating the HTML docu (the generation fails within after the 11. chapter). But also the PDF generation fails (or at least stalls after a while). Could we also put the PDF-docu on the web to download ? Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL

[JBoss-dev] Call for Help

2001-05-16 Thread Schaefer, Andreas
Hi Geeks I am wondering if the intergrator of Tomcat and Jetty maybe can help with integrating the management classes. Can you just tell me if you have time to do it, thanx. Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL PROTECTED] while( true ) { think(); write(); publish();

[JBoss-dev] Call for Help

2001-05-16 Thread Schaefer, Andreas
Hi Geeks I am wondering if the intergrator of Tomcat and Jetty maybe can help with integrating the management classes. Can you just tell me if you have time to do it, thanx. Have fun - Mad Andy / Better Pizza [EMAIL PROTECTED] [EMAIL PROTECTED] while( true ) { think(); write(); publish();

RE: [JBoss-dev] Main.java, let's clean it up

2001-05-10 Thread Schaefer, Andreas
: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of |Schaefer, Andreas |Sent: Thursday, May 10, 2001 12:51 PM |To: '[EMAIL PROTECTED]' |Subject: RE: [JBoss-dev] Main.java, let's clean it up | | |How's about specifying the Configuration Service in the server |tag within the JCML file

RE: [JBoss-dev] Object Unique Id Generator

2001-04-11 Thread Schaefer, Andreas
a product which needs to run with multiple databases then you need to address database portability issues. Cheers Jay -Original Message----- From: Schaefer, Andreas To: '[EMAIL PROTECTED]' Sent: 4/10/01 2:32 PM Subject: RE: [JBoss-dev] Object Unique Id Generator There is a concep