RE: Urgent ! Pls help !

2004-02-01 Thread Arnab Chakravarty
ajp13 and ajp14 and not ajp12...correction

-Original Message-
From: Arnab Chakravarty [mailto:[EMAIL PROTECTED]
Sent: Monday, February 02, 2004 11:32 AM
To: Tomcat Users List
Subject: RE: Urgent ! Pls help !


Can u check ur server.xml config file and check if the port is correctly set for the 
ajp12 connector to server the request...

-Original Message-
From: a a [mailto:[EMAIL PROTECTED]
Sent: Monday, February 02, 2004 12:28 AM
To: [EMAIL PROTECTED]
Subject: Urgent ! Pls help !


Dear all,

  I have some problem when connecting apache to tomcat.
  I have installed both apache1.3 and tomcat4.
  I use mod_jk to do the connection. However some problems exists.
  Here is the log file of "mod_jk.log" when I run "apachectl restart":

[Wed Jan 28 20:32:57 2004]  [jk_connect.c (233)]: jk_open_socket, 
connect() failed errno = 111
[Wed Jan 28 20:32:57 2004]  [jk_ajp_common.c (757)]: Error connecting 
to tomcat. Tomcat is probably not started or is listenning on the wrong 
port. Failed errno = 111

and here is the worker.properties:
workers.tomcat_home=/usr/local/jboss-3.0.0_tomcat-4.0.3/catalina
workers.java_home=$(JAVA_HOME)
workers.th=$(workers.tomcat_home)
ps=\
worker.list=ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp14.port=8010
worker.ajp14.host=localhost
worker.ajp14.type=ajp14
worker.ajp14.secretkey=secret
worker.ajp14.credentials=myveryrandomentropy
worker.ajp14.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.th)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
worker.inprocess.stdout=$(workers.th)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.th)$(ps)logs$(ps)inprocess.stderr


  I don't know what the problem is. Could anyone please help me to 
solve the problem.

Regards,
John LEE




必殺技、飲歌、小星星...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent ! Pls help !

2004-02-01 Thread Arnab Chakravarty
Can u check ur server.xml config file and check if the port is correctly set for the 
ajp12 connector to server the request...

-Original Message-
From: a a [mailto:[EMAIL PROTECTED]
Sent: Monday, February 02, 2004 12:28 AM
To: [EMAIL PROTECTED]
Subject: Urgent ! Pls help !


Dear all,

  I have some problem when connecting apache to tomcat.
  I have installed both apache1.3 and tomcat4.
  I use mod_jk to do the connection. However some problems exists.
  Here is the log file of "mod_jk.log" when I run "apachectl restart":

[Wed Jan 28 20:32:57 2004]  [jk_connect.c (233)]: jk_open_socket, 
connect() failed errno = 111
[Wed Jan 28 20:32:57 2004]  [jk_ajp_common.c (757)]: Error connecting 
to tomcat. Tomcat is probably not started or is listenning on the wrong 
port. Failed errno = 111

and here is the worker.properties:
workers.tomcat_home=/usr/local/jboss-3.0.0_tomcat-4.0.3/catalina
workers.java_home=$(JAVA_HOME)
workers.th=$(workers.tomcat_home)
ps=\
worker.list=ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp14.port=8010
worker.ajp14.host=localhost
worker.ajp14.type=ajp14
worker.ajp14.secretkey=secret
worker.ajp14.credentials=myveryrandomentropy
worker.ajp14.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.th)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
worker.inprocess.stdout=$(workers.th)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.th)$(ps)logs$(ps)inprocess.stderr


  I don't know what the problem is. Could anyone please help me to 
solve the problem.

Regards,
John LEE




必殺技、飲歌、小星星...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Avinash Sridhar

Hi,
   This is an update to the previous HelloServlet.java file,forgot to add the lines 
package
On Mon, 02 Feb 2004 Avinash  Sridhar wrote :
>Hi,
>
>   Thanks for the help,The HelloServlet.java file is as follows
>
>/*HelloServlet.java***/
>package package.structure
>import java.io.*;
>import javax.servlet.*;
>import javax.servlet.http.*;
>
>/** Simple servlet used to test server.
>  *  
>  *  Taken from Core Servlets and JavaServer Pages 2nd Edition
>  *  from Prentice Hall and Sun Microsystems Press,
>  *  http://www.coreservlets.com/.
>  *  © 2003 Marty Hall; may be freely used or adapted.
>  */
>
>public class HelloServlet extends HttpServlet {
>   public void doGet(HttpServletRequest request,
> HttpServletResponse response)
>   throws ServletException, IOException {
> response.setContentType("text/html");
> PrintWriter out = response.getWriter();
> String docType =
>   "   "Transitional//EN\">\n";
>
> out.println(docType +
> "\n" +
> "Hello\n" +
> "\n" +
> "Hello\n" +
> "");
>   }
>}
>
>
>/*HelloServlet.java***/
>
>Hoping to get going with it.
>
>Thanks
>AS
>
>
>On Mon, 02 Feb 2004 Doug Parsons wrote :
> >Post your HelloServlet code or attach it.
> >
> >
> >- Original Message -
> > From: "Avinash Sridhar" <[EMAIL PROTECTED]>
> >To: <[EMAIL PROTECTED]>
> >Sent: Sunday, February 01, 2004 10:21 PM
> >Subject: TOmcat 5.0.16 console error,Pls help
> >
> >
> >Hi,
> >I was told that the .class files must be put into a package in order for
> >the tomcat to run it.
> >
> >My directory structure is as follows,
> >
> >%TOMCAT HOME %/webapps/sampleapp/WEB-INF/classes
> > /WEB-INF/lib
> > /WEB-INF/sourcefiles
> > /WEB-INF/web.xml
> >In the classes directory I have make something like this
> >/classes/package/structure/HelloServlet.class(This is my servlet file),
> >
> >Now I have changed/made the web.xml in MY WEB-INF directory and have added
> >this
> >
> >/ Contents of web.xml file */
> >
> >
> >
> > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
> > "http://java.sun.com/dtd/web-app_2_3.dtd";>
> >
> >
> >   Servlet 2.4 Examples
> >Servlet 2.4 Examples 
> >
> >
> >
> >
> >
> >  HelloServlet
> >   /** This is the prominent change **/
> >  package.structure.HelloServlet
> >   /** This is the prominent change **/
> >
> >
> >
> >
> >
> >  HelloServlet
> >  /sampleapp
> >
> >
> >
> >
> >
> >
> >/ Contents of web.xml file */
> >
> >
> >Hope that it is right so far,
> >
> >I dont know how to change the %TOMCAT_HOME%/conf/server.xml,do we have to
> >change anything here??, this is what I have written in the server.xml file.
> >
> >/* Contents of server.xml file ***/
> >
> >
> >
> >
> >/* Contents of server.xml file ***/
> >
> >
> >And finally I am getting theses errors in the tomcat console
> >
> >
> >/*** Errors in Tomcat console */
> >
> >Feb 1, 2004 10:04:22 PM org.apache.commons.digester.Digester fatalError
> >SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction
> >target
> >matching "[xX][mM][lL]" is not allowed.
> >org.xml.sax.SAXParseException: The processing instruction target matching
> >"[xX]
> >mM][lL]" is not allowed.
> > at
> >org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(U
> >known Source)
> > at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown
> >Source
> >
> > at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> >Source)
> > at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
> >Source)
> > at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown
> >Source)
> > at org.apache.xerces.impl.XMLScanner.scanPIData(Unknown Source)
> > at
> >org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanPIData(Unk
> >own Source)
> > at org.apache.xerces.impl.XMLScanner.scanPI(Unknown Source)
> > at
> >org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispa
> >ch(Unknown Source)
> > at
> >org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(U
> >known Source)
> > at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
> >Source)
> > at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
> > at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
> > at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
> > at org.apache.commons.digester.Digester.parse(Digester.java:1548)
> > at
> >org.apache.catalina.startup.ContextConfig.applicationConfig(Conte

Updated WebApp Tutorial

2004-02-01 Thread Oscar Carrillo
Hi,

Some of you may know my site:

HOWTO: Installing Web Services with
  Linux / Tomcat / Apache / Struts / Postgresql / Openssl / JDBC

I've worked on it a lot and have added many features, including

-JDBC/JNDI configuration w/DBCP-commons Pool

-build scripts for everything
-all the configuration files
-Virtual Host configuration
-A Struts-based Database Test Web App

I am having to move the site, and am now hosting this site here:
http://www.linuxjava.net/howto/webapp/

I'm including my README file for people's perusal. Please visit the site
for more info.


README
--
These files can all be downloaded with the one link:
-webapp_files.tar

I recommend doing things in this order.

Install Java
-java_install.sh

Install Ant
-ant_install.sh

Install OpenSSL. It needs to be installed before Apache.
-openssl_install.sh

Install Apache. Pretty straight-forward. Builds a few modules, not all or 
most, just fairly common ones. Add
 more modules if you want them built here.
-http_install.sh

Install Tomcat4
-tomcat_setup_user.sh
-tomcat4_install.sh

Install Mod_JK
-modjk_install.sh

Install Postgres
Read these install script. It needs to remove the bison RPM first, but it 
is commented out, cause I don't wa
nt someone to do something to their system that they don't intend. Install 
in the listed order.
-bison_install.sh
-postgres_setup_user.sh
-postgres_install.sh

Install PgAccess
-pgaccess_install.sh
-pgaccess #Put this in "/usr/local/bin/" for easy access

Sample Database
#Import the testdb.psql into your Postgres DB. This is for the Test DB 
Struts Web App.
-testdb.psql

Configuration Scripts:
Apache
-httpd.conf
-ssl.conf

Tomcat
-workers.properties
-server.xml

Daemon Scripts for Apache, Tomcat, and Postgres
-httpd
-tomcatd
-postgresqld

Struts Web App
#Extract and put in /usr/local/tomcat/webapps
-strutsdb_webapp.tar.bz2

Once everything is running, you should be able to test the webapp by going to:
http://www.myhost.mydomain/mydomain_public/

It will also be available here:
http://www.myhost.mydomain:8080/mydomain_public/

There is also a JSP file called "showJNDI.jsp" that will give you some
info about your setup. Delete that file for anything in production as it
will display your database configuration.
--

Please visit the site and any feedback is appreciated.

Regards,

Oscar Carrillo
http://www.linuxjava.net/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Doug Parsons
Look at:
http://www.technobuff.net/javatips/kits/startkit/classes_ifs_pkgs.shtml
and
http://cs.stmarys.ca/~porter/csc/465/notes/javapl_packages.html

then check out
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/deployment.html

This should explain a few things.

- Original Message - 
From: "Avinash Sridhar" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Cc: "Doug Parsons" <[EMAIL PROTECTED]>
Sent: Sunday, February 01, 2004 11:19 PM
Subject: Re: Re: TOmcat 5.0.16 console error,Pls help


Hi,

  Thanks for the help,The HelloServlet.java file is as follows

/*HelloServlet.java***/
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

/** Simple servlet used to test server.
 *  
 *  Taken from Core Servlets and JavaServer Pages 2nd Edition
 *  from Prentice Hall and Sun Microsystems Press,
 *  http://www.coreservlets.com/.
 *  © 2003 Marty Hall; may be freely used or adapted.
 */

public class HelloServlet extends HttpServlet {
  public void doGet(HttpServletRequest request,
HttpServletResponse response)
  throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String docType =
  "\n";

out.println(docType +
"\n" +
"Hello\n" +
"\n" +
"Hello\n" +
"");
  }
}


