Re: disable jmx option in tc5

2003-04-02 Thread Costin Manolache
Remy Maucherat wrote: Costin Manolache wrote: Hmmm. We could use the jsr77 option ( that is now in 4.1.x ) and generate JSR77 names only if it is on. Or we could just use the other kind of names allways - and have a separate module that re-register the objects with JSR77 names ( if needed

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/threads ThreadWithAttributes.java

2003-04-02 Thread costin
costin 2003/04/02 16:45:21 Modified:util/java/org/apache/tomcat/util/threads ThreadWithAttributes.java Log: Add a threadData attribute. This can simplify the init and allow the thread pool to run simple Runnable. Revision ChangesPath 1.2

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/threads ThreadPool.java

2003-04-02 Thread costin
costin 2003/04/02 16:51:45 Modified:util/java/org/apache/tomcat/util/threads ThreadPool.java Log: Few changes - hopefully no backward incompatibilities. The most important is the use of the threadData property in ThreadWithAttribute. Previously - we created a simple thread

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/threads ThreadPoolMX.java

2003-04-02 Thread costin
costin 2003/04/02 16:52:26 Modified:util/java/org/apache/tomcat/util/threads ThreadPoolMX.java Log: All code moved to parent - but we need to keep this around for backward compat. Revision ChangesPath 1.6 +8 -115 jakarta-tomcat-connectors/util/java/org

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server JkMain.java

2003-04-02 Thread costin
costin 2003/04/02 16:53:51 Modified:jk/java/org/apache/jk/server JkMain.java Log: jk2.properties is not required. Revision ChangesPath 1.36 +3 -4 jakarta-tomcat-connectors/jk/java/org/apache/jk/server/JkMain.java Index: JkMain.java

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelSocket.java

2003-04-02 Thread costin
costin 2003/04/02 16:54:34 Modified:jk/java/org/apache/jk/common ChannelSocket.java Log: Unregister on shutdown. Revision ChangesPath 1.36 +12 -2 jakarta-tomcat-connectors/jk/java/org/apache/jk/common/ChannelSocket.java Index: ChannelSocket.java

Re: Connector issues

2003-04-02 Thread Costin Manolache
commons-modeler should fix most of the problems with undeclared mbeans. The real problem is that the Ajp13Connector has a lot of problems and it's no longer supported - all work is on the coyote connector, I don't know anyone testing or supporting Ajp13. Costin Jeff Tulley wrote: There are some real

Re: TC5 Servlet unavailable error

2003-04-01 Thread Costin Manolache
restarted and the application is set to unavailable right away. Therefore any consequent requests fail. I'll try to fix it - probably moving the unregister/register from destroy to stop will do it. Or maybe we can send a notification context reloading and have the mapper reset its data ? Costin

Re: Why does Tomcat use xerces under java 1.4 instead of the internal jvm classes?

2003-04-01 Thread Costin Manolache
. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: TC5 Servlet unavailable error

2003-03-31 Thread Costin Manolache
org.apache.catalina.core.StandardWrapperValve invoke INFO: Servlet admin.login_jsp is currently unavailable I tought I fixed it. Are you doing stop/destroy/init/start or just stop/start ? The trick is to unregister and re-register the context, I think the mapper may hold references to the old wrappers. Costin

Moving org.apache.coyote.tomcat5

2003-03-28 Thread Costin Manolache
- to jar both ). Probably end of the weekend I'll check in ( unless someone -1 ). Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-5/resources/mbeans jboss-service.xml

2003-03-27 Thread costin
costin 2003/03/27 06:54:35 Removed: resources/mbeans jboss-service.xml Log: Removed - it can't be used without other stuff. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java StandardPipeline.java

