Session behaviour across http/https boundary

2004-04-08 Thread Martin Alley
) I don't understand why session 3 is created. I read that old browsers don't maintain sessions between http and https; I'm using Ie6 Can anyone explain this? Thanks Martin PS Code is below. **Index.jsp <%@ page import="javax.se

RE: How does Tomcat manage Form-based authentication?

2004-04-01 Thread Martin Alley
It sends you the html form you specify in the section of web.xml See chapter 12 (Security) Appendix A (Deployment Descriptor) of Servlet Spec 2.3 for details. http://java.sun.com/products/servlet/download.html#specs Martin -Original Message- From: Malcolm Warren [mailto:[EMAIL

RE: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
ns to servers that host multiple 'virtual' servers at a single underlying network address. In order to provide the server name, clients MAY include an extension of type "server_name" in the (extended) client hello. ... " This rfc is dated June 2003, so I wonder when it wi

RE: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
xt I shall do a bit more research... Cheers Martin -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 14:55 To: Tomcat Users List Subject: Re: Multiple certificates for multiple virtual hosts (1:1) Martin, You missed something fundamental. Se

RE: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
Okay, I see that the address attribute of the connector element can be used to retrict IP/port combinations. As I've only got 1 IP this doesn't really affect me. Either I've misunderstood something fundamental, or the configuration capabilities are not optimal. Any one?

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Martin Alley
Stick the class files in WEB-INF/classes in the appropriate package hierarchy. Eg. Com.mycompany.myclass in WEB-INF/classes/com/mycompany/myclass.class -Original Message- From: Malcolm Warren [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 11:03 To: [EMAIL PROTECTED] Subject: Of .war and .

Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
ts secure connections." Ignoring my assertions about the irrelevance of IP address above, I don't understand how a specific IP address is associated with a specific certificate in server.xml Can someone put me right on this? Or pro

RE: post data through form based authentication example?

2004-03-29 Thread Martin Alley
No formal bug report yet. The current state of play is at http://www.jboss.org/index.html?module=bb&op=viewtopic&t=47595 If you would like to add your weight to this observation... Thanks Martin -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: 29 March 20

RE: post data through form based authentication example?

2004-03-28 Thread Martin Alley
After further testing, I believe this is a bug specific to the JBoss environment (both 3.2.3 and 3.2.4RC1) Martin -Original Message- From: Martin Alley [mailto:[EMAIL PROTECTED] Sent: 28 March 2004 15:24 To: 'Tomcat Users List' Subject: RE: post data through form based auth

RE: post data through form based authentication example?

2004-03-28 Thread Martin Alley
FORM /login.html /login.html customer merchant admin I can't see the point of protecting the POST method if the data fails to transition. Has anyone got a working example of this? Thanks Martin -Original Mess

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
n two contexts, different result Martin Alley wrote: > Can you validate your config against a DTD? Well, when I made a new context on the v-host, tomcat makes a config for me. I haven't touched it - and I recon tomcat should be able to read its own config files! It's also a b

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
Can you validate your config against a DTD? I find the wording of the error message suspicious - it sounds like it can't read the config file properly, rather than it can't find the driver file that is configured. Martin -Original Message----- From: Martin Alley [mailto:[EMAIL

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
: Tomcat Users List Subject: Re: Same data source config on two contexts, different result Martin Alley wrote: > I believe the driver either needs to be in > WEB-INF/lib or $CATALINA_HOME/common/lib The driver is in $CATALINA_HOME/common/lib -

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
I believe the driver either needs to be in WEB-INF/lib or $CATALINA_HOME/common/lib Martin -Original Message- From: Stig Stavik [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 11:23 To: Tomcat Users List Subject: Re: Same data source config on two contexts, different result Martin Alley

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
What version of tomcat are you using? -Original Message- From: Stig Stavik [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 11:23 To: Tomcat Users List Subject: Re: Same data source config on two contexts, different result Martin Alley wrote: > Do you have the driver class in the ri

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
Furthermore, I'm thinking about the semantics of the driver class and doc base. Do you have the driver class in the right place so it can be found when docroot is "ROOT"? -Original Message----- From: Martin Alley [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 10:37 To: &#x

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
Reloadable Docbase Path In that order. Martin -Original Message- From: Stig Stavik [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 10:32 To: Tomcat Users List Subject: Re: Same data source config on two contexts, different result Martin Alley wrote: > So you can change any parame

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
, different result Martin Alley wrote: > The differences I can see are in the Context element and the url param > value. The question is what difference is significant. The URL have been switched back and forth, but with the same result. This goes for all the other parameters also - but in t

RE: Same data source config on two contexts, different result

2004-03-27 Thread Martin Alley
allowed to load the class from that url. Assuming the error message is misleading. Do you have a security policy file? Just a thought Martin -Original Message- From: Stig Stavik [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 09:55 To: [EMAIL PROTECTED] Subject: Same data source config on two

RE: post data through form based authentication example?

2004-03-27 Thread Martin Alley
I forgot to mention it's behaviour!! Basically when the is no security constraint, it works. When there is a security constraint, the post data gets killed. Martin -Original Message- From: Martin Alley [mailto:[EMAIL PROTECTED] Sent: 27 March 2004 09:43 To: 'Tomcat

RE: post data through form based authentication example?

2004-03-27 Thread Martin Alley
Hi Adam, I've put together a simple test for posting to a secured resource which seems to throw up a problem. Included files are the web app. Based on JBoss3.2.3 embedded tomcat4.1. Martin Index.html form form

RE: post data through form based authentication example?

2004-03-25 Thread Martin Alley
Hi Adam, That's encouraging. I'm actually using struts in this app too. I'll do some debugging and see where I get. Thanks for now Martin -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: 25 March 2004 15:10 To: Tomcat Users List Subject: Re: post da

post data through form based authentication example?

2004-03-25 Thread Martin Alley
advance Martin PS I have also posted to JBoss - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to deploy a web application under Tomcat 5

2004-03-24 Thread Henry Martin
will pass along other helpful parts later. Henry Martin Little Planet Learning, Inc. On Wednesday, March 24, 2004, at 02:23 PM, Bachler, Elisabeth (Elisabeth) wrote: I don't quite understand what you are saying. My problem is that I don't know how to create a WAR file with the basic str

Re: Apache+Tomcat + MOD_JK on different machine

2004-03-23 Thread Henry Martin
n Apache in front of a Tomcat Farm. Another case for custom configuration is when your Apache is in front of many differents Tomcat engines, each one having it's own configuration, a general case in ISP hosting Henry Martin Little Planet Learning, Inc.

Re: Context mapping and war

2004-03-23 Thread Martin Monsorno
uot;. With this, everything works as wanted. -- Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

JasperException: Unable to compile class for JSP, root cause: FileNotFoundException

2004-03-19 Thread Martin Morawetz
eads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Thread.java:534) Environment: RH Linux 8.0, Tomcat 5.0.18 Has anyone any idea what the reason might be? -- Martin - To unsubscribe, e-mail: [

loading classes from the shared/lib directory

2004-03-19 Thread Martin Morawetz
Hello! Is tomcat able to load classes (not jar-files) from the $CATALINA_HOME/shared/classes directory dynamically (without tomcat-restart)? And if so, how? I wasn't able to do it. -- Thanks, Martin - To unsubs

RE: Digitally Signing Posts

2004-03-16 Thread Martin Dengler
-1 Problematic email clients' settings that cause CRLs to be checked for digital-certificate-signed email need to be changed. It's a bit optimistic, anyway, for those settings to assume that everyone's digital email-signing certificate will be signed by a root cert whose CRL server you know... I

Re: AD authentication if exact jndi context not known

2004-03-10 Thread Martin Rostan
Hi, I'm trying to use referrals="follow" in the JNDIRealm in order to make it work against Active Directory, but it's not working, I' receiving the exception below (I'm supposing the AD process is broken). Also I've found that the JNDI tutorial says that referrals="follow" doesn't work for AD:

How to deploy a war-file to tomcat 4?

2004-03-09 Thread Martin Monsorno
, that the application already exists at this path. What was first, the hen or the egg? How do you all make this? I just want to be able to configure a data source one times, and then just install a war-file from time to time. -- Martin --

Connecting apache httpd 2.0.48 to Tomcat 5

2004-02-27 Thread Julien Martin
Hello, Can anyone post their configuration files for connecting Apache Httpd with Tomcat 5 on a windows 2000 system? Thanks in advance, Julien Martin. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Tomcat 5 and apache 2.0.48

2004-02-27 Thread Julien Martin
Hello, Can anyone direct me to a good tutorial about hooking Tomcat 5 to Apache 2.0.48 on windows. Thanks in advance, Julien. PS. I asked this question before but I lost my emails. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Unable to use war-files with tomcat 5.0.18 / Linux

2004-02-26 Thread Martin Morawetz
y the ./bin/startup.sh skript! Any ideas what I'm doing wrong? Martin Morawetz kreative|zone° kreative|zone° -- Kommunikationsag

Re: Unable to use war-files with tomcat 5.0.18 / Linux

2004-02-26 Thread Martin Morawetz
7;t think it's the permissions. Shapira, Yoav schrieb: Howdy, File permissions for the daemon process maybe? Yoav Shapira Millennium ChemInformatics -Original Message- From: Martin Morawetz [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:12 AM To: [EMAIL PROTECTED] Subject:

Tomcat 5 and apache 2.0.48

2004-02-25 Thread Julien Martin
Hello, Can anyone direct me to a good tutorial about hooking Tomcat 5 to Apache 2.0.48 on windows. Thanks in advance, Julien. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: startup dosent work anymore since updated on xp!

2004-02-20 Thread Martin Gainty
Bonjour Francois: On the one hand you are using CALL as if you are synchronously executing a BATch file but you are passing "START" parameter I thought CALL and START were mutually exclusive ?!?!? http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechn ol/winxppro/proddocs/call

Reading war file name from servlet?

2004-02-18 Thread Erlandsson Martin
? Thanks, /Martin Á - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tomcat 5 and IIS 5

2004-02-16 Thread Julien Martin
ml You are redirected to the download page of Jakarta. So where is the documentation? Thanks in advance, Julien Martin. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Web Activity Monitoring

2004-02-11 Thread Martin Gainty
Peter There are the HTTP Variables example: http://www.lib.washington.edu/asp/browser/servar.asp How would you want to capture this information? Regards, Marty Gainty - Original Message - From: "Pete Stokes" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday

persistent connections

2004-02-05 Thread Martin Kardzhiev
Hi, does anyone know, have an idea, whatsoever with implementing "push technology" with Tomcat and servlets? Cheers

Re: Insufficient Error messages on jsp error

2004-02-02 Thread Martin Gainty
. For that reason I use IDEs for incremental local builds only. Regards, Martin P.S. Offline topic for Dan-What did you think of the Monster ad during the Superbowl?? - Original Message - From: "Daniel Gibby" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTE

Question on Container Managed Authorization in Tomcat

2004-01-29 Thread Martin Grüneberg
for those Methods? How could I tie session-lifetime and auth-lifetime together in all Auth-Methods? greetings Martin Grüneberg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat 5 SSL Configuration

2004-01-12 Thread martin grotzke
hope this does help, cheers, martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: port info

2004-01-12 Thread Martin Gainty
0.0.0.0 your default network address Take care when specifying this in your IP Address field -Martin - Original Message - From: "FRANCOIS Dufour" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 12, 2004 3:32 PM Subject: RE: port info &g

Re: CGI servlet in tomcat

2004-01-12 Thread Martin Dengler
I've contacted the OP off-list to see if I can help as well. On Fri, 2004-01-09 at 17:38, Tim Funk wrote: > See the tomcat-dev and tomcat-user archives. There were some recent patches > to CGI Servlet and some discussions about it. I don't rember the specifics. > (Since I don't use cgi) > > Wor

How to serve static EXCEL or POWERPOINT files from Tomcat ?

2004-01-12 Thread Enrique MARTIN
Hi, I am trying to serve .xls and .ppt files from tomcat so that the browser opens the right application (excel and powerpoint respectively) . What I obtain instead is that the byte content is sent by the web server and this content is then interpreted as text by the browser. For the .doc files

Re: Isapi redirector jk2.02 Installer

2004-01-12 Thread Martin Sturzenegger
hi, http://virtualict.net/support/kb/iis6-Tomcat5-JK2.html describes how 2 install tomcat 5 on iis 5 on windows2003. i've tried to install tomcat 5 on iis5 on windows2000 servicepack 3 and it failed also. martin -- Urspruengliche Nachricht -- Von: kwi

Re: Redhat9 / apxs / mod_jk2 build problem.

2004-01-12 Thread martin grotzke
ttp://www.mail-archive.com/[EMAIL PROTECTED]/msg114982.html cheers, martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

built mod_jk2 on fedora with tomcat 5.0.16 (working)

2004-01-11 Thread martin grotzke
id tomcat4 uid=91(tomcat4) gid=91(tomcat4) groups=91(tomcat4),48(apache) Configuration files (and this description, too) can be found at http://www.javakaffee.de/wiki/jsp/Wiki?BuildModJk (at the bottom of the page): workers2.properties, jk2.properties, example for vhost that's all, i hope it's helpful, cheers, martin signature.asc Description: This is a digitally signed message part

Re: Tomcat RPM for Fedora Core 1

2004-01-05 Thread Martin Dengler
On Mon, 2004-01-05 at 20:21, Johan BÃng wrote: > Hi everybody. > I'm a tomcat newbie, so I apologize if this question is sent to the > wrong forum. > I'm looking for a good rpm for tomcat witch will work on Fedora Core 1. FYI, I run FC1 too and find it excellent. > Are there any official RedHat

Re: Tomcat 5 Fine Tune Config

2003-12-28 Thread Martin Gainty
, beans, and classes f.. Descriptive meta-information Martin - Original Message - From: "Graham Kendall" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, December 28, 2003 1:26 PM Subject: Tomcat 5 Fine Tune Config > I have already created some servlets

ServletException

2003-12-12 Thread Julien Martin
Hello, I am trying to run a plain jsp application under Jonas/Tomcat. Here is the exception I get: * javax.servlet.ServletException: org/apache/jasper/runtime/HttpJspBase at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249) at javax.servlet.http.HttpServlet

Re: Integrating Apache + Tomcat 5 + jk2

2003-12-10 Thread Martin Kuba
/etc/httpd/workers2.properties and following in workers2.properties: [logger.file:] level=DEBUG file=/var/log/httpd/mod_jk2.log [shm:] file=/var/log/httpd/jk2.shm size=100 [channel.socket:localhost:8009] [uri:/mywebapp/*] info=maps mywebapp to default channel I hope this helps ... Martin

Re: Tomcat5.0.16 not reading request attributes from mod_jk

2003-12-09 Thread Martin Kuba
Remy Maucherat wrote: Martin Kuba wrote: Hi, I have a problem getting request attributes (like SSL information and additional CGI variables) in Tomcat5.0.16 connected to Apache using mod_jk/1.2.5 It seems to be some problem with the new "Coyote/JK2 AJP 1.3" connector, because i

Re: Two Tomcats and One Apache Web Server

2003-12-09 Thread Martin Kuba
libexec/mod_jk.so JkWorkersFile "/etc/httpd/workers.properties" JkLogFile "/var/log/httpd/mod_jk.log" JkLogLevel info JkMount /webapp1/* t1 JkMount /webapp2/* t2 It will route requests for /webapp1 to the first tomcat and requests for /webapp2 to the s

Tomcat5.0.16 not reading request attributes from mod_jk

2003-12-08 Thread Martin Kuba
e connector or is something wrong with my configuration ? Martin -- ~~~~~~ Supercomputing Center Brno Martin Kuba Institute of Computer Scienceemail: [EMAIL PROTECTED] Masaryk University http://www.ics.muni.cz/~m

Declarative Security - Forbid access to all resources except one

2003-11-25 Thread Martin Kupisch
esn't work. start /jsp/index.jsp user Everything else /* Is something wrong here or am I misunderstanding something completely? - Martin. -- NEU FÜR ALLE - GMX MediaCenter - für Fotos, Musik, Dateien... Fotoalbum, Fi

Re: cannot access my web application (resource is not available)

2003-11-20 Thread Martin Monsorno
n resin on the same directory tree. -- Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cannot access my web application (resource is not available)

2003-11-19 Thread Martin Monsorno
url jdbc:postgresql:myappdb -- Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JNDI-lookup fails with GlobalResources

2003-11-14 Thread Martin Monsorno
Christopher Schultz <[EMAIL PROTECTED]> writes: > Martin, >> I recently installed tomcat 4.1.29 and deployed a web application on >> it via a war-file. The provided server.xml contains the following >> lines: > >> Have I forgotten to do some additional i

JNDI-lookup fails with GlobalResources

2003-11-14 Thread Martin Monsorno
ializationServlet.java:29) | ... ` So obviously, putting values into JNDI context fails. (If I set the value in web.xml instead as an , everything goes well.) Have I forgotten to do some additional initialization or configu

Tomcat + IIS 6 (Windows2003)

2003-10-23 Thread Jeremy Martin
ct 23 10:20:02 2003] [jk_uri_worker_map.c (502)]: jk_uri_worker_map_t::map_uri_to_worker, Found a context match worker1 -> /examples/ [Thu Oct 23 10:20:02 2003] [jk_isapi_plugin.c (775)]: HttpFilterProc [/examples/jsp] is a servlet url - should redirect to worker1 [Thu Oct 23 10:20:02 2003] [jk_isap

Re: Problem using realm to connect to a database

2003-10-15 Thread Martin Jacobson
e 2 jdbc drivers for MySQL, the twzl driver, and Mark Matthews mm driver. twzl stopped being maintained (IIRC), and the mm driver became the 'official' driver. Do you have both drivers visible to the classloader? If so, it looks as though it's choosi

Re: tomcat and mac os 10.2.8 update

2003-10-13 Thread Martin Jacobson
Giuliano Gavazzi wrote: was /usr/local a symbilic link? If so the installation might have replaced it with a directory. so you should copy the new content to the target and reinstate the symbilic link. BTW Using JAVA_HOME: /usr sounds wrong to me. No, that's right for Mac OS X M

Question about the Petstore's SignOnFilter class

2003-10-11 Thread Julien Martin
is SignOff. > -Original Message- > From: Julien Martin [mailto:[EMAIL PROTECTED] > Sent: Saturday, October 11, 2003 1:52 PM > To: Tomcat Users List > Subject: Question about the Petstore's SignOnFilter class > > I am going through the Petstore's SignOn

Question about the Petstore's SignOnFilter class

2003-10-11 Thread Julien Martin
Hello, I am going through the Petstore's SignOnFilter class and I am wondering why it has been named SignOnFilter and not SignInFilter. Isn't the businesss logic of the class to help the signing in and not the signing on? Am I right or wrong? Thanks in advance for your replies. Julien. Here is t

register/remove HttpSessionListener after context startup?

2003-10-09 Thread Martin Grüneberg
Hi all, Is it possible to register/remove a class which implements HttpSessionListener after startup without changing web.xml and reloading the context? Martin Grüneberg - To unsubscribe, e-mail: [EMAIL PROTECTED] For

GlobalNamingResource: Class not found....

2003-10-06 Thread Martin Grüneberg
: Class not found: accessmanager.core.server.AccessManager Starting service Tomcat-Standalone Apache Tomcat/4.1.27-LE-jdk14 what is wrong, why does this happen? shared/lib should be visible to the server? thanks in advance, Martin Grüneberg

Problems with Property Files

2003-09-30 Thread Martin Grüneberg
these Property Files in the Jar but Tomcat ignore them (tried also to put them into shared/classes). During developing (Eclipse) the Property Files are always found when they are in the Classpath... Where do I have to put the Property Files to be found by my Package? thanks in advance, Martin

jsp:body

2003-09-28 Thread Julien Martin
Hello, I am trying to find documentation about the new "jsp:body" tag. Can anyone tell me what it does and tell me where I can find more documentation about it. Thanks in advance, Julien.

Difference between path-mapped and servlet-mapped filters

2003-09-26 Thread Julien Martin
Hello, Can anyone please explain to me what the difference is between path-mapped and servlet-mapped filters. Thanks in advance, Julien. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

Bug JSTL

2003-09-24 Thread Julien Martin
Thanks for your reply Yann, It turned out to be a bug. I downloaded the latest standard.jar archive and it is now working fine. Julien.

Possible bug in Tomcat JSTL

2003-09-24 Thread Julien Martin
Hello, I am struggling to get the fmt:message tag working in Tomcat 5.05. Here is what I do and the result I get: 1. I set the locale using a el expressions as follows: 2. I then choose a resource bundle as follows: 3. I finally display a message as follows: I have to retranslate and reco

RE : Broken pipe in Servlet.sercice()

2003-09-24 Thread Saint-Martin Cécile
ream); objectOutput.writeObject(objectToSerialize); objectOutput.flush(); objectOutput.close(); } Cécile SAINT-MARTIN Ouest-France Tel. 77.24 mailto:[EMAIL PROTECTED] > Howdy, > > >We use a servlet to send serialized data to a java client. It always > append >

Broken pipe in Servlet.sercice()

2003-09-24 Thread Saint-Martin Cécile
er in java directly. Does anybody have an idea about the problem? Is there a limitation to the size of data that we can send by a socket? Cécile SAINT-MARTIN Ouest-France Tel. 77.24 mailto:[EMAIL PROTECTED] --

SOS JSTL

2003-09-24 Thread Julien Martin
Hello, I am developing an application that uses Jstl for internationalization. I store a string called "lang" in a request attribute (${requestScope.lang}). This string is either "fr" or "es". My page is sometimes in french even though the lang attribute is "es" and vice versa. It seems as if th

Jstl problem

2003-09-23 Thread Julien Martin
Hello, I am developing an application that uses Jstl for internationalization. I store a string called "lang" in a request attribute (${requestScope.lang}). This string is either "fr" or "es". My page is sometimes in french even though the lang attribute is "es" and vice versa. It seems as if th

Logging Error in org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler processConnection

2003-09-18 Thread Martin Grüneberg
rties. I hope somebody knows the answer. Greetings, Martin Grüneberg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Thank you Tim (re pageContex.forward)

2003-09-15 Thread Julien Martin
bly doing bad things > 3) Its not a redirect - your are doing a forward. The 2 words have very > different meanings. forward() is an internal redirect. Redirect is typically > stated as an external browser redirect > 4) See 2 > > -Tim > > Julien Martin wrote: > > > Than

pageContext.forward ??

2003-09-15 Thread Julien Martin
uthor Julien Martin */ public class SetCountryTag extends TagSupport { private String countryID = null; private ServletContext servletContext = null; public int doStartTag() throws JspException { try { Countries cs = (Countries) servletContext.getAttribute("countries"); Country countr

pageContext.forward ??

2003-09-15 Thread Julien Martin
Hello, I am trying to redirect to a servlet called "RedirectHome" from within a custom tag. Within the tag class, I have a method called "redirect". This method is called when a certain condition is met. I know the method is called thanks to the trace but oddly the pageContext.forward appears to

Re: Tomcat, MySQL & JNDI: java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-09-15 Thread Martin Jacobson
(ii), the driverClassName is com.mysql.jdbc.Driver However, the exception seems to suggest that the correct factory is being used by default. Your driverClassName is the old name, and might not be in the jar file any more. HTH Martin

Re: Deployment on a specific port

2003-09-11 Thread Martin Jericho
as two different webapps. > > At this time at night, I'm out of ideas. (Actually, brain ain't working, must > sleep) > > The simple kludge is to keep with the original idea and store the shared data > in a common classloader in some static fashion. (Emphasis ... kludge) &g

Re: Deployment on a specific port

2003-09-11 Thread Martin Jericho
loyment on a specific port > I think you can create 2 services and each service gets is own connector and > webapp. > > This also means that both servlets can't be in the same webapp. (Without > extra tricks) > > -Tim > > Martin Jericho wrote: > > > I would

Deployment on a specific port

2003-09-11 Thread Martin Jericho
I would like to set up a single standalone instance of tomcat with connectors on two ports, and deploy one servlet to work only on one port and a different servlet to work only on the other port. Is this possible? If not, the only way I can get around it that I can see is to use the ServletReq

Running external processes...

2003-09-10 Thread Martin Mauri
Hi, I'm building a webapp with JSP and I need to run an external shell process on Linux...I don't know if this is implemented by the Servlet/JSP API , can I call it in the normal way like "System.exec()"?? or it won'

RE: Problem with mod_jk and CoyoteConnector

2003-08-21 Thread Martin Smith
Hi, I think I'm right in saying that mod_jk2 only works with Apache 2.0.43. What's your exact Apache version??? Martin -Original Message- From: J.P. Wadkin C9951627 [mailto:[EMAIL PROTECTED] Sent: 21 August 2003 15:57 To: tomcat-user Subject: Problem with mod_jk and Coyot

Re: Client SSL certificates signed by Windows Certificate Server

2003-08-14 Thread Martin Jericho
- Original Message - From: "Bill Barker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 11, 2003 2:03 PM Subject: Re: Client SSL certificates signed by Windows Certificate Server > > "Martin Jericho" <[EMAIL PROTECTED]> wro

Client SSL certificates signed by Windows Certificate Server

2003-08-14 Thread Martin Jericho
the new certificate itself into a .cer file and importing that into the cacerts file. For some reason, tomcat doesn't trust Windows Certificate Server's root certificate, or at least doesn't trust any certificates signed by it, ev

aliases under tomcat

2003-08-11 Thread Julien Martin
Hello, In order to internationalize a web application I would like several hosts to map to a unique directory i.e. "fr.localhost" and "en.localhost" to map to "localhost". I have created an alias under the "localhost" host of tomcat which I have called "fr.localhost". When I type in http://fr

aliases under tomcat

2003-08-08 Thread Julien Martin
Hello, I would like "fr.localhost" and "en.localhost" to resolve to "localhost". I have created the aliases under tomcat but I was told by someone on the mailing list that further configuration was needed on the dns side. I am running w2k. Can anyone tell me how to configure my w2k machine ple

tutorial question

2003-08-04 Thread Martin Mauri
Hi, does anybody here know about a good tutorial on JSP, specially working with sessions? thanks. Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SOS Tomcat 5 and Apache httpd 2.0.47 on windows w2k

2003-07-30 Thread Julien Martin
f so, where? > > - is the 404 an Apache 404 or a Tomcat 404? > > John > > Eric J. Pinnell wrote: > > > Is tomcat listening on port 8009? > > > > -e > > > > On Wed, 30 Jul 2003, Julien Martin wrote: > > > > > >>Hello, > >&g

SOS Tomcat 5 and Apache httpd 2.0.47 on windows w2k

2003-07-30 Thread Julien Martin
Hello, I am still trying to run tomcat 5 together with apache httpd. I altered the workers2.properties file as one of you suggested. Here it is now: ** [shm] file=${serverRoot}/logs/shm.file size=1048576 # socket channel [channel.socket:localhost:8009] port=8009 hos

Re: Hooking Tomcat to Apache HTTPD

2003-07-30 Thread Julien Martin
ulien. - Original Message - From: "John Turner" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, July 30, 2003 5:56 PM Subject: Re: Hooking Tomcat to Apache HTTPD > Julien Martin wrote: > > > [Wed Jul 30 17:28:32 2003] [

Hooking Tomcat to Apache HTTPD

2003-07-30 Thread Julien Martin
ine the worker > [ajp13:localhost:8009] > channel=channel.socket:localhost:8009 > > # Uri mapping > [uri:/examples/*] > worker=ajp13:localhost:8009 > > -e > > On Wed, 30 Jul 2003, Julien Martin wrote: > > > Hello, > > I am trying to

Hooking Tomcat to Apache HTTPD

2003-07-30 Thread Julien Martin
Hello, I am trying to connect Tomcat 5.0 to Apache HTTPD 2.0.47 on a windows 2k platform. I configured the workers2.properties file as follows: ** [logger] level=DEBUG [config:] #file=${serverRoot}/conf/workers2.properties file=D:/system/Apache Group/Apache2/conf/workers2.properties debug=

Connecting tomcat 5.0 to apache 2.0.47

2003-07-29 Thread Julien Martin
_jk_2.0.46.dll Where can I get the 2.0.47 so module from? Julien. - Original Message - From: "Julien Martin" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, July 29, 2003 8:05 PM Subject: connecting tomcat 5.0 to apache 2.0.47

connecting tomcat 5.0 to apache 2.0.47

2003-07-29 Thread Julien Martin
Hello, After an extensive search in the mailing lists and and the web, I finally ask for some help. I am trying to connect apache tomcat 5.0 to apache 2.0.47 on a windows 2000 platform. 1. I am confused as the module directory of my install contains X.so files and no X.dlls. I thought X.so file

<    1   2   3   4   5   6   7   8   9   >