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

2004-10-14 Thread billbarker
billbarker2004/10/14 21:42:25 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Make the message properly empty for the first part of the POST body. This is a bit ugly, but then so is the rest of ChannelJni ;-). Fix for Bug #31722 Revision ChangesPath

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

2002-09-19 Thread mturk
mturk 2002/09/18 23:26:52 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Add the INFO log message when the channel is initialized. Revision ChangesPath 1.14 +3 -1 jakarta-tomcat-connectors/jk/java/org/apache/jk/common/ChannelJni.java Index:

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

2002-06-10 Thread costin
costin 2002/06/10 17:11:03 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Fix for POST in in-process. This is a very tricky code - we must 'simulate' a 2-thread model ( i.e. one tomcat thread sending/receiving messages with apache, and one apache thread ) in a

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java HandlerRequest.java JniHandler.java

2002-06-01 Thread costin
costin 2002/06/01 01:29:34 Modified:jk/java/org/apache/jk/apr AprImpl.java jk/java/org/apache/jk/common ChannelJni.java HandlerRequest.java JniHandler.java Log: Minor fixes, deal with the new callback cases. Things are a bit tricky,

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java HandlerRequest.java MsgAjp.java Shm.java

2002-05-28 Thread costin
costin 02/05/28 15:51:11 Modified:jk/java/org/apache/jk/common ChannelJni.java HandlerRequest.java MsgAjp.java Shm.java Log: Minor fixes and updates. Revision ChangesPath 1.11 +1 -3

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

2002-04-25 Thread costin
costin 02/04/25 11:22:54 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Remove the duplicated code ( that moved to the parent class, JniHandler ). Use the new unified dispatch mechanism that will be used by all components to communicate with the C code.

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java ChannelUn.java Shm.java

2002-04-18 Thread costin
costin 02/04/18 10:44:49 Modified:jk/java/org/apache/jk/common ChannelJni.java ChannelUn.java Shm.java Log: Deal with APR not available gracefully ( with a simple message ). If libapr.so and libjkjni.so are not in LD_LIBRARY_PATH, all native

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

2002-04-17 Thread costin
costin 02/04/17 15:37:50 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Clean up the jni handler - use plain JkHandler methods and mechanisms. The whole idea is to have a single, generic 'hook' mechanism used by all components - including jni. Revision

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

2002-04-15 Thread costin
costin 02/04/15 17:04:20 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Refactored ChannelJni - it uses AprImpl to talk with the dark side. This will allow us to use the optimizations in channel_jni for other C-java calls ( basically avoid creating byte[] or

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

2002-02-06 Thread costin
costin 02/02/06 09:43:08 Modified:jk/java/org/apache/jk/common ChannelJni.java ChannelSocket.java ChannelUn.java Log: Update for the api changes. Added isSameAddress from Ajp12Interceptor - will be used with the secret for the shutdown handler.

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

2002-01-25 Thread costin
costin 02/01/25 23:24:37 Modified:jk/java/org/apache/jk/common ChannelJni.java Log: Yes, it's working ( at least at hello world level ). And I bet it's going to be much better now ( I only tested with the dummy container, 3.3/4.0 should be easy to add but need some more work )

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/common ChannelJni.java ChannelUn.java MsgAjp.java

2002-01-11 Thread costin
costin 02/01/11 20:03:42 Modified:jk/java/org/apache/jk/common ChannelUn.java MsgAjp.java Added: jk/java/org/apache/jk/common ChannelJni.java Log: Added the template for the jni channel. Work is underway on the C side as well. Few fixes/enhancements for the Unix