2003-03-26 Thread costin
costin 2003/03/26 11:20:30 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java StandardPipeline.java Log: Moved valve registration/unregistration to StandardPipeline, which seems a better place ( since the pipeline manages the valves

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net PoolTcpEndpoint.java

2003-03-26 Thread costin
costin 2003/03/26 20:08:20 Modified:util/java tomcat-util.manifest util/java/org/apache/tomcat/util/net PoolTcpEndpoint.java Log: Fix bug that prevented clean shutdown. Remove ClassPath from manifest, added spec version and the other entries so it may

cvs commit: jakarta-tomcat-5/resources/mbeans jboss-service.xml

2003-03-26 Thread costin
costin 2003/03/26 22:32:15 Added: resources/mbeans jboss-service.xml Log: Another experimental mbean file, using jboss syntax. I used it to test reloading ( and cleanup ) in jboss, using their jmx impl ( which is the only one that supports class reloading and updates

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml

2003-03-26 Thread costin
costin 2003/03/26 22:49:20 Modified:catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml Log: Error in params. Revision ChangesPath 1.6 +5 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/mbeans

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat5 CoyoteConnector.java

2003-03-25 Thread costin
costin 2003/03/25 09:47:47 Modified:coyote/src/java/org/apache/coyote/tomcat5 CoyoteConnector.java Log: Set the domain in the mapper - so it maps only for our engine ( ==domain ) Register the mapper in JMX - we can see what's inside. Revision

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat5 CoyoteRequest.java

2003-03-25 Thread costin
costin 2003/03/25 09:48:42 Modified:coyote/src/java/org/apache/coyote/tomcat5 CoyoteRequest.java Log: Get the Host from the Context, it simplifies the mapping and registration of Hosts Revision ChangesPath 1.22 +13 -5 jakarta-tomcat-connectors/coyote/src/java

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat5 MapperListener.java

2003-03-25 Thread costin
costin 2003/03/25 09:50:21 Modified:coyote/src/java/org/apache/coyote/tomcat5 MapperListener.java Log: Remove unused imports. Deal with Hosts. Use JMX for hosts, remove some deps. Use a domain Revision ChangesPath 1.9 +73 -48

cvs commit: jakarta-tomcat-connectors/util build.xml

2003-03-25 Thread costin
costin 2003/03/25 09:50:52 Modified:util build.xml Log: Index and nodocs Revision ChangesPath 1.21 +3 -2 jakarta-tomcat-connectors/util/build.xml Index: build.xml === RCS file: /home

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http/mapper Mapper.java

2003-03-25 Thread costin
costin 2003/03/25 09:52:56 Modified:util/java/org/apache/tomcat/util/http/mapper Mapper.java Log: Add the host automatically. We don't really need the Host object to be anything - we map to Context and we get the Host object from there. ( well, Wrapper is the only object

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/threads ThreadPoolMX.java

2003-03-25 Thread costin
costin 2003/03/25 09:53:28 Modified:util/java/org/apache/tomcat/util/threads ThreadPoolMX.java Log: Use getters Revision ChangesPath 1.5 +2 -2 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/threads/ThreadPoolMX.java Index: ThreadPoolMX.java

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardContext.java

2003-03-25 Thread costin
costin 2003/03/25 09:56:01 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: First impl of reloading. Right now I put it in destroy() - so you need stop()/destroy()/init()/start(). Probably it can be in stop

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup HostConfig.java

2003-03-25 Thread costin
costin 2003/03/25 09:57:54 Modified:catalina/src/share/org/apache/catalina/startup HostConfig.java Log: Remove the annoying periodical message. Revision ChangesPath 1.7 +6 -8 jakarta-tomcat-catalina/catalina/src/share/org/apache

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
package names, I just want the code to be included in catalina.jar and in catalina sources ). The problem is that tomcat-coyote.jar is now dependent on all tomcats. Costin Jean-Francois Arcand wrote: Hi Remy, the servlet doesn't compile with JDK 1.3.x : StatusManagerServlet.java:274

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardWrapper.java

2003-03-25 Thread costin
costin 2003/03/25 11:07:56 Modified:catalina/src/share/org/apache/catalina/core StandardWrapper.java Log: Fix for allowing manager servlet jars to be in WEB-INF/lib of jar. IF the app is priviledged, it'll have the loader as a child of the container

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
:-) Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
Remy Maucherat wrote: Remy Maucherat wrote: Costin Manolache wrote: Remy, Could you move the manager servlets to webapps/manager ? As you can see, I can't touch build.xml without breaking something :-). I would also like to move the coyote/tomcat5 code in catalina - and eventually

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
) on this implementation ( even if you manage to make it work in Mozilla ). XML+XSL is not supported in many browsers, it is overkill. The used DTD is pretty bad too. ( it seems even MSIE5.5 has problems displaying the page ! Do I have to install WindowsXP to see the tomcat page ? ) Costin -Tim Costin

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
to generate an XML or other complexities - and there are apps that can parse it and do whatever they need to do. Costin -Tim Costin Manolache wrote: Tim Funk wrote: I am in the process of reworking the style sheet to make it prettier. (I do my testing in mozilla) I will also try

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets StatusManagerServlet.java