/*HelloServlet.java***/

Hoping to get going with it.

Thanks
AS


On Mon, 02 Feb 2004 Doug Parsons wrote :
>Post your HelloServlet code or attach it.
>
>
>- Original Message -
> From: "Avinash Sridhar" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Sunday, February 01, 2004 10:21 PM
>Subject: TOmcat 5.0.16 console error,Pls help
>
>
>Hi,
>I was told that the .class files must be put into a package in order
for
>the tomcat to run it.
>
>My directory structure is as follows,
>
>%TOMCAT HOME %/webapps/sampleapp/WEB-INF/classes
> /WEB-INF/lib
> /WEB-INF/sourcefiles
> /WEB-INF/web.xml
>In the classes directory I have make something like this
>/classes/package/structure/HelloServlet.class(This is my servlet file),
>
>Now I have changed/made the web.xml in MY WEB-INF directory and have added
>this
>
>/ Contents of web.xml file */
>
>
>
> PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
> "http://java.sun.com/dtd/web-app_2_3.dtd";>
>
>
>   Servlet 2.4 Examples
>Servlet 2.4 Examples 
>
>
>
>
>
>  HelloServlet
>   /** This is the prominent change **/
>  package.structure.HelloServlet
>   /** This is the prominent change **/
>
>
>
>
>
>  HelloServlet
>  /sampleapp
>
>
>
>
>
>
>/ Contents of web.xml file */
>
>
>Hope that it is right so far,
>
>I dont know how to change the %TOMCAT_HOME%/conf/server.xml,do we have to
>change anything here??, this is what I have written in the server.xml file.
>
>/* Contents of server.xml file ***/
>
>
>
>
>/* Contents of server.xml file ***/
>
>
>And finally I am getting theses errors in the tomcat console
>
>
>/*** Errors in Tomcat console */
>
>Feb 1, 2004 10:04:22 PM org.apache.commons.digester.Digester fatalError
>SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction
>target
>matching "[xX][mM][lL]" is not allowed.
>org.xml.sax.SAXParseException: The processing instruction target matching
>"[xX]
>mM][lL]" is not allowed.
> at
>org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(U
>known Source)
> at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown
>Source
>
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>Source)
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>Source)
> at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown
>Source)
> at org.apache.xerces.impl.XMLScanner.scanPIData(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanPIData(Unk
>own Source)
> at org.apache.xerces.impl.XMLScanner.scanPI(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispa
>ch(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(U
>known Source)
> at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
>Source)
> at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown
Source)
> at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
> at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown
Source)
> at org.apache.commons.digester.Digester.parse(Digester.java:1548)
> at
>org.apache.catalina.startup.ContextCon

OutputStreams, Writers and Sitemesh

2004-02-01 Thread Scott Farquhar
Guys,

I've searched the mail archive, but couldn't find anything there - so
please feel freee to point me there if this has already been answered.

Sitemesh is a page decoration framework that works on all application
servers, and allows you to decorate your HTML pages.

The way that it works is that the page is captured in a buffer, then
passed to a 'decorator', which does the decoration (using the original
content as input).

More information can be found here:

  http://www.opensymphony.com/sitemesh/

The problem comes when choosing to use getOutputStream() or getWriter()
to write out the content.  This is because you cannot call both in one
request.

My current method of doing this involves logging which of these is used
by the server, and then using that to print out using either streams or
writers.

However, in Tomcat 4.x and later, it seems that getOutputStream() is used
for serving static resources, and getWriter() is used to serve JSPs.

This means that if I buffer up static content (using a
PageResponseWrapper), then I can't then access a JSP using the same
request.  I guess that this will also affect anyone redispatching to a
JSP after accessing a static resource.

So - can anyone point me to a config somewhere that I can tell Tomcat to
use Writers for everything?  Or some other workaround?

If I haven't been clear above - please let me know.

Cheers,
Scott


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Avinash Sridhar
Hi,

  Thanks for the help,The HelloServlet.java file is as follows 

/*HelloServlet.java***/
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

/** Simple servlet used to test server.
 *  
 *  Taken from Core Servlets and JavaServer Pages 2nd Edition
 *  from Prentice Hall and Sun Microsystems Press,
 *  http://www.coreservlets.com/.
 *  © 2003 Marty Hall; may be freely used or adapted.
 */

public class HelloServlet extends HttpServlet {
  public void doGet(HttpServletRequest request,
HttpServletResponse response)
  throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String docType =
  "\n";

out.println(docType +
"\n" +
"Hello\n" +
"\n" +
"Hello\n" +
"");
  }
}


/*HelloServlet.java***/

Hoping to get going with it.

Thanks
AS


On Mon, 02 Feb 2004 Doug Parsons wrote :
>Post your HelloServlet code or attach it.
>
>
>- Original Message -
> From: "Avinash Sridhar" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Sunday, February 01, 2004 10:21 PM
>Subject: TOmcat 5.0.16 console error,Pls help
>
>
>Hi,
>I was told that the .class files must be put into a package in order for
>the tomcat to run it.
>
>My directory structure is as follows,
>
>%TOMCAT HOME %/webapps/sampleapp/WEB-INF/classes
> /WEB-INF/lib
> /WEB-INF/sourcefiles
> /WEB-INF/web.xml
>In the classes directory I have make something like this
>/classes/package/structure/HelloServlet.class(This is my servlet file),
>
>Now I have changed/made the web.xml in MY WEB-INF directory and have added
>this
>
>/ Contents of web.xml file */
>
>
>
> PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
> "http://java.sun.com/dtd/web-app_2_3.dtd";>
>
>
>   Servlet 2.4 Examples
>Servlet 2.4 Examples 
>
>
>
>
>
>  HelloServlet
>   /** This is the prominent change **/
>  package.structure.HelloServlet
>   /** This is the prominent change **/
>
>
>
>
>
>  HelloServlet
>  /sampleapp
>
>
>
>
>
>
>/ Contents of web.xml file */
>
>
>Hope that it is right so far,
>
>I dont know how to change the %TOMCAT_HOME%/conf/server.xml,do we have to
>change anything here??, this is what I have written in the server.xml file.
>
>/* Contents of server.xml file ***/
>
>
>
>
>/* Contents of server.xml file ***/
>
>
>And finally I am getting theses errors in the tomcat console
>
>
>/*** Errors in Tomcat console */
>
>Feb 1, 2004 10:04:22 PM org.apache.commons.digester.Digester fatalError
>SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction
>target
>matching "[xX][mM][lL]" is not allowed.
>org.xml.sax.SAXParseException: The processing instruction target matching
>"[xX]
>mM][lL]" is not allowed.
> at
>org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(U
>known Source)
> at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown
>Source
>
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>Source)
> at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
>Source)
> at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown
>Source)
> at org.apache.xerces.impl.XMLScanner.scanPIData(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanPIData(Unk
>own Source)
> at org.apache.xerces.impl.XMLScanner.scanPI(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispa
>ch(Unknown Source)
> at
>org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(U
>known Source)
> at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
>Source)
> at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
> at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
> at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
> at org.apache.commons.digester.Digester.parse(Digester.java:1548)
> at
>org.apache.catalina.startup.ContextConfig.applicationConfig(ContextC
>nfig.java:302)
> at
>org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:6
>4)
> at
>org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConf
>g.java:254)
> at
>org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecyc
>eSupport.java:166)
> at
>org.apache.catalina.core.StandardContext.start(StandardContext.java:
>212)
> at
>org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125
>
> at
>org.

Re: TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Doug Parsons
Post your HelloServlet code or attach it.


- Original Message - 
From: "Avinash Sridhar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, February 01, 2004 10:21 PM
Subject: TOmcat 5.0.16 console error,Pls help


Hi,
   I was told that the .class files must be put into a package in order for
the tomcat to run it.

My directory structure is as follows,

%TOMCAT HOME %/webapps/sampleapp/WEB-INF/classes
/WEB-INF/lib
/WEB-INF/sourcefiles
/WEB-INF/web.xml
In the classes directory I have make something like this
/classes/package/structure/HelloServlet.class(This is my servlet file),

Now I have changed/made the web.xml in MY WEB-INF directory and have added
this

/ Contents of web.xml file */



http://java.sun.com/dtd/web-app_2_3.dtd";>


  Servlet 2.4 Examples
   Servlet 2.4 Examples 





 HelloServlet
  /** This is the prominent change **/
 package.structure.HelloServlet
  /** This is the prominent change **/





 HelloServlet
 /sampleapp






/ Contents of web.xml file */


Hope that it is right so far,

I dont know how to change the %TOMCAT_HOME%/conf/server.xml,do we have to
change anything here??, this is what I have written in the server.xml file.

/* Contents of server.xml file ***/




/* Contents of server.xml file ***/


And finally I am getting theses errors in the tomcat console


/*** Errors in Tomcat console */

Feb 1, 2004 10:04:22 PM org.apache.commons.digester.Digester fatalError
SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction
target
matching "[xX][mM][lL]" is not allowed.
org.xml.sax.SAXParseException: The processing instruction target matching
"[xX]
mM][lL]" is not allowed.
at
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(U
known Source)
at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown
Source

at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
Source)
at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown
Source)
at org.apache.xerces.impl.XMLScanner.scanPIData(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanPIData(Unk
own Source)
at org.apache.xerces.impl.XMLScanner.scanPI(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispa
ch(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(U
known Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at
org.apache.catalina.startup.ContextConfig.applicationConfig(ContextC
nfig.java:302)
at
org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:6
4)
at
org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConf
g.java:254)
at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecyc
eSupport.java:166)
at
org.apache.catalina.core.StandardContext.start(StandardContext.java:
212)
at
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125

at
org.apache.catalina.core.StandardHost.start(StandardHost.java:816)
at
org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125

at
org.apache.catalina.core.StandardEngine.start(StandardEngine.java:51
)
at
org.apache.catalina.core.StandardService.start(StandardService.java:
19)
at
org.apache.catalina.core.StandardServer.start(StandardServer.java:23
3)
at org.apache.catalina.startup.Catalina.start(Catalina.java:581)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl
java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcce
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
Feb 1, 2004 10:04:22 PM org.apache.catalina.startup.ContextConfig
applicationCo
fig
SEVERE: Parse error in application web.xml
org.xml.sax.SAXParseException: The processing instruction target matching
"[xX]
mM][lL]" is not allowed.
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.j

TOmcat 5.0.16 console error,Pls help

2004-02-01 Thread Avinash Sridhar
Hi,
   I was told that the .class files must be put into a package in order for the tomcat 
to run it.

My directory structure is as follows,

%TOMCAT HOME %/webapps/sampleapp/WEB-INF/classes
/WEB-INF/lib
/WEB-INF/sourcefiles 
/WEB-INF/web.xml
In the classes directory I have make something like this
/classes/package/structure/HelloServlet.class(This is my servlet file),

Now I have changed/made the web.xml in MY WEB-INF directory and have added this 

/ Contents of web.xml file */



http://java.sun.com/dtd/web-app_2_3.dtd";>


  Servlet 2.4 Examples
   Servlet 2.4 Examples 

 



 HelloServlet
  /** This is the prominent change **/
 package.structure.HelloServlet
  /** This is the prominent change **/





 HelloServlet
 /sampleapp






/ Contents of web.xml file */


Hope that it is right so far,

I dont know how to change the %TOMCAT_HOME%/conf/server.xml,do we have to change 
anything here??, this is what I have written in the server.xml file.

/* Contents of server.xml file ***/




/* Contents of server.xml file ***/


And finally I am getting theses errors in the tomcat console 


/*** Errors in Tomcat console */

Feb 1, 2004 10:04:22 PM org.apache.commons.digester.Digester fatalError
SEVERE: Parse Fatal Error at line 3 column 6: The processing instruction target
matching "[xX][mM][lL]" is not allowed.
org.xml.sax.SAXParseException: The processing instruction target matching "[xX]
mM][lL]" is not allowed.
at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(U
known Source)
at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source

at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
at org.apache.xerces.impl.XMLScanner.scanPIData(Unknown Source)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanPIData(Unk
own Source)
at org.apache.xerces.impl.XMLScanner.scanPI(Unknown Source)
at org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispa
ch(Unknown Source)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(U
known Source)
at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextC
nfig.java:302)
at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:6
4)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConf
g.java:254)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Lifecyc
eSupport.java:166)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:
212)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125

at org.apache.catalina.core.StandardHost.start(StandardHost.java:816)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125

at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:51
)
at org.apache.catalina.core.StandardService.start(StandardService.java:
19)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:23
3)
at org.apache.catalina.startup.Catalina.start(Catalina.java:581)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcce
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
Feb 1, 2004 10:04:22 PM org.apache.catalina.startup.ContextConfig applicationCo
fig
SEVERE: Parse error in application web.xml
org.xml.sax.SAXParseException: The processing instruction target matching "[xX]
mM][lL]" is not allowed.
at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
at org.apache.commons.digester.Digester.parse(Digester.java:1548)
at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextC
nfig.java:302)
at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:6
4)
at org.apache.catalina.startu

Re: Re: Error compiling servlet file,help

2004-02-01 Thread Avinash Sridhar
Hi Phil,
   Thanks for the information,The E: was overlooked,silly me.

Yes it did help

AS

On Mon, 02 Feb 2004 Philipp Taprogge wrote :
>Hi!
>
>Avinash Sridhar wrote:
>>Thanks for the suggestion,I did as you told and echo %CLASSPATH% going into the 
>>directory,
>>but still the errors as below.
>
>And the result was... what?
>
>The compiler errors can be interpreted in only one way: the servlet-api is _not_ in 
>your classlath. Hence there can be only one cause of the problem: you are not adding 
>them correctly.
>Thsi is clearly a shell issue.
>
/** tomcat.bat */

set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar

/** tomcat.bat */
>
>I see three issues here: for one I don't know what that leading ; is about. If it's 
>not a problem, it is definitively not necessary. Secondly, I am not sure if you can 
>use forward slashes in the classpath on Windose machines. And either way, you are 
>missing a : as in E: at the beginning.
>
>HTH
>
>   Phil
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>


RE: verbose gc

2004-02-01 Thread nate
Dhruva B. Reddy said:

> As I said in my post, we would get the OutOfMemoryError about every 24
> hours.  I tried setting MaxPermSize to 256MB (haven't been able to
> determine the default value for Sun's JVM, but it's 64MB for HP's JVM).
>  This sets the size of the permanent generation, into which
> longer-lived objects and class definitions are loaded (we have over
> 3500 classes over multiple web apps).

I believe the default maxperm size for sun jvm is 64MB. I ran into the
same problem, when spawning additional threads, and too increased
the maxperm to 256MB. that allows me to spawn up to 3,000 threads.
I prefer to spawn all the threads at startup rather then have
tomcat spawn threads as it needs them.

my heap is set to 800MB for tomcat. the systems have between
2GB and 3GB of ram each.

been running for ages without any problems. never had an out
of memory message from tomcat(with the exceptions of when
I was testing in a test enviornment with thread settings)

running tomcat 4.0.6. Tried going to 4.1.27 but behavior
was significantly worse than with 4.0.6 for the stuff I am
using it with. running sun java 1.3_9 or something.

have never run out of heap either. still looking for
further tips/docs on how to optimize thread usage
further.


nate


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Error compiling servlet file,help

2004-02-01 Thread Philipp Taprogge
Hi!

Avinash Sridhar wrote:
Thanks for the suggestion,I did as you told and echo %CLASSPATH% going into the 
directory,
but still the errors as below.
And the result was... what?

The compiler errors can be interpreted in only one way: the 
servlet-api is _not_ in your classlath. Hence there can be only one 
cause of the problem: you are not adding them correctly.
Thsi is clearly a shell issue.

/** tomcat.bat */

set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar
/** tomcat.bat */
I see three issues here: for one I don't know what that leading ; is 
about. If it's not a problem, it is definitively not necessary. 
Secondly, I am not sure if you can use forward slashes in the 
classpath on Windose machines. And either way, you are missing a : as 
in E: at the beginning.

HTH

		Phil

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: deploying parameters using catalina.ant

2004-02-01 Thread Barry Kimelman






 I myself was just recently able to successfully install application into Tomcat 5.0.16 using the ANT utility.
 
1st you need to properly setup your build.xml file (a sample can be obtained from the Tomcat web-site).
 
Then you need to modify the sample build.xml file to suit your needs.
    * modify the "" description to describe your application
    * modify the  descriptions to suit your application and Tomcat environment :
   eg. set a value for "app.name" , "app.version" , "catalina.home"
 
I found that I also had to modify the value for WAR file description on the "install" target description
in order for the "install" to work properly. For my case when I changed the WAR description to
   war=file://${dist.home}/${app.name}-${app.version}.war
 
I was successfully able to execute an install.
 
Also you should define a "build.properties" file in your home directory that at the very least defines values for the properties :
 
  manager.username
  manager.password
  manager.url
 
You should also modify the "tomcat-users.xml" file in the "conf" directory og your Tomcat installation.
You should define "roles" for "admin" and "manager".
You should also define a "user" that has the "admin" and "manager" roles assigned to him/her.
 
 After all this you should be able to run the "ant install" command to deploy your application.
 
I hope all this helps.
 
*
 
---Original Message---
 

From: Tomcat Users List
Date: Sunday, February 01, 2004 7:39:53 PM
To: [EMAIL PROTECTED]
Subject: deploying parameters using catalina.ant
 
hi,
is there anybody out there that can help me on this subject. This is my 3rd
message. Am asking something wrong?
 
I am trying to use the command org.apache.catalina.ant.DeployTask in ANT to
deploy an application into TomCat using a context xml file. It seems it is
mandatory to issue the path parameter but with a context xml file that
should not be necessary.
 
I looked on the Tomcat site and I could not find anything on this topic. Can
anyone help me?
Where can I find information about the catalina-ant.jar?
 
 
my best regards,
Hernâni
 
 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 
.









Error compiling servlet file,help

2004-02-01 Thread Avinash Sridhar
Hi,
  Thanks for the suggestion,I did as you told and echo %CLASSPATH% going into the 
directory,but still the errors as below.Dont know what has to be done.

Hoping to hear from you at the earliest.

Thanks
AS

On Mon, 02 Feb 2004 Marcel Stör wrote :
>Avinash Sridhar  wrote:
> > hi all,
> > I am having trouble in compiling the HelloServlet.java file,When
> > I type in javac HelloServlet.java file,I get the following errors
> >
> > /**Errors while compiling**/
> >
> > HelloServlet.java:2: package javax.servlet does not exist
> > import javax.servlet.*;
> > ^
> > HelloServlet.java:3: package javax.servlet.http does not exi
> > import javax.servlet.http.*;
> > ^
> > HelloServlet.java:13: cannot resolve symbol
> > symbol  : class HttpServlet
> > location: class HelloServlet
> > public class HelloServlet extends HttpServlet {
> >   ^
> > HelloServlet.java:14: cannot resolve symbol
> > symbol  : class HttpServletRequest
> > location: class HelloServlet
> >   public void doGet(HttpServletRequest request,
> > ^
> > HelloServlet.java:15: cannot resolve symbol
> > symbol  : class HttpServletResponse
> > location: class HelloServlet
> > HttpServletResponse response)
> > ^
> > HelloServlet.java:16: cannot resolve symbol
> > symbol  : class ServletException
> > location: class HelloServlet
> >   throws ServletException, IOException {
> >  ^
> > 6 errors
> >
> > /**Errors while compiling**/
> >
> >
> > I have written a batch file tomcat..bat like this
> >
> > /** tomcat.bat */
> >
> > set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
> > set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar
> >
> > /** tomcat.bat */


deploying parameters using catalina.ant

2004-02-01 Thread Hernani Mourão
hi,
is there anybody out there that can help me on this subject. This is my 3rd
message. Am asking something wrong?

I am trying to use the command org.apache.catalina.ant.DeployTask in ANT to
deploy an application into TomCat using a context xml file. It seems it is
mandatory to issue the path parameter but with a context xml file that
should not be necessary.

I looked on the Tomcat site and I could not find anything on this topic. Can
anyone help me?
Where can I find information about the catalina-ant.jar?


my best regards,
Hernâni


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: RE: Compiling a Servlet file

2004-02-01 Thread Avinash Sridhar
Hi,
   Thanks for the suggestion,I did as you told and echo %CLASSPATH% going into the 
directory,but still the errors as below.Dont know what has to be done.

Hoping to hear from you at the earliest.

Thanks
AS

On Mon, 02 Feb 2004 Marcel Stör wrote :
>Avinash Sridhar  wrote:
> > hi all,
> > I am having trouble in compiling the HelloServlet.java file,When
> > I type in javac HelloServlet.java file,I get the following errors
> >
> > /**Errors while compiling**/
> >
> > HelloServlet.java:2: package javax.servlet does not exist
> > import javax.servlet.*;
> > ^
> > HelloServlet.java:3: package javax.servlet.http does not exi
> > import javax.servlet.http.*;
> > ^
> > HelloServlet.java:13: cannot resolve symbol
> > symbol  : class HttpServlet
> > location: class HelloServlet
> > public class HelloServlet extends HttpServlet {
> >   ^
> > HelloServlet.java:14: cannot resolve symbol
> > symbol  : class HttpServletRequest
> > location: class HelloServlet
> >   public void doGet(HttpServletRequest request,
> > ^
> > HelloServlet.java:15: cannot resolve symbol
> > symbol  : class HttpServletResponse
> > location: class HelloServlet
> > HttpServletResponse response)
> > ^
> > HelloServlet.java:16: cannot resolve symbol
> > symbol  : class ServletException
> > location: class HelloServlet
> >   throws ServletException, IOException {
> >  ^
> > 6 errors
> >
> > /**Errors while compiling**/
> >
> >
> > I have written a batch file tomcat..bat like this
> >
> > /** tomcat.bat */
> >
> > set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
> > set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar
> >
> > /** tomcat.bat */
>
>You need both JARs in the classpath. Try:
>set
>CLASSPATH=E:\tomcat\tomcat-5\common\lib\servlet-api.jar;E:\tomcat\tomcat
>-5\common\lib\jsp-api.jar
>javac -classpath .;%CLASSPATH% *.java
>
> > The tomcat.bat file is in the same folder as the source file
> > HelloServlet.java.
> >
> > Kindly let me know.
> >
> > Help would be appreciated
> >
> > Thanks
> > AS
>
>Regards,
>Marcel
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>


writing a file from a servlet

2004-02-01 Thread Jerry Ford
From a servlet implemented in
tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, I am
trying to write a config file to the directory myWebapp/conf.   The conf
directory does exist; and there are no permissions issues---I can write
the file to the conf directory from the servlet if I hardcode the full
path.
The following code works:

FileWriter fwrite;

try
{
   fwrite = new
FileWriter("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" +
project + ".conf");
 // ...etc.
}
catch(IOException e)
{
   // ... etc.
}
But if I change the path in fwrite = new FileWriter() to
../../../../conf/ (making it relative to the class file) or to
/myWebapp/conf/ (relative to tomcat's servlets root; with or without the
leading /) or to conf/ (relative to the myWebapp directory, which is the
docBase declared in the context element in server.xml), I get a
FileNotFound (No such file or directory) exception.
How do I make the path relative to the servlet, so I don't have to hard
code the path?
The app won't be deployed on a public web server, so writing a file to
the server is not a problem, though I would like to have some
flexibility about where things get deployed---may end up on a Windows
machine, may stay on the Linux box.  But I want to make that decision
external to the code.
Thanks.

Jerry



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


writing a file from a servlet

2004-02-01 Thread Jerry Ford
From a servlet implemented in 
tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, I am 
trying to write a config file to the directory myWebapp/conf.   The conf 
directory does exist; and there are no permissions issues---I can write 
the file to the conf directory from the servlet if I hardcode the full 
path.

The following code works:

FileWriter fwrite;

try
{
   fwrite = new 
FileWriter("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" + 
project + ".conf");
 // ...etc.
}
catch(IOException e)
{
   // ... etc.
}

But if I change the path in fwrite = new FileWriter() to 
../../../../conf/ (making it relative to the class file) or to 
/myWebapp/conf/ (relative to tomcat's servlets root; with or without the 
leading /) or to conf/ (relative to the myWebapp directory, which is the 
docBase declared in the context element in server.xml), I get a 
FileNotFound (No such file or directory) exception.

How do I make the path relative to the servlet, so I don't have to hard 
code the path?

The app won't be deployed on a public web server, so writing a file to 
the server is not a problem, though I would like to have some 
flexibility about where things get deployed---may end up on a Windows 
machine, may stay on the Linux box.  But I want to make that decision 
external to the code.

Thanks.

Jerry



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


apache + tomcat virtual hostnames

2004-02-01 Thread Dean A. Hoover
I am using apache 2 and tomcat 4.1 connected
with mod_jk. I have multiple virtual named
hosts in the httpd.conf file, such as:

  ServerName www.myserver.com
  ServerAlias myserver.com
  ...
set up so that apache serves up the static
content, and tomcat will handle the servlet
stuff. In my server.xml file I set the attribute
"name" to "www.myserver.com" in the Host tagset.
This works fine if I hit http://www.myserver.com
but not for http://myserver.com. Apache handles
both the same, but not tomcat. Is there something
like ServerAlias in tomcat?
Dean

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Problem "reloading" Tomcat 5.0.16 application

2004-02-01 Thread Barry Kimelman






My system is Linux Redhat 9.
I am running Tomcat 5.0.16 from a binary distribution.
 
I can successfully compile and install my application.
The JSP page works fine.
 
However, when I make a change to the Java class used by the
Bean referenced in the JSP file, then issue a
"ant reload" command (which succeeds) and again execute my
tomcat application, I get the output from the old version of the application.
 
I resorted to "undeploying", recompiling and installing to get Tomcat to run my
updated code.
 
How can I get Tomcat to recognize the changes I make to my own personal
class files ?
 









writing a file from a servlet

2004-02-01 Thread Jerry Ford
From a servlet implemented in
tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, I am
trying to write a config file to the directory myWebapp/conf.   The conf
directory does exist; and there are no permissions issues---I can write
the file to the conf directory from the servlet if I hardcode the full path.
The following code works:

FileWriter fwrite;

   fwrite = new 
FileWriter("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" + 
project + ".conf");
 // ...etc.

But if I change the path to ../../../../conf/ (making it relative to the 
class file) or to /myWebapp/conf/ (relative to tomcat's servlets root; 
with or without the leading /) or to conf/ (relative to the myWebapp 
directory, which is the docBase declared in the context element in 
server.xml), I get a FileNotFound (No such file or directory) exception.

How do I make the path relative to the servlet, so I don't have to hard
code the path?
The app won't be deployed on a public web server, so writing a file to
the server is not a problem, though I would like to have some
flexibility about where things get deployed---may end up on a Windows
machine, may stay on the Linux box.  But I want to make that decision
external to the code.
Thanks.

Jerry



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Compiling a Servlet file

2004-02-01 Thread Marcel Stör
Avinash Sridhar  wrote:
> hi all,
> I am having trouble in compiling the HelloServlet.java file,When
> I type in javac HelloServlet.java file,I get the following errors 
> 
> /**Errors while compiling**/
> 
> HelloServlet.java:2: package javax.servlet does not exist
> import javax.servlet.*;
> ^
> HelloServlet.java:3: package javax.servlet.http does not exi
> import javax.servlet.http.*;
> ^
> HelloServlet.java:13: cannot resolve symbol
> symbol  : class HttpServlet
> location: class HelloServlet
> public class HelloServlet extends HttpServlet {
>   ^
> HelloServlet.java:14: cannot resolve symbol
> symbol  : class HttpServletRequest
> location: class HelloServlet
>   public void doGet(HttpServletRequest request,
> ^
> HelloServlet.java:15: cannot resolve symbol
> symbol  : class HttpServletResponse
> location: class HelloServlet
> HttpServletResponse response)
> ^
> HelloServlet.java:16: cannot resolve symbol
> symbol  : class ServletException
> location: class HelloServlet
>   throws ServletException, IOException {
>  ^
> 6 errors
> 
> /**Errors while compiling**/
> 
> 
> I have written a batch file tomcat..bat like this
> 
> /** tomcat.bat */
> 
> set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
> set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar
> 
> /** tomcat.bat */

You need both JARs in the classpath. Try:
set
CLASSPATH=E:\tomcat\tomcat-5\common\lib\servlet-api.jar;E:\tomcat\tomcat
-5\common\lib\jsp-api.jar
javac -classpath .;%CLASSPATH% *.java

> The tomcat.bat file is in the same folder as the source file
> HelloServlet.java. 
> 
> Kindly let me know.
> 
> Help would be appreciated
> 
> Thanks
> AS

Regards,
Marcel


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



writing a file from a servlet

2004-02-01 Thread Jerry Ford
I want to write a config file from a servlet implemented in 
/usr/local/webserver/tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, 
to a myWebapp/conf directory.  The directory exists, and there are no 
permissions issues---I can write the config file if I hardcode a full 
path to the file.

The following works:

FileWriter fwrite;

try
{
  fwrite = new File 
Writer("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" + project + 
".conf");
  // ...etc.
}
catch(IOException e)
{
  // ...etc.
}

But if I change the path in the new FileWriter statement to any of the 
following, it does not work:

  /myWebapps/conf (relative to tomcat's servlets root)
  conf/ (relative to the docBase declared in the webapp's context)
  ../../../../conf (relative to the class file)
I get a FileNotFound...(No such file or directory) exception.

What does tomcat consider to be the relative path to the myWebapp/conf 
directory?  relative to what?

BTW, this is a private, internal app that won't be deployed in a public 
website, so there are no concerns about writing files to the server's 
disk.  But I want to reserve the option of deploying to a Windows 
machine or keeping it on the Linux box, and I don't want to be tied to a 
specific directory location on either box. 

Thanks.

Jerry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


writing a file from a servlet

2004-02-01 Thread Jerry Ford
I want to write a config file from a servlet implemented in 
/usr/local/webserver/tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, 
to a myWebapp/conf directory.  The directory exists, and there are no 
permissions issues---I can write the config file if I hardcode a full 
path to the file.

The following works:

FileWriter fwrite;

try
{
  fwrite = new 
FileWriter("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" + 
project + ".conf");
  // ...etc.
}
catch(IOException e)
{
  // ...etc.
}

But if I change the path in the new FileWriter statement to any of the 
following, it does not work:

  /myWebapps/conf (relative to tomcat's servlets root)
  conf/ (relative to the docBase declared in the webapp's context)
  ../../../../conf (relative to the class file)
I get a FileNotFound...(No such file or directory) exception.

What does tomcat consider to be the relative path to the myWebapp/conf 
directory?  relative to what?

BTW, this is a private, internal app that won't be deployed in a public 
website, so there are no concerns about writing files to the server's 
disk.  But I want to reserve the option of deploying to a Windows 
machine or keeping it on the Linux box, and I don't want to be tied to a 
specific directory location on either box. 

Thanks.

Jerry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Compiling a Servlet file

2004-02-01 Thread Avinash Sridhar
hi all,
I am having trouble in compiling the HelloServlet.java file,When I type in javac 
HelloServlet.java file,I get the following errors 

/**Errors while compiling**/

HelloServlet.java:2: package javax.servlet does not exist
import javax.servlet.*;
^
HelloServlet.java:3: package javax.servlet.http does not exi
import javax.servlet.http.*;
^
HelloServlet.java:13: cannot resolve symbol
symbol  : class HttpServlet
location: class HelloServlet
public class HelloServlet extends HttpServlet {
  ^
HelloServlet.java:14: cannot resolve symbol
symbol  : class HttpServletRequest
location: class HelloServlet
  public void doGet(HttpServletRequest request,
^
HelloServlet.java:15: cannot resolve symbol
symbol  : class HttpServletResponse
location: class HelloServlet
HttpServletResponse response)
^
HelloServlet.java:16: cannot resolve symbol
symbol  : class ServletException
location: class HelloServlet
  throws ServletException, IOException {
 ^
6 errors

/**Errors while compiling**/


I have written a batch file tomcat.bat like this 

/** tomcat.bat */

set classpath=;E/tomcat/tomcat-5/common/lib/servlet-api.jar
set classpath=;E/tomcat/tomcat-5/common/lib/jsp-api.jar

/** tomcat.bat */

The tomcat.bat file is in the same folder as the source file HelloServlet.java.

Kindly let me know.

Help would be appreciated

Thanks
AS




RE: verbose gc

2004-02-01 Thread Papillon
A good article : http://java.sun.com/docs/hotspot/gc1.4.2/ (Java's Sun site)

Memory reserved by Tomcat via JVM is cut in three groups (more in
reality...) :
- Immortal
- New object
- Old Object

Imaging you're reserved 512Mo for Tomcat.
If you don't specify dispatch of the memory (at the Tomcat startup) you will
be have the following (it's a funny example ^^ and certainly impossible in
reality):
- Immortal 64Mo
- New object 224 Mo
- Old Object 224 Mo 
If your application need to create a lot of immortals Tomcat will crash
fastly than if you're are specifying more memory for immortal.

Another funny dispatching :
- Immortal 224Mo
- New object 64 Mo
- Old Object 224 Mo 
If your application need to create a lot of new objects, Tomcat will crash
if garbace collector take his time to do his job.

Regards,
leakim

-Original Message-
From: Dhruva B. Reddy [mailto:[EMAIL PROTECTED] 
Sent: dimanche 1 février 2004 17:12
To: Tomcat Users List
Subject: RE: verbose gc

Check out Jeff Tulley's responses to my post "OutOfMemoryError with
Seemingly Plenty of Memory".  You may also want to check out Sun's forums on
the Java Virtual Machine.  You will find a host of information on JVM
tuning.

As I said in my post, we would get the OutOfMemoryError about every 24
hours.  I tried setting MaxPermSize to 256MB (haven't been able to determine
the default value for Sun's JVM, but it's 64MB for HP's JVM).
 This sets the size of the permanent generation, into which longer-lived
objects and class definitions are loaded (we have over 3500 classes over
multiple web apps).

I wasn't going to say anything to this list without being more certain, but
Tomcat has been running with no problems since Friday afternoon (47 hours as
of this writing)--the longest it's lasted all month.

HTH,
Dhruva


--- "Mohammed Javid - CTD, Chennai." <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Thanks for all the help.
> 
> We did loadtesting of our application running on tomcat 4.1.27 with
> jdk1.4
> on solaris, we enabled the GC stack to get details of how GC works, we 
> ran for 1 users with 5 users logging every 30 secs. We set min and 
> max heap size as 512mb The test ran perfectly for first 2 hours and 
> total heap ocupied was only 10448K out of total of  519168K , later as 
> test case progessed for around 10 hours the tomcat stopped responding 
> and it has thrown OutOfMemoryError , but as can be seen from GC output 
> before outofmemory error the total heap occupied was only 30846K, 
> though we have lot of more space on heap still tomcat crashed and give 
> connectiontimeout for remaining pages.
> When we see the size occupied from top command , when tomcat is 
> started it was 622Mb and at time of crash it was 723MB.
> 
> We are looking for following clarifications
> 1 What could be the reason for tomcat to crash though we have lot of 
> heap remaining.
> 2 Why the memory occupied as seend from top command increased though 
> there was lot of space on heap
> 3 We noticed that though heap has space when size seen from top 
> command reached 720 to 270 mb tomcat crashes.
> 4 How to make tomcat running without crash , certianly heap is not 
> problem in this case
> 5 Is this a known issue, Any optimization to be done to avoid this 
> problem.
> 
> 
> The below is the output of the GC after which we get outofmemory
> error
> 
> [GC 55404.101: [DefNew Desired survivor size 2621440 bytes, new
> threshold 31
> (max 31)
> - age   1: 359488 bytes, 359488 total
> - age   2: 314104 bytes, 673592 total
> : 167034K->657K(169600K), 0.2717012 secs] 197223K->30846K(519168K),
> 0.2745516 secs]
> java.lang.OutOfMemoryError: unable to create new native thread
> at java.lang.Thread.start(Native Method)
> at
>
org.apache.catalina.connector.http.HttpProcessor.threadStart(HttpProcessor.j
> ava:1178)
> at
>
org.apache.catalina.connector.http.HttpProcessor.start(HttpProcessor.java:12
> 62)
> at
>
org.apache.catalina.connector.http.HttpConnector.newProcessor(HttpConnector.
> java:937)
> at
>
org.apache.catalina.connector.http.HttpConnector.createProcessor(HttpConnect
> or.java:868)
> at
>
org.apache.catalina.connector.http.HttpConnector.run(HttpConnector.java:1075
> )
>at java.lang.Thread.run(Thread.java:534)
> 
> 
> thanks and regards,
> Javid
> 
> >  -Original Message-
> > From:   Mohammed Javid - CTD, Chennai.  
> > Sent:   Wednesday, January 14, 2004 10:00 PM
> > To: '[EMAIL PROTECTED]'
> > Subject:RE: verbose gc
> > 
> > we are using tomcat 4.1 withjdk1.3, we have folowing clarifications
> > 
> > 1) [Full GC 34521K->15504K(38328K), 0.5953540 secs]
> > [GC 27533K->16335K(38328K), 0.0396336 secs]
> > 
> > is the statements got in catalina.out by adding -server -verbose:gc
>  in
> > catalina.sh
> > 
> > 2) what does the above statements got in catalina.out means, is
> garbage
> > collection active.

writing a file from a servlet

2004-02-01 Thread Jerry Ford
From a servlet implemented in 
tomcat/webapps/myWebapp/WEB-INF/classes/my/package/myWebapp.class, I am 
trying to write a config file to the directory myWebapp/conf.   The conf 
directory does exist; and there are no permissions issues---I can write 
the file to the conf directory from the servlet if I hardcode the full path.

The following code works:

FileWriter fwrite;

try
{
   fwrite = new 
FileWriter("/usr/local/webserver/tomcat/webapps/myWebapp/conf/" + 
project + ".conf");
 // ...etc.
}
catch(IOException e)
{
   // ... etc.
}

But if I change the path in fwrite = new FileWriter() to 
../../../../conf/ (making it relative to the class file) or to 
/myWebapp/conf/ (relative to tomcat's servlets root; with or without the 
leading /) or to conf/ (relative to the myWebapp directory, which is the 
docBase declared in the context element in server.xml), I get a 
FileNotFound (No such file or directory) exception.

How do I make the path relative to the servlet, so I don't have to hard 
code the path?

The app won't be deployed on a public web server, so writing a file to 
the server is not a problem, though I would like to have some 
flexibility about where things get deployed---may end up on a Windows 
machine, may stay on the Linux box.  But I want to make that decision 
external to the code.

Thanks.

Jerry

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: verbose gc

2004-02-01 Thread Dhruva B. Reddy
Check out Jeff Tulley's responses to my post "OutOfMemoryError with
Seemingly Plenty of Memory".  You may also want to check out Sun's
forums on the Java Virtual Machine.  You will find a host of
information on JVM tuning.

As I said in my post, we would get the OutOfMemoryError about every 24
hours.  I tried setting MaxPermSize to 256MB (haven't been able to
determine the default value for Sun's JVM, but it's 64MB for HP's JVM).
 This sets the size of the permanent generation, into which
longer-lived objects and class definitions are loaded (we have over
3500 classes over multiple web apps).

I wasn't going to say anything to this list without being more certain,
but Tomcat has been running with no problems since Friday afternoon (47
hours as of this writing)--the longest it's lasted all month.

HTH,
Dhruva


--- "Mohammed Javid - CTD, Chennai." <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Thanks for all the help.
> 
> We did loadtesting of our application running on tomcat 4.1.27 with
> jdk1.4
> on solaris, we enabled the GC stack to get details of how GC works,
> we ran
> for 1 users with 5 users logging every 30 secs. We set min and
> max heap
> size as 512mb The test ran perfectly for first 2 hours and total heap
> ocupied was only 10448K out of total of  519168K , later as test case
> progessed for around 10 hours the tomcat stopped responding and it
> has
> thrown OutOfMemoryError , but as can be seen from GC output before
> outofmemory error 
> the total heap occupied was only 30846K, though we have lot of more
> space on
> heap still tomcat crashed and give connectiontimeout for remaining
> pages.
> When we see the size occupied from top command , when tomcat is
> started it
> was 622Mb and at time of crash it was 723MB.
> 
> We are looking for following clarifications
> 1 What could be the reason for tomcat to crash though we have lot of
> heap
> remaining.
> 2 Why the memory occupied as seend from top command increased though
> there
> was lot of space on heap
> 3 We noticed that though heap has space when size seen from top
> command
> reached 720 to 270 mb tomcat crashes.
> 4 How to make tomcat running without crash , certianly heap is not
> problem
> in this case
> 5 Is this a known issue, Any optimization to be done to avoid this
> problem.
> 
> 
> The below is the output of the GC after which we get outofmemory
> error
> 
> [GC 55404.101: [DefNew Desired survivor size 2621440 bytes, new
> threshold 31
> (max 31)
> - age   1: 359488 bytes, 359488 total
> - age   2: 314104 bytes, 673592 total
> : 167034K->657K(169600K), 0.2717012 secs] 197223K->30846K(519168K),
> 0.2745516 secs]
> java.lang.OutOfMemoryError: unable to create new native thread
> at java.lang.Thread.start(Native Method)
> at
>
org.apache.catalina.connector.http.HttpProcessor.threadStart(HttpProcessor.j
> ava:1178)
> at
>
org.apache.catalina.connector.http.HttpProcessor.start(HttpProcessor.java:12
> 62)
> at
>
org.apache.catalina.connector.http.HttpConnector.newProcessor(HttpConnector.
> java:937)
> at
>
org.apache.catalina.connector.http.HttpConnector.createProcessor(HttpConnect
> or.java:868)
> at
>
org.apache.catalina.connector.http.HttpConnector.run(HttpConnector.java:1075
> )
>at java.lang.Thread.run(Thread.java:534)
> 
> 
> thanks and regards,
> Javid
> 
> >  -Original Message-
> > From:   Mohammed Javid - CTD, Chennai.  
> > Sent:   Wednesday, January 14, 2004 10:00 PM
> > To: '[EMAIL PROTECTED]'
> > Subject:RE: verbose gc
> > 
> > we are using tomcat 4.1 withjdk1.3, we have folowing clarifications
> > 
> > 1) [Full GC 34521K->15504K(38328K), 0.5953540 secs]
> > [GC 27533K->16335K(38328K), 0.0396336 secs]
> > 
> > is the statements got in catalina.out by adding -server -verbose:gc
>  in
> > catalina.sh
> > 
> > 2) what does the above statements got in catalina.out means, is
> garbage
> > collection active. 
> > When i execute top command on solaris and see the memory it shows 
> size
> > and resisdent memory , what is the diference between the two.
> > 
> > 3) I see that gc statements are logged to catalina.out but the
> memory
> > usage keeps increasing, does it mean there is problem with
> > garbage collection,
> > 
> > 4) can we get more information like how many obejcts created /
> objects
> > destroyed during a gc run, what options to pass to get that
> information
> > 
> > thanks
> >  -Original Message-
> > From:   Mohammed Javid - CTD, Chennai.  
> > Sent:   Wednesday, January 14, 2004 2:18 PM
> > To: '[EMAIL PROTECTED]'
> > Subject:verbose gc
> > 
> > Hi,
> > 
> >   When we give verbose:gc in cataline.sh during startup of tomcat
> > where does
> > the gc information get logged.
> >   I am not seeing any information in catalina.out.
> > 
> > thanks.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED

Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: update tomcat 4 to tomcat 5

2004-02-01 Thread Adam Hardy
On 01/31/2004 10:45 PM Lars Schreiber wrote:
Hi
can anybody explain me how to update between different versions of tomcat without 
install and configure the complete tomcat?
its all if im copy the jars from the new tomcat in the /server/lib dir  from the old 
tomcat ?
Thanks


Sounds like tomcat roulette ;)

--
struts 1.1 + tomcat 5.0.16 + java 1.4.2
Linux 2.4.20 Debian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat / WebSphere Performance

2004-02-01 Thread Pete Stokes
Following up from my earlier post re Tomcat performance on different 
platforms, I have 3rd party results on comparing Tomcat and WebSphere on 
different platforms for their app, obviously I don't have intricate 
details about this test.

   Tomcat  WAS Win 2K   WAS iSeries
Overall Average Response time  873ms  680ms22206ms
Overall Trans Average Response 1610ms 1200ms  -
How does this compare to people's experiences, speed comparison, etc as 
per same application in different appservers / os's ?

(Noting WAS=WebSphere app server 4.0.7), Tomcat *probably* 4.1.29. JDK 
for Tomcat unknown.

Any comments would be greatly useful.

Pete.



***
This email and any files transmitted with it are confidential and intended solely for 
the use of the individual or entity to whom they are addressed. If you have received 
this email in error please notify the system manager.
This footnote also confirms that this email message has been swept by MIMEsweeper for 
the presence of computer viruses.
***
For any information on the Quinn Group of Companies please visit :-
http://www.quinn-group.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: ServletFilter on j_security_check

2004-02-01 Thread Adam Hardy
Frank,
if you develop a JAAS login module, you can get it to do pretty much 
anything you want, apart from having instant access to that user's 
session. You could write the login attempts to a database for instance.

Adam

On 01/31/2004 11:51 PM Tim Funk wrote:
Yeah. Use a Valve. A Valve is just like a filter but is tomcat dependent 
and is issued before any filters are invoked.

Any such functionality your looking for is NOT Servlet spec specific so 
whatever solution you use - you'll be locked into that container.

-Tim

Frank Febbraro wrote:

Well that sucks :-(

Any change that in the future Tomcat can have somethign silimar to the
auth-filter in WebLogic...basically just a way to hookup (via 
interface) a
class that can be notified of these events?

Guess I need to break out my papers and roll my ownagain.

For those with problems such as these, check out
http://opensource.atlassian.com/seraph/introduction.html
- Original Message - From: "Tim Funk" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Friday, January 30, 2004 7:29 AM
Subject: Re: ServletFilter on j_security_check


The Sun spec team has said that filters can't be applied to


j_security_check.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21795

-Tim

Frank Febbraro wrote:


Using Tomcat 4.1.x

In looking at the source it seems that there is no simple way to hook


into the Login process to get notified of successes or failures 
(dammit). So
I was attempting to servlet filter the j_security_check and do my own
pre/post processing. However I am unable to filter it. Is this URL
specifically ignored by the filtering mechanism?

My web.xml file looks as such...


 login
 raider.portal.servlet.LoginFilter


 login
 /j_security_check

Kinda running out of options at this point, anyone else had a problem


similar to needing to audit the login results?

Thanks in advance,
Frank




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
struts 1.1 + tomcat 5.0.16 + java 1.4.2
Linux 2.4.20 Debian
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Urgent ! Pls help !

2004-02-01 Thread a a
Dear all,

  I have some problem when connecting apache to tomcat.
  I have installed both apache1.3 and tomcat4.
  I use mod_jk to do the connection. However some problems exists.
  Here is the log file of "mod_jk.log" when I run "apachectl restart":

[Wed Jan 28 20:32:57 2004]  [jk_connect.c (233)]: jk_open_socket, 
connect() failed errno = 111
[Wed Jan 28 20:32:57 2004]  [jk_ajp_common.c (757)]: Error connecting 
to tomcat. Tomcat is probably not started or is listenning on the wrong 
port. Failed errno = 111

and here is the worker.properties:
workers.tomcat_home=/usr/local/jboss-3.0.0_tomcat-4.0.3/catalina
workers.java_home=$(JAVA_HOME)
workers.th=$(workers.tomcat_home)
ps=\
worker.list=ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp14.port=8010
worker.ajp14.host=localhost
worker.ajp14.type=ajp14
worker.ajp14.secretkey=secret
worker.ajp14.credentials=myveryrandomentropy
worker.ajp14.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.th)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
worker.inprocess.stdout=$(workers.th)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.th)$(ps)logs$(ps)inprocess.stderr


  I don't know what the problem is. Could anyone please help me to 
solve the problem.

Regards,
John LEE




必殺技、飲歌、小星星...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/


Jem has a new address

2004-02-01 Thread jem
Thank you for your recent email. Unfortunately, due to spam overload, I no longer 
accept mail to this address. 

If you would like to receive my new email address, please call me. My phone number is 
listed in www.whitepages.com.au

Best wishes
Jem



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Urgent ! Pls help !

2004-02-01 Thread a a
Dear all,

  I have some problem when connecting apache to tomcat.
  I have installed both apache1.3 and tomcat4.
  I use mod_jk to do the connection. However some problems exists.
  Here is the log file of "mod_jk.log" when I run "apachectl restart":

[Wed Jan 28 20:32:57 2004]  [jk_connect.c (233)]: jk_open_socket, 
connect() failed errno = 111
[Wed Jan 28 20:32:57 2004]  [jk_ajp_common.c (757)]: Error connecting 
to tomcat. Tomcat is probably not started or is listenning on the wrong 
port. Failed errno = 111

and here is the worker.properties:
workers.tomcat_home=/usr/local/jboss-3.0.0_tomcat-4.0.3/catalina
workers.java_home=$(JAVA_HOME)
workers.th=$(workers.tomcat_home)
ps=\
worker.list=ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp14.port=8010
worker.ajp14.host=localhost
worker.ajp14.type=ajp14
worker.ajp14.secretkey=secret
worker.ajp14.credentials=myveryrandomentropy
worker.ajp14.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.th)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
worker.inprocess.stdout=$(workers.th)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.th)$(ps)logs$(ps)inprocess.stderr


  I don't know what the problem is. Could anyone please help me to 
solve the problem.

Regards,
John LEE



必殺技、飲歌、小星星...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/


Urgent ! Pls help !

2004-02-01 Thread a a
Dear all,
 
  I have some problem when connecting apache to tomcat.
  I have installed both apache1.3 and tomcat4.
  I use mod_jk to do the connection. However some problems exists.
  Here is the log file of "mod_jk.log" when I run "apachectl restart":
 
[Wed Jan 28 20:32:57 2004]  [jk_connect.c (233)]: jk_open_socket, 
connect() failed errno = 111
[Wed Jan 28 20:32:57 2004]  [jk_ajp_common.c (757)]: Error connecting 
to tomcat. Tomcat is probably not started or is listenning on the wrong 
port. Failed errno = 111
 
and here is the worker.properties:
workers.tomcat_home=/usr/local/jboss-3.0.0_tomcat-4.0.3/catalina
workers.java_home=$(JAVA_HOME)
workers.th=$(workers.tomcat_home)
ps=\
worker.list=ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1
worker.ajp14.port=8010
worker.ajp14.host=localhost
worker.ajp14.type=ajp14
worker.ajp14.secretkey=secret
worker.ajp14.credentials=myveryrandomentropy
worker.ajp14.lbfactor=1
worker.loadbalancer.type=lb
worker.loadbalancer.balanced_workers=ajp13
worker.inprocess.type=jni
worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
worker.inprocess.cmd_line=start
worker.inprocess.jvm_lib=$(workers.th)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
worker.inprocess.stdout=$(workers.th)$(ps)logs$(ps)inprocess.stdout
worker.inprocess.stderr=$(workers.th)$(ps)logs$(ps)inprocess.stderr
 
 
  I don't know what the problem is. Could anyone please help me to 
solve the problem.
 
Regards,
John LEE


必殺技、飲歌、小星星...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/


Wrong Address

2004-02-01 Thread [EMAIL PROTECTED]
You've sent a message to an email address that does not exist in the txeurope.com 
server. Please check the address and send your email again.

Thanks
TXEurope.com Postmaster


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: context configuration file being overwritten

2004-02-01 Thread QM
: (I'm trying to place as little
: as possible in the tomcat directory structure, to ease upgrade issues
: and such.)

Always a good idea.

Search the Tomcat website for "instance" or "CATALINA_HOME and
CATALINA_BASE."  (I don't have the exact URL on me.)  Using these latter
two environment variables, you can setup a sort of mini-Tomcat that has its
own conf/ and webapps/ dirs, but refers to the main Tomcat install for the
server's jar files.

Combine that with a symlink to the main Tomcat dir (e.g. tomcat ->
tomcat-5.0.18) and upgrades within the same major version are a snap.

ymmv but this works quite well for me.

-QM

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 5.0.16 startup console error

2004-02-01 Thread Dima Gutzeit
Change the following in the server.xml :






As I see from you configurations, the docbase of you application is the
webapps directory of Tomcat and not at e:\ ...

- Original Message - 
From: "Avinash Sridhar" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, February 01, 2004 5:24 PM
Subject: Tomcat 5.0.16 startup console error


Hi,
I am trying to get a simple servlet running using tomcat 5.0.16.I had posted
the problem previously,but I dont know why it was ignored,plz dont ignore
this too.
Here is the problem I am facing...

While I startup tomcat,I get the following error,

/* Start of Error message **/
SEVERE: Cannot find message associated with key
standardContext.resourcesStart
java.lang.IllegalArgumentException: Document base E:\sampleapp does not
exist or
is not a readable directory


/*End of Error message ***/

The directory structure is as follows

/TOMCAT_HOME/webapps/sampleapp
/TOMCAT_HOME/webapps/sampleapp/WEB-INF
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/classes
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/lib
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/sourcefiles
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/web.xml

The content of web.xml is as follows.



/**Start of web.xml ***/




http://java.sun.com/dtd/web-app_2_3.dtd";>


Servlet 2.4 Examples
 Servlet 2.4 Examples 





HelloServlet
HelloServlet




HelloServlet
/sampleapp






/* End of web.xml
*/

Now I have modified the server.xml file in the
TOMCAT_HOME/conf/server.xmllike this,just a line

/*** server.xml
***/




/*server.xml
/

Kindly help me out.

Any help would be appreciated

Thanks
AS



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 5.0.16 startup console error

2004-02-01 Thread BAO RuiXian


Avinash Sridhar wrote:

[snip...]
/* Start of Error message **/
SEVERE: Cannot find message associated with key standardContext.resourcesStart
java.lang.IllegalArgumentException: Document base E:\sampleapp does not exist or
is not a readable directory 

/*End of Error message ***/

The directory structure is as follows

/TOMCAT_HOME/webapps/sampleapp
/TOMCAT_HOME/webapps/sampleapp/WEB-INF
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/classes
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/lib
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/sourcefiles
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/web.xml
[snip...]
Now I have modified the server.xml file in the 
TOMCAT_HOME/conf/server.xmllike this,just a line
/*** server.xml ***/



/*server.xml/
 

I don't understand why you want to have the docBase as "e:\sampleapp" 
while your directory structure is like /TOMCAT_HOME/webapps/sampleapp? 
Please try set docBase as "sampleapp".

Best

Bao

Kindly help me out.

Any help would be appreciated

Thanks 
AS

 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Tomcat 5.0.16 startup console error

2004-02-01 Thread Avinash Sridhar
Hi,
I am trying to get a simple servlet running using tomcat 5.0.16.I had posted the 
problem previously,but I dont know why it was ignored,plz dont ignore this too.
Here is the problem I am facing...

While I startup tomcat,I get the following error,

/* Start of Error message **/
SEVERE: Cannot find message associated with key standardContext.resourcesStart
java.lang.IllegalArgumentException: Document base E:\sampleapp does not exist or
is not a readable directory 


/*End of Error message ***/

The directory structure is as follows

/TOMCAT_HOME/webapps/sampleapp
/TOMCAT_HOME/webapps/sampleapp/WEB-INF
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/classes
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/lib
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/sourcefiles
/TOMCAT_HOME/webapps/sampleapp/WEB-INF/web.xml

The content of web.xml is as follows.



/**Start of web.xml ***/




http://java.sun.com/dtd/web-app_2_3.dtd";>


Servlet 2.4 Examples
 Servlet 2.4 Examples 

 



HelloServlet
HelloServlet




HelloServlet
/sampleapp






/* End of web.xml */

Now I have modified the server.xml file in the 
TOMCAT_HOME/conf/server.xmllike this,just a line

/*** server.xml ***/




/*server.xml/

Kindly help me out.

Any help would be appreciated

Thanks 
AS


Mail Transaction Failed

2004-02-01 Thread craig . mcclanahan
The message contains Unicode characters and has been sent as a binary attachment.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

About_tomcat5_manager_and_status_application

2004-02-01 Thread Ingmars Rubenis
Hello list!

I hwould like to install tomcat5 manager and status applications in
tomcat4. I have built tomcat5 from source, so I have created also
manager under server/webapps/manager and status
I have copied them to tomcat4 (the same directory), but they do not work.
What libraries should I copy to tomcat4?
How to do this?
Is it possible?
May be I should build tomcat4 from source + replace existing manager
applications in the source code?
Did anybody do that before?

Thanks in advance!










Best Wishes
Ingmars Rubenis
LU
University of Latvia
Developer
IT department
(371) 9227133




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat 5.0.18 : Bad Cookie Names, the return ?

2004-02-01 Thread Papillon
I've installed Tomcat 5.0.18 (binary release) and J2SE v 1.4.2_02 on a
windows server 2000 OS.

When Tomcat receive a request (or respond ?) I have pratically each time
this type of error :

23 janv. 2004 07:12:22 org.apache.coyote.tomcat5.CoyoteAdapter parseCookies
GRAVE: Bad Cookie Name: expires /Value: Fri
java.lang.IllegalArgumentException: Le nom de cookie "expires" est un
"token" rÚservÚ
at javax.servlet.http.Cookie.(Cookie.java:185)
at
org.apache.coyote.tomcat5.CoyoteAdapter.parseCookies(CoyoteAdapter.java:424)
at
org.apache.coyote.tomcat5.CoyoteAdapter.postParseRequest(CoyoteAdapter.java:
332)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:204)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne
ction(Http11Protocol.java:700)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:683)
at java.lang.Thread.run(Thread.java:534)

another one (cookie's name is different...)

23 janv. 2004 07:12:22 org.apache.coyote.tomcat5.CoyoteAdapter parseCookies
GRAVE: Bad Cookie Name: path /Value: /
java.lang.IllegalArgumentException: Le nom de cookie "path" est un "token"
rÚservÚ
at javax.servlet.http.Cookie.(Cookie.java:185)

at java.lang.Thread.run(Thread.java:534)

I've undestand that "path","expire","domain",etc are reserved names for
cookies. All run fine with the same classes on an "oldest" tomcat
version(3.3 who seems to have and similary corrected bug and or a tomcat
4.0.x) or when I copy the complete context (Tomcat 5 rep and Java rep) on
anothers machines (windows 2000 pro or Mac OS X).

A difference between the server and the computers : The server is behind
a firewall and have two adress. All accesses are done by the WAN adress
because using NAT.

thanks for any informations, any help, any idea ;)


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



changing content of response through filter ?

2004-02-01 Thread Albrecht Berger
Hello,
is it possible to change the generated jsp/servlet content
of a response ?
Do I need a filter, or something else ?
Thx
berger
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: response.sendRedirect problem in Tomcat 5.0.18

2004-02-01 Thread Ben Souther
You'll need to structure your code so that you either write to the out stream 
or perform a sendRedirect.  There has never been a version of Tomcat that 
would allow otherwise.  This is the same in PHP, ASP, and I imagine any other 
web scripting language.

A sendRedirect does nothing more than send back a bodyless header with a 
"Location: url"  parameter.

You can't send a header once you've started writing to the body of the 
message.  You also can't write to the body after sending a redirect (which is 
why you need to add a "return" statement just after the redirect).



On Sunday 01 February 2004 06:55 am, you wrote:
> Hi Ben,
>
> Thanks for your assistance, I added "return ;" statements directly after
> the redirects but this didn't stop the errors.  I am currently having the
> code checked and will let you know what eventuates.
>
> Should there be no "out.print" statements above the "response.sendRedirect"
> lines in the jsp code ?
> There are also "out.write" statements in the jsp code above the redirect
> lines, could these also cause a problem ?
>
> The code was not erroring like this when using Tomcat 4.1.24 or 5.0.16, do
> you think this is due to Tomcat 5.0.18 being more strict with syntax ?
>
> Thanks for your time,
>
> Regards
> Anthony
>
>
> From: Ben Souther <[EMAIL PROTECTED]>
>
> >Reply-To: [EMAIL PROTECTED]
> >To: "Tomcat Users List" <[EMAIL PROTECTED]>
> >Subject: Re: response.sendRedirect problem in Tomcat 5.0.18
> >Date: Sat, 31 Jan 2004 23:53:41 -0500
> >
> >On Saturday 31 January 2004 11:32 pm, you wrote:
> > > at org.apache.jsp.product_jsp._jspService(product_jsp.java:283)
> >
> >If you go into your work directory, and look at product_jsp.java line 283,
> >you will see exactly what's causing the problem.
> >
> >Without seeing your code, I can't be sure what the problem is but 99% of
> >the
> >time when I see an illegal state exception it caused by one of two things.
> >
> >Either you've written someting to the out stream before redirecting
> >(setting
> >content type or any out.print statements)  or you didn't  put a return
> >statement just after the redirect.
> >
> >If neither of these is the case and you can post your code, attach your
> > JSP and the product_jsp.java code I'll take a stab at it.
> >
> >-Ben
> >
> >-
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
>
> _
> Hot chart ringtones and polyphonics. Go to
> http://ninemsn.com.au/mobilemania/default.asp

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



test

2004-02-01 Thread pier
The message cannot be represented in 7-bit ASCII encoding and has been sent as a 
binary attachment.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: Load Balancing Problem...Urgent

2004-02-01 Thread David Rees
Kok Wei, Koh wrote, On 2/1/2004 1:33 AM:
Why not go with the latest:-
* apache 1.3.29
I would recommend Apache 2.0.48 myself as it has the mod_deflate module 
which enables gzip compression and can save a LOT of bandwidth as well. 
 I've been using Apache 2 along with mod_jk and load-balanced Tomcats 
with no problems.

-Dave

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Load Balancing Problem...Urgent

2004-02-01 Thread Kok Wei, Koh
Hi Nicholas,

It is great to see undergraduates students (especially from Malaysia), 
using Tomcat in their projects ;-) High five dude!

Ok first of all, if you're building a web application you may want to 
consider placing Apache 1.3.x in front of your Tomcat instance, to serve 
a all static contents such as html/images and proxy all tomcat related 
stuffs to the Tomcat instances.

Why not go with the latest:-
* apache 1.3.29
* tomcat 4.1.29
* and the mod_jk connector
You may find a very good tutorial on how to setup load balanced Tomcat 
servers at the following URL:-

http://www.ubeans.com/tomcat/index.html

To answer your question...


how can I send the request from load balancer connector to the connector
in that selected server?
After the selected server has finished the process, how can the server 
send back the response to load balancer and then the load balancer sends 
back to user?


An example of a complete flow of a request to a web application eg: 
http://www.xxx.com/myapp/start.do is ...

User -> Apache -> Tomcat -> Apache -> User

The way Apache determines if a particular request is to be proxied to 
Tomcar, is via the JkMount directive in the httpd.conf, see below:

JkMount /myapp/* loadbalancer

where "loadbalancer" is a worker of type "lb".

Please go through the above URL to find out more.
Good luck!
Nicholas Tham Soon Hing wrote:
Hi,

I'm an undergraduate student from Malaysia. I'm using Tomcat 4.1.27 to
do a load balancing system. This system consists of several tomcat
servers and one of them will be the load balancer. When a user accesses
a url page, the load balancer will select a server to response to that
request. The problem that I faced now is I don't know how to make the
selected server to process the request from user browser. As I know the
tomcat connector will assign the socket to processor to process it. So
how can I send the request from load balancer connector to the connector
in that selected server? What should I send (socket? Input stream? Or
the request line? How to get these?)?After the selected server has
finished the process, how can the server send back the response to load
balancer and then the load balancer sends back to user? Can anyone help
me on this? Or is there any one has done this before? Can someone show
me the sample code for solving this problem? It's urgent. Your help is
appreciated.
Thanks,
Nicholas Tham


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



UNED: Informacion equipo docente

2004-02-01 Thread Informacion equipo docente
 MENSAJE GENERADO AUTOMATICAMENTE -
Proximamente nos pondremos en contacto con usted, mediante correo
electronico, para contestar su mensaje.

Atentamente, German Ruiperez y el equipo docente de cursos de
ensennanzas no regladas (http://www.vip.uned.es).

Nota: Para evitar problemas en la recepcion del correo, este texto 
 incluye solo caracteres ASCII estandar.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



  1   2   >