[EMAIL PROTECTED] wrote:
> You may file a feature request on bugzilla, attach you patch - this way
> it'll be recorded.
Done.
> Or send few more patches ( there are many open bugs, most of them are
> easy to solve but require time to test and reproduce ), and you'll be
> able to check in the pa
APR is not a feature of Apache 2.0, but a library/shared object/DLL that
Apache 2.0 makes use to. It provides a bundle of functions like file I/O,
sockets, IPC, threading, etc. While the API is in C, it is portable to
almost all platforms, even the oddest OS/2 and BeOS.
In C world, it is a ver
Title: tomcat 4 and warp/mod_webapp/connectors
is there any documentation on warp, mod_webapp and connectors beyond what comes with the distributions?
is there any work ongoing for connectors for iis/netscape/iplanet?
any info on these things would be greatly appreciated.
thanks.
If you are concerned about security, allowing a web app to set the
default URLStreamHandler is not a very secure thing to do because
it gives the webapp the ability to see all URL streams globally in the JVM.
When using Tomcat with the Java SecurityManager, web apps are not normally
granted per
- Original Message -
From: "Kyle F. Downey" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 18, 2001 6:25 PM
Subject: setURLStreamHandlerFactory--why?
> I'm working with the latest b4-dev from CVS.
>
> Is there a reason the StandardLoader establishes a URLStreamHandler
I'm working with the latest b4-dev from CVS.
Is there a reason the StandardLoader establishes a URLStreamHandlerFactory
(a precious resource, since you can set it only once) just for the "jndi:"
protocol? If all it's used for is to find the protocol handler, that could
be done less intrusively b
On Wed, 18 Apr 2001, Amy Roh wrote:
> btw, a few tests in the tester fail on my environment. I get "Unexpected
> end of file from server" under Authentication, Jndi, and HttpSession tests
> which result in failing a few of the tests with java.net.SocketException.
> Is this normal behavior?
>
craigmcc01/04/18 14:43:17
Modified:catalina/src/share/org/apache/catalina/realm JDBCRealm.java
Log:
Set the connection to non-auto-commit mode, so that some JDBC drivers (in particular
MM.MySql 2.0.4) do not complaing when commit() is called in the default (auto-commit)
mode.
btw, a few tests in the tester fail on my environment. I get "Unexpected
end of file from server" under Authentication, Jndi, and HttpSession tests
which result in failing a few of the tests with java.net.SocketException.
Is this normal behavior?
Amy
> On Wed, 18 Apr 2001, Amy Roh wrote:
>
> >
craigmcc01/04/18 13:40:32
Modified:catalina/src/share/org/apache/catalina/connector
HttpResponseBase.java
tester/src/bin tester.xml
Log:
Enhance the return value for the "Content-Language" header to include the
country code, if specified. No
craigmcc01/04/18 12:53:19
Modified:tester/src/bin tester.xml
tester/web/WEB-INF web.xml
Added: tester/src/tester/org/apache/tester Session05.java
SessionListener01.java SessionListener02.java
tester/web/golden Session05.txt
On Wed, 18 Apr 2001, Amy Roh wrote:
> > I had problems getting the tester going (and gave up on it a few times
> previously),
> > because it seems that, on win2k at least, there are some manual steps
> which
> > must be carried out. In particular, tester.bat tells the code to expect
> tester.xm
> I had problems getting the tester going (and gave up on it a few times
previously),
> because it seems that, on win2k at least, there are some manual steps
which
> must be carried out. In particular, tester.bat tells the code to expect
tester.xml
> to be in %catalina_home%/bin, but the build pro
craigmcc01/04/18 11:59:30
Modified:catalina/src/share/org/apache/catalina/startup Catalina.java
ContextConfig.java EngineConfig.java
HostConfig.java
Log:
Catalina: Restore the recognition of , , and
elements nested inside a . They
On Wed, 18 Apr 2001, Kief Morris wrote:
> [EMAIL PROTECTED] typed the following on 07:27 PM 4/17/2001 +
> >craigmcc01/04/17 12:27:20
> >
> > Restore the ability to save and reload active sessions across a web app
> > restart. This was broken by the refactoring of the load() and unloa
[EMAIL PROTECTED] typed the following on 07:27 PM 4/17/2001 +
>craigmcc01/04/17 12:27:20
>
> Restore the ability to save and reload active sessions across a web app
> restart. This was broken by the refactoring of the load() and unload() calls
> that was recently done in the session ma
On Wed, 18 Apr 2001, Thom Park wrote:
> Hi,
>
> I'm not too familiar with APR, so forgive me if this is a stupid
> question ;-)
>
> If APR is an Apache 2.0 feature, does this mean that mod_webapp will
> only work with Apache 2.0?
>
> If so - what then for Apache 1.3 connectivity to tomcat 4?
Henri,
I think Dan is right on this one - improving the configuration of mod_jk
is probably the most important thing, and merging with mod_webapp and
porting it's protocol and config mechanism would be a good way to do that.
I think the best way to do that would be a revolution ( like jasper34
Hi Bojan,
It's the third ( no time ), I am deep into some charset bugs and jasper
and most developers are busy with various projects.
You may file a feature request on bugzilla, attach you patch - this way
it'll be recorded.
Or send few more patches ( there are many open bugs, most of them are
Hi,
I'm not too familiar with APR, so forgive me if this is a stupid
question ;-)
If APR is an Apache 2.0 feature, does this mean that mod_webapp will
only work with Apache 2.0?
If so - what then for Apache 1.3 connectivity to tomcat 4?
-Thom
--
http://www.borland.com/newsgroups
http://www.b
In terms of integrating mod_jk/mod_webapp, I think this might be worthwhile
-- specifically, mod_jk was built to handle a variety of protocols (ajp12,
ajp13, etc.). So writing a protocol handler for the mod_webapp protocol
would give a lot of benefits -- load-balancing, support for a variety of w
Marc,
In terms of connectors, I think request.isSecure() only works with ajp13.
So, if a user is connected via ajp12, and the web server tries to do a
url-rewriting of an https URL, I think this code will get it wrong. It
might be better to check the request url itself to see if it begins with
--- Mel Martinez <[EMAIL PROTECTED]> wrote:
>
> --- [EMAIL PROTECTED] wrote:
> > Hi,
> >
> > While Mel is working on the JspServlet proposal, I
> > thought it would be a
> > good idea to send my notes on jasper.
> >
> > I looked at both "branches" of jasper, with the
> idea
> > of trying to m
--- [EMAIL PROTECTED] wrote:
> Hi,
>
> While Mel is working on the JspServlet proposal, I
> thought it would be a
> good idea to send my notes on jasper.
>
> I looked at both "branches" of jasper, with the idea
> of trying to merge
> them while preserving each "personality".
>
> As I expected
melaquias01/04/18 03:39:39
Log:
Initial submission of Jasper34 Refactoring proposal source code
Status:
Vendor Tag: jakarta
Release Tags: proposal_0
N jakarta-tomcat/src/jasper34/org/apache/jasper34/resources/Toolkit.properties
N jakarta-tomcat/src/jasper34/org/apache
I think I have found a little bug in jasper of TomCat-4.0.
When jsp-file (1) contains include-file (2)
and this include-file (2) contains another include-file (3), then
jasper does not find include-file (3) if all files are stored not in root
directory of current web application.
For example, I h
melaquias01/04/18 03:37:23
Log:
Initial submission of Jasper34 Refactoring proposal
Status:
Vendor Tag: jakarta
Release Tags: proposal_0
N jakarta-tomcat/proposals/jasper34/JasperToolkit.html
N jakarta-tomcat/proposals/jasper34/model/about.html
N jakarta-tomcat/prop
Don't know if the patch for this was missed (since it was buried into a
long e-mail), you guys didn't like it or just didn't have time to
implement. Anyway, I'm doing it clean in this e-mail. Thanks to Doug
Barnes who explained the issues of random number generation...
Here is the patch (I had to
28 matches
Mail list logo