2003-03-25 Thread costin
costin 2003/03/25 15:35:35 Modified:catalina/src/share/org/apache/catalina/servlets StatusManagerServlet.java Log: Roll back to the previous version. Revision ChangesPath 1.5 +75 -64 jakarta-tomcat-catalina/catalina/src/share/org/apache

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
- is there anything specific to tomcat5 in this app ? From what I see, it should work with 1.4 just fine ( well, except that it won't load if o.a.catalina package is used without backporting the fix from ServletWrapper ) Costin

Re: [5.0] Monitor servlet

2003-03-25 Thread Costin Manolache
Remy Maucherat wrote: Costin Manolache wrote: Remy Maucherat wrote: No, just return HTML in the first place. Feel free to revert to the previous version. -1 from me for server side XSL (we're doing a monitor servlet, not a bring-ther-server-to-its-knees monitor servlet). I just don't

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-24 Thread Costin Manolache
as the name in the distribution. BTW, I am _not_ proposing the use of catalina.5.0.1.jar ( full versioned names ) in the runtime, this is only about distributing .jars as part of the binary release, and if this works we can extend to .war. Costin

RE: [GUMP] Build Failure - jk2

2003-03-24 Thread Costin Manolache
reports that we need to add few more -l, I still need to test it. Costin Saludos, Ignacio J. Ortega -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 11:12 AM To: [EMAIL PROTECTED] Subject: [GUMP] Build Failure - jk2

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-24 Thread Costin Manolache
to distribute jars for all other projects. We'll still have to publish a list with the dep. version numbers of the stable release. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-24 Thread Costin Manolache
stable. There are dozens of complex descriptor-based solutions, and they can be used in addition to support various tools. However it would be crazy to not use the symlink to allow the simple get to work. Costin

Re: TC5 JMX

2003-03-24 Thread Costin Manolache
Amy Roh wrote: Costin, It doesn't seem like mbeans are created appropriately when logger, realm, and valve are dynamically added after start. Is the mbean registration code listening to those events? It should. For valve - I think it works now ( I'll make a commit soon with few more

Re: [5.0] [PROPOSAL] Extra web.xml to declare compiled JSPs

2003-03-24 Thread Costin Manolache
, and this may affect the security in some cases. In tomcat5 - I think we should reduce the use of tomcat-specific deployment and config files, we already have JMX that abstracts the config, and we should try to be consistent ( i.e. use some generic JMX config file ). Costin

Re: TC5 JMX

2003-03-24 Thread Costin Manolache
also checked Host.stop - it seems to clean up the JMX, I don't know yet if start() will recreate the same environemnt ). Costin Amy ( by now I mean my work version, I have a number of debug statements to remove and I'll check in ). Costin

Re: [5.0] [PROPOSAL] Extra web.xml to declare compiled JSPs

2003-03-21 Thread Costin Manolache
, and save back ( DOM - so we don't loose comments ). Or even read it as a file, and use regexp. No problem if we save the original web.xml in the process. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [5.0] [PROPOSAL] Extra web.xml to declare compiled JSPs

2003-03-21 Thread Costin Manolache
of complexity and uglyness). However it is good enough for this use case - and it is the standard. Costin Tim Funk wrote: Could an alternate hack be to modify JspServlet to allow an additional init parameter which would be the file which contains the mapping of the precompiled jsp's

Re: [5.0] [PROPOSAL] Extra web.xml to declare compiled JSPs

2003-03-21 Thread Costin Manolache
will probably develop apps that run in 2.3 and 2.4 containers for a while. Not to mention that the order is irrelevant only in the 2.4 web.xml which also uses schema. I plan to stick with the 2.3 descriptor for a while, xml schema is one of the worst technologies that I know. Costin

Re: [5.0] [PROPOSAL] Extra web.xml to declare compiled JSPs

2003-03-21 Thread Costin Manolache
Remy Maucherat wrote: Costin Manolache wrote: The main point is to _not_ hack anything, but just use the standard. If you precompile your app - and include jasper-runtime.jar in WEB-INF/lib - the result should work in _any_ container - the precompiled jsps are _just_ regular servlets

[PROPOSAL] Distributing the .jar files as binaries in release

2003-03-21 Thread Costin Manolache
compatibility. Opinions ? Remy - could we do that for 4.1.24 ? Should we start asking on commons to get the .jars distributed separately so we can use them in the download target ? Costin - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-21 Thread Costin Manolache
release of tomcat. ( that would be more important for 5.0, since 4.1.x is mostly stable and less likely to change ). Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-21 Thread Costin Manolache
something in jk - should we have to make a full new release of tomcat ? Same for jasper, catalina, etc. As long as we test the new jar against the stable version - and _we_ recommend the components that should be mixed - I think it is far better way to upgrade. Costin

Re: [PROPOSAL] Distributing the .jar files as binaries in release

2003-03-21 Thread Costin Manolache
not testing anything, etc, even with the current system. What you propose would just make things worse. I don't like your ideas today ;-) Wait until tomorrow to submit them :) :-) Costin - To unsubscribe, e-mail: [EMAIL

RE: [4.1.23] Deprecating mod_webapp

2003-03-21 Thread Costin Manolache
have to worry about your use case. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [VOTE] [4.1.24] Stability rating

2003-03-20 Thread Costin Manolache
Remy Maucherat wrote: Remy Maucherat wrote: ballot [ ] Alpha [ ] Beta [X] Stable (GA) /ballot Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java

2003-03-20 Thread costin
costin 2003/03/20 07:55:29 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java Log: Fix valve registration. Few methods to simplify registration. You'll see a lot of valves ( about 130 with the default webapps ). We could filter

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardPipeline.java

2003-03-20 Thread costin
costin 2003/03/20 07:56:21 Modified:catalina/src/share/org/apache/catalina/core StandardPipeline.java Log: Added a method that will allow us to see what valves are associated with each container. ( pipeline is a helper for container - it won't be exposed

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml

2003-03-20 Thread costin
costin 2003/03/20 07:56:40 Modified:catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml Log: Add the valveNames attribute Revision ChangesPath 1.3 +15 -0 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm RealmBase.java

2003-03-20 Thread costin
costin 2003/03/20 07:57:40 Modified:catalina/src/share/org/apache/catalina/realm RealmBase.java Log: Simplify ( refactored common operations ) Start work on unregistration. Revision ChangesPath 1.8 +18 -29 jakarta-tomcat-catalina/catalina/src/share/org

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valves ValveBase.java

2003-03-20 Thread costin
costin 2003/03/20 08:01:34 Modified:catalina/src/share/org/apache/catalina/valves ValveBase.java Log: add object name attribute Revision ChangesPath 1.5 +22 -8 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valves/ValveBase.java Index

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java

2003-03-20 Thread Costin Manolache
Remy Maucherat wrote: [EMAIL PROTECTED] wrote: costin 2003/03/20 07:55:29 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java Log: Fix valve registration. Few methods to simplify registration. You'll see a lot of valves

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java StandardContext.java StandardHost.java StandardPipeline.java StandardWrapper.java StandardWrapperValve.java mbeans-descriptors.xml

2003-03-20 Thread costin
costin 2003/03/20 10:28:29 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java StandardContext.java StandardHost.java StandardPipeline.java StandardWrapper.java StandardWrapperValve.java

cvs commit: jakarta-tomcat-catalina/catalina build.xml

2003-03-20 Thread costin
costin 2003/03/20 15:29:34 Modified:catalina build.xml Log: Add a flag to turn off doc generation. Add the 'index' flag - it is supposed to optimize jar reading on 1.4+ ( without hurting 1.3-) Copy all config files Revision ChangesPath 1.47 +27 -20

cvs commit: jakarta-tomcat-catalina/catalina/src/bin catalina.sh

2003-03-20 Thread costin
costin 2003/03/20 15:30:46 Modified:catalina/src/bin catalina.sh Log: Port from 3.3 - if -force option is used and a pid file was set, use it to kill tomcat. This allows getting rid of hunged instances. Revision ChangesPath 1.6 +10 -1 jakarta-tomcat-catalina

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ApplicationFilterConfig.java

2003-03-20 Thread costin
costin 2003/03/20 15:31:47 Modified:catalina/src/share/org/apache/catalina/core ApplicationFilterConfig.java Log: One more serialized. I had it on my laptop. Serializing the context would greatly increase the startup time - but it's unlikely

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup ContextConfig.java

2003-03-20 Thread costin
costin 2003/03/20 15:33:44 Modified:catalina/src/share/org/apache/catalina/startup ContextConfig.java Log: No default web.xml. We should pack the default ( or a minimized ) web.xml in catalina.jar ( but not in root - probably o/a/c/deploy

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup Embedded.java

2003-03-20 Thread costin
costin 2003/03/20 15:36:14 Modified:catalina/src/share/org/apache/catalina/startup Embedded.java Log: Few small enhancements. Make Embedded extend StandardService. It includes an Engine and connectors - just like Service. This will allow us to harmonize the 2 use cases

Re: Cluster wide deployment, question

2003-03-20 Thread Costin Manolache
and having it listen - look at MapperListener for an example. I'm not very familiar with your impl - I assume each instance in a cluster has an ID. I hope this ID is in sync with the jvm-route and the JMX domain :-) ( i.e. it is the Engine name ) Costin

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java StandardContext.java

2003-03-20 Thread costin
costin 2003/03/20 22:38:47 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java StandardContext.java Log: More work on reloading. It seems context can be stoped and started from the console, but when it starts again I get 404s

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java

2003-03-20 Thread costin
costin 2003/03/20 23:33:14 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java Log: Bad typo. Revision ChangesPath 1.14 +3 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/ContainerBase.java

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardContext.java StandardEngine.java StandardHost.java

2003-03-20 Thread costin
costin 2003/03/20 23:34:40 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java StandardEngine.java StandardHost.java Log: Various fixes. Both embed and standalone are working again. Revision Changes

Re: Xerces Question

2003-03-19 Thread Costin Manolache
. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat - JBoss integration and clustering of course :)

2003-03-19 Thread Costin Manolache
and creating an object name. Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper JspC.java

2003-03-18 Thread Costin Manolache
Remy Maucherat wrote: [EMAIL PROTECTED] wrote: costin 2003/03/17 12:53:40 Modified:jasper2/src/share/org/apache/jasper Tag: tomcat_4_branch JspC.java Log: I don't know if this can make it into the release - but I can't get jspc to work as an ant

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardEngine.java

2003-03-18 Thread costin
costin 2003/03/18 23:23:57 Modified:catalina/src/share/org/apache/catalina/core StandardEngine.java Log: Register standard engine. After all the init is done, I'll start testing the destroy and reloading. Revision ChangesPath 1.7 +9 -4

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardHost.java

2003-03-18 Thread costin
costin 2003/03/18 23:24:40 Modified:catalina/src/share/org/apache/catalina/core StandardHost.java Log: Updates. Revision ChangesPath 1.6 +35 -24 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardHost.java

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/logger LoggerBase.java

2003-03-18 Thread costin
costin 2003/03/18 23:27:57 Modified:catalina/src/share/org/apache/catalina/logger LoggerBase.java Log: Registration for loggers. We do need to make a final decision about this. I didn't get any feedback on the logger names used in context

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java

2003-03-18 Thread costin
costin 2003/03/18 23:28:31 Modified:catalina/src/share/org/apache/catalina/mbeans MBeanUtils.java Log: One more split of the large descriptors file. Revision ChangesPath 1.13 +5 -4 jakarta-tomcat-catalina/catalina/src/share/org/apache

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml

2003-03-18 Thread costin
costin 2003/03/18 23:29:21 Modified:catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml Added: catalina/src/share/org/apache/catalina/authenticator mbeans-descriptors.xml Log: More move of descriptors

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java

2003-03-18 Thread costin
costin 2003/03/18 23:30:07 Modified:catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java Log: Loggers will be registered directly Revision ChangesPath 1.10 +10 -10 jakarta-tomcat-catalina/catalina/src/share/org

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java

2003-03-18 Thread costin
costin 2003/03/18 23:32:48 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java Log: Logger registration. Must be done in container since loggers don't implement lifecycle. Revision ChangesPath 1.10 +17 -2 jakarta

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread costin
costin 2003/03/17 11:16:13 Modified:catalina/src/share/org/apache/catalina ServerFactory.java Log: Default. I'm trying a different path that will reduce the breakage and make /admin work with embeded as well. Basically I'm creating the Service and Server, even for embeded

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardEngine.java

2003-03-17 Thread costin
costin 2003/03/17 11:16:42 Modified:catalina/src/share/org/apache/catalina/core StandardEngine.java Log: Same. Revision ChangesPath 1.6 +38 -14 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardEngine.java

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardServer.java StandardService.java mbeans-descriptors.xml

2003-03-17 Thread costin
costin 2003/03/17 11:22:07 Modified:catalina/src/share/org/apache/catalina/core StandardServer.java StandardService.java mbeans-descriptors.xml Log: Get the server, service self-register. Add serviceNames attribute in server

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader WebappLoader.java

2003-03-17 Thread costin
costin 2003/03/17 11:22:37 Modified:catalina/src/share/org/apache/catalina/loader WebappLoader.java Log: Fix the registration Revision ChangesPath 1.11 +4 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/loader

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java

2003-03-17 Thread costin
costin 2003/03/17 11:22:55 Modified:catalina/src/share/org/apache/catalina/mbeans ServerLifecycleListener.java Log: More stuff going out. Revision ChangesPath 1.9 +30 -30 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm RealmBase.java

2003-03-17 Thread costin
costin 2003/03/17 11:24:13 Modified:catalina/src/share/org/apache/catalina/realm RealmBase.java Log: Registration. I also commented out main() - if it is really used, it should be in a separate class - in startup for example. The main() in Embeded should also be removed

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session ManagerBase.java

2003-03-17 Thread costin
costin 2003/03/17 11:24:35 Modified:catalina/src/share/org/apache/catalina/session ManagerBase.java Log: Registration Revision ChangesPath 1.14 +33 -2 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session PersistentManagerBase.java

2003-03-17 Thread costin
costin 2003/03/17 11:25:11 Modified:catalina/src/share/org/apache/catalina/session PersistentManagerBase.java Log: Registration ( call super ). commons-logging Revision ChangesPath 1.7 +60 -59 jakarta-tomcat-catalina/catalina/src

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session StandardManager.java

2003-03-17 Thread costin
costin 2003/03/17 11:25:37 Modified:catalina/src/share/org/apache/catalina/session StandardManager.java Log: Registration. Less verbosity. Revision ChangesPath 1.7 +26 -16 jakarta-tomcat-catalina/catalina/src/share/org/apache

cvs commit: jakarta-tomcat-5/resources/mbeans tomcat5-ant.xml

2003-03-17 Thread costin
costin 2003/03/17 11:28:19 Modified:resources/mbeans tomcat5-ant.xml Log: More friendly startup for the console ( detect jmxri or mx4j ) Removed service Added /admin ( commented out for now ) Revision ChangesPath 1.6 +30 -7 jakarta-tomcat-5/resources

RE: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session ManagerBase.java

2003-03-17 Thread Costin Manolache
Filip Hanik wrote: Hi Costin, haven't had time to review these changes, will they affect the clustering implementation of the manager that extends StandardManager in there? Just make sure start() calls super.start(), or has: if( ! initialized ) super.init() You may want to add a file

RE: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread Costin Manolache
. It works for me :-) Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper JspC.java

2003-03-17 Thread costin
costin 2003/03/17 12:53:40 Modified:jasper2/src/share/org/apache/jasper Tag: tomcat_4_branch JspC.java Log: I don't know if this can make it into the release - but I can't get jspc to work as an ant task without this. The problem is that struts is using

RE: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread Costin Manolache
own main() ( or use the small startup class in modeler ) and load an mbeans.xml file. Controlling everything via JMX is much more flexible and powerfull than using wrappers or helpers like Embedded. Costin - To unsubscribe, e

RE: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread Costin Manolache
Mladen Turk wrote: -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Just wanted to let you know that the new embedded in 5.0 is great. Costin (and I, to some extent) got it running with JBoss 3.2 without any problem. The big advantage is that it's just like

Re: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread Costin Manolache
for Principals ( the Group named roles ), but it needs to be tested. Costin Remy Maucherat wrote: Mladen Turk wrote: -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Just wanted to let you know that the new embedded in 5.0 is great. Costin (and I, to some extent) got it running

Re: cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper JspC.java

2003-03-17 Thread Costin Manolache
I don't know if the official build for 4.1.22/23 is done - but it would be nice if we could include this fix for jspc. I don't know any other way to compile an app using struts. Remy - were you able to precompile /admin for 4.1.23 ? Do you plan to include it precompiled, or the old way ? Costin

/admin - what needs to be done

2003-03-17 Thread Costin Manolache
() operation to Service and adding a flag for local Services will be enough. That's low priority for now - we need to get the rest working for single instance first Costin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina ServerFactory.java

2003-03-17 Thread Costin Manolache
Mladen Turk wrote: -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Costin Manolache What I ment was a catalina.bat or catalina.sh embedded calling o.a.c.s.Embedded I think Embedded class should be deprecated in 5.0, and all 'embedding' should be done

Re: [5] Few major changes in JMX naming

2003-03-16 Thread Costin Manolache
required to ensure unique names is /Service/Engine/Host/Context. There is a one-to-one mapping between Service and Engine, and Embeded tomcat doesn't use Service ( Service is just a wrapper for 1 Engine + Connectors ). So the naming will be: Engine - Host - Context Costin

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/valves mbeans-descriptors.xml

2003-03-16 Thread costin
costin 2003/03/16 22:45:33 Added: catalina/src/share/org/apache/catalina/core mbeans-descriptors.xml catalina/src/share/org/apache/catalina/valves mbeans-descriptors.xml Log: Moved from mbeans. Modeler can pick them

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ContainerBase.java

2003-03-16 Thread costin
costin 2003/03/16 22:50:21 Modified:catalina/src/share/org/apache/catalina/core ContainerBase.java Log: Valves will now be registered when they are added, by Container. Since Valves don't implement Lifecycle, they have to be registered by the parent

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardContext.java

2003-03-16 Thread costin
costin 2003/03/16 23:26:42 Modified:catalina/src/share/org/apache/catalina/core StandardContext.java Log: Remove service=, cleaner way to deal with the j2eeApplication and server - now they're also exposed as attributes, so a real j2ee server can set them

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardDefaultContext.java

2003-03-16 Thread costin
costin 2003/03/16 23:28:51 Modified:catalina/src/share/org/apache/catalina/core StandardDefaultContext.java Log: - merged the code implementing JMX operations from mbeans ( it was almost the same, but with extra checks ) - started to add the jmx

<    1   2   3   4   5   6   7   8   9   10   >