Intercepting AuthenticationFilter and dispatching need help !

2001-12-25 Thread Softwareentwicklung Hauschel

Hey all,
i want to check if the user is authenticated.
I've read that the Filters are the right place to do that.
If the User is not authenticated, so i want to dispatch him to a login page.
Does anybody knows how to do that ?

I've tryed it in the Filter in this way:

((HTTPServletRequest)servletRequest).getRequestDispatcher( pub/ueberweisung
.jsp ).forward( servletRequest, servletResponse );

But there is always an Error compiling the jsp ?!
if I call this jsp (plain html) without a filter it works without any
problems ?

Pleas help
Fredy



-Ursprüngliche Nachricht-
Von: Alex Chaffee [mailto:[EMAIL PROTECTED]]
Gesendet: Samstag, 22. Dezember 2001 02:24
An: [EMAIL PROTECTED]
Betreff: [FAQ] jGuru FAQ Update


jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as
many other Java topics).  Here is an automated update on recent postings to
Tomcat-related FAQs.  Please direct flames and feedback to [EMAIL PROTECTED] .

 - Alex


++ JavaServer Pages (JSP) FAQ: http://www.jguru.com/faq/JSP

Can I make a jsp custom tag to return a value in to a jsp variable.p
I want a jsp custom tag to evaluate some condition based on the parameters I
pass and return a boolean to the jsp page in a java variable (type
boolean).p Can anybody give some sample of the code using similar
functionality. brCan we some how use the get methods in the tagHandler in
our jsp to retrieve the values?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=593533

Is it possible to invoke customtags onEvents like onClick?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592466

Here is what I have:
P
1. My application is under /opt/tomcat/webapps/myApp
br
2. My jsp file is : /opt/tomcat/webapps/myApp/web/test.jsp
br
   It contains;
br
  . . .
br
lt;%
br
String configFile=getInitParameter(configFile);
br
System.out.println(configFIle=+configFile);
br
%gt;
P
3. My web.xml is: /opt/tomcat/webapps/myApp/WEB-INF/web.xml
br
It contains:
lt;web-appgt;
br
   lt;servletgt;
br
  lt;servlet-namegt;testlt;/servlet-namegt;
br
  lt;jsp-filegt;/web/test.jsplt;/jsp-filegt;
br
  lt;init-parametergt;
br
lt;param-namegt;configFilelt;/param-namegt;
br
lt;param-valuegt;TOTOlt;/param-valuegt;
br
  lt;/init-parametergt;
br
   lt;/servletgt;
br
   lt;servlet-mappinggt;
br
   lt;servlet-namegt;testlt;/servlet-namegt;
br
   lt;url-patterngt;/web/test.jsplt;/url-patterngt;
br
   lt;/servlet-mappinggt;
 br
lt;/web-appgt;
P
What am I doing wrong?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592461

I'm working on the JSP - Tomcat model, I'm using JSPC to pre-compile my
JSPs, Is there a way to prevent any new (non pre-compiled) JSPs from being
executed (compiled) in tomcat? ie. I do not want any new JSPs , which have
not being pre-compiled to be executed via tomcat on the browser, Is there
any property/configuration file which I need to change in Tomcat??
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592460

Why use JSP? All that we can do with scriptlets we can do with JavaScript as
well, I think.
Can somebody explain?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=590882

We are building a series of JSP pages, each of which is responsible for
producing a different area of the screen.

Any given screen that the end user sees, therefore, is made up of a number
of blocks, each of which has been generated by a single JSP. The top level
JSP calls in the blocks using a jsp:include.

We are trying to use the JSP errorPage directive on every JSP to display an
error to the user if something goes wrong with any of the blocks, but are
finding that we end up with the error page only taking up part of the screen
(for the block which had an error), whereas we would like the whole screen
to be filled up by the errorPage.
In other words - if something goes wrong with any of the blocks that
comprise a screen - we would like to display nothing but the error page.

What is the best way to do this ?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=590880

++ Servlets FAQ: http://www.jguru.com/faq/Servlets

HttpUtils.parseQueryString is deprecated. What should we use instead ?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=587251

In some web.xml I find DOCTYPE reference of web-app_2_2.dtd,(in Weblogic
5.1 example) in others, of web-app_2.2.dtd (in java pet store).  What is
the difference between the two DTDs?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=586710

What are the steps that I need to follow to deploy my servlet in WebLogic
6.1?
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=586701

How can I suppress the parameters from displaying in the URL? For instance,
if I pass in a password, I don't want it to show up in the address bar.
http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=586493

++ Tomcat FAQ: http://www.jguru.com/faq/Tomcat


Recursion problem solved, question opened

2001-12-25 Thread Nikola Milutinovic

Hi all.

Some days ago I reported an error on JDBC and JSP in recursion. Just to remind 
everyone...

I had a JSP page make a JDBC connection to PostgreSQL database. The database contained 
a table which held a hierarchy (n-tree) and another that held leaf nodes (our 
company, it's organizational units and e-mail users). The JSP page is capable of 
displaying all e-mail users for a given org_unit, no problem there. Then I added 
option to display only partial HTML, just the portion of the table, with the idea to 
include it in another request. No problem there, either.

The problem occured when I tried to recursively include the same page in order to 
display the entire sub-tree for a given node. I was getting unexplicable error, mostly 
JDBC.

SOLUTION
-

I have tested a standalone Java, which worked and a local method inside JSP, which 
also worked!!! That led me to the source of the problem. The only difference between 
my attempt to do a recursive inclusion in a method (which worked) and recursive 
inclusion with jsp:include was in the placement of JDBC variables.

In case of the method, they were local to the method. In case of the jsp:include 
they were global for the page, inside %!  % section. Once I moved the declarations 
to the scriptlet %  % portion, it all started working.

So, this deosn't work in a recursion:

%!
Connection conn;
Statement stat;
ResultSet rs;
%
...
%
conn = DriverManager.getConnection( jdbc://postgresql/www, user, pass );
stat = conn.createStatement();
rs = stat.executeQuery( querySubOU + id );
%
jsp:include page=%= \page.jsp?partial=trueid=\ + subID %/

But this does work:

%!
...
%
%
Connection conn;
Statement stat;
ResultSet rs;
conn = DriverManager.getConnection( jdbc://postgresql/www, user, pass );
stat = conn.createStatement();
rs = stat.executeQuery( querySubOU + id );
%
jsp:include page=%= \page.jsp?partial=trueid=\ + subID %/

Could anyone explain why?

Variables within %!  % section are global to the instance of the servlet class or 
(if declared as static) global to the whole class. Since I didnot declare them as 
static, they should have been used per-instance. Funny thing is, the error was not 
occuring upon exit from the recursion (as I expected), but upon *second* entering of 
recursion.

QUESTION
-
If a servlet (JSP) tries to include itself, will Tomcat create two instances of the 
servlet's class? From my point of view, it should, since the caller has not finished.

Can anyone shed some light on the matter?

Nix.



Start page

2001-12-25 Thread Salvatore Balzano

I,m sorry, I've posted my message in HTML. I repost it in plain text.

Hi,
how can I set the start page for an application (this is, by default,
index.jsp, and I want to make it mystartpage.jsp)

Thanks.


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Problem Installing Tomcat.4.0.1 on Redhat Linux 7.0

2001-12-25 Thread Cynthia Jeness

Stan Levine wrote:

 I am new to Linux, Apache and Tomcat. I am trying to install Tomcat 4.0.1. I already 
have Apache 1.3.12
 installed as part of my Redhat Linux 7.0 installation. I  downloaded 
webapp-module-1.0-tc40-linux-glibc2.2.tar.gz.
 1) First I ran gunzip and built the tar file
 2) Then I ran tar -xvf webapp-module-1.0-tc40-linux-glibc2.2.tar to extract the 
files.
 3) Then I followed the instructions in
 webapp-module-1.0-tc40/INSTALL.txt
  a) I copied mod_webapp.do to my modules directory
 /usr/lib/apache
  b) I added the LoadModule and AddModule lines to
  /etc/httpd/httpd.conf
 --- I can't find the apachect1 script.  My ServerName is /etc/httpd. This contains 
directory conf,

Redhat does not provide this with.  Since this is just an edit check on your 
installation, it is not critical to run this.



  and link logs --- /var/log/httpd, and link modules --- /usr/lib/apache.  There is 
 no apachect1 script file in any of these directories.  Also, where are the apache 
scripts to start and stop apache?

The script is /etc/rc.d/init.d/httpd

It uses the standard options of start, stop and restart.



 --- Regard the next instructions:  do I add the WEBAPPConnection and WebAppDeploy 
statements to
httpd.conf just they are in the instructions? or do they require 
modification?

If you just want to run the examples, then these should work.  However, I get an error 
about invalid virtual host name.  There are various comments in this email archive 
about how to work arround this.
This last comment that I read was to
uncomment the ServerName directive in /etc/httpd/conf/httpd.conf.


 --- I can't find the server.xml file, or any of the 
directories(bin,conf,doc,lib,logs,webapps) that are supposed to be in
 the standard Tomcat setup.


If you installed Tomcat4 from the rpm, then go to /var/tomcat4.  Also, there was a 
tomcat4 startup script installed in /usr/bin.


Thanks for your help.

   Stan

I have successfully gotten Tomcat started under RedHat 7.1, but I cannot get 
mod_webapp to work correctly.  The fundamental problem is that the binary version of 
mod_webapp was not compiled with the
options required to run with the Apache installed with RedHat 7.1.  I have tried 
compiling from source, but so far that has not been successful.  Basically, you need 
more that the source provided with
mod_webapp and even when I downloaded all of the Apache source and tried to compile, 
it complained about something broken in the apx directory.

I hope that those who build mod_webapp will recognize that many of us using Tomcat are 
basically Java programmers with stock installations of Apache.  So we really need a 
mod_webapp that works with
these stock distributions.  Also, there seem to be problems with the directions with 
regard to updating httpd.conf.  Perhaps these problems are trivial for Apache experts, 
but again I do not think that
servlet progammers necessary fall into this category.

So if you do manage to get mod_webapp working with out the DEAPI warning, then 
please post your success story.

Happy Holidays to all,
Cynthia Jeness





--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Problem Installing Tomcat.4.0.1 on Redhat Linux 7.0

2001-12-25 Thread Stan Levine

Thank you, Cynthia, for your response.
1) Regarding the tomcat libraries, that I can't find,
(bin,conf,doc,lib,logs,webapps), I did not install tomcat from a RPM. I used
the binary ( webapp-module-1.0-tc40-linux-glibc2.2.tar.gz.), did the gunzip
and tar extract. I still can't find these directories.
2) After I added th theWebAppConnection and WebAppDeplay lines to
httpd.conf, I got a syntax error on the WebAppDeploy line when I started
tomcat.  Maybe it was because there is no /examples directory.  Where should
this be?

Thanks.

Stan
- Original Message -
From: Cynthia Jeness [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Tuesday, December 25, 2001 11:34 AM
Subject: Re: Problem Installing Tomcat.4.0.1 on Redhat Linux 7.0


 Stan Levine wrote:

  I am new to Linux, Apache and Tomcat. I am trying to install Tomcat
4.0.1. I already have Apache 1.3.12
  installed as part of my Redhat Linux 7.0 installation. I  downloaded
webapp-module-1.0-tc40-linux-glibc2.2.tar.gz.
  1) First I ran gunzip and built the tar file
  2) Then I ran tar -xvf webapp-module-1.0-tc40-linux-glibc2.2.tar to
extract the files.
  3) Then I followed the instructions in
  webapp-module-1.0-tc40/INSTALL.txt
   a) I copied mod_webapp.do to my modules directory
  /usr/lib/apache
   b) I added the LoadModule and AddModule lines to
   /etc/httpd/httpd.conf
  --- I can't find the apachect1 script.  My ServerName is /etc/httpd.
This contains directory conf,

 Redhat does not provide this with.  Since this is just an edit check on
your installation, it is not critical to run this.


 
   and link logs --- /var/log/httpd, and link modules ---
/usr/lib/apache.  There is  no apachect1 script file in any of these
directories.  Also, where are the apache scripts to start and stop apache?

 The script is /etc/rc.d/init.d/httpd

 It uses the standard options of start, stop and restart.


 
  --- Regard the next instructions:  do I add the WEBAPPConnection and
WebAppDeploy statements to
 httpd.conf just they are in the instructions? or do they
require modification?

 If you just want to run the examples, then these should work.  However, I
get an error about invalid virtual host name.  There are various comments
in this email archive about how to work arround this.
 This last comment that I read was to
 uncomment the ServerName directive in /etc/httpd/conf/httpd.conf.

 
  --- I can't find the server.xml file, or any of the
directories(bin,conf,doc,lib,logs,webapps) that are supposed to be in
  the standard Tomcat setup.
 

 If you installed Tomcat4 from the rpm, then go to /var/tomcat4.  Also,
there was a tomcat4 startup script installed in /usr/bin.

 
 Thanks for your help.
 
Stan

 I have successfully gotten Tomcat started under RedHat 7.1, but I cannot
get mod_webapp to work correctly.  The fundamental problem is that the
binary version of mod_webapp was not compiled with the
 options required to run with the Apache installed with RedHat 7.1.  I have
tried compiling from source, but so far that has not been successful.
Basically, you need more that the source provided with
 mod_webapp and even when I downloaded all of the Apache source and tried
to compile, it complained about something broken in the apx directory.

 I hope that those who build mod_webapp will recognize that many of us
using Tomcat are basically Java programmers with stock installations of
Apache.  So we really need a mod_webapp that works with
 these stock distributions.  Also, there seem to be problems with the
directions with regard to updating httpd.conf.  Perhaps these problems are
trivial for Apache experts, but again I do not think that
 servlet progammers necessary fall into this category.

 So if you do manage to get mod_webapp working with out the DEAPI
warning, then please post your success story.

 Happy Holidays to all,
 Cynthia Jeness





 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]






--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Tomcat fails to start...

2001-12-25 Thread Jack Lauman

Tomcat 4.x (CVS 12-25-2001) fails to start.

I'm using the following configuration:

RedHat 7.0 (glibc 2.2.4-18.7.0.3)
jdk1.3.1_02
commons-utils-1.1
commons-collections-1.0
commons-digester-1.1.1
commons-dbcp-20011222
commons-modeler-20011222
commons-pool-20011222
crimson-1.1.3
xerces-1.4.4

I got the following error when executing $CATALINA_HOME/bin/startup.sh
and would appreciate any assistance in resolving it.

Thanks,

Jack

End event threw exception
java.lang.ClassNotFoundException:
org.apache.catalina.ServerSocketFactory
at
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:992)
at
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:155)
at org.apache.commons.digester.Digester.endElement(Digester.java:757)
at org.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1403)
at
org.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator.java:1550)
at
org.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1809)
at
org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1182)
at
org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1098)
at org.apache.commons.digester.Digester.parse(Digester.java:1170)
at org.apache.catalina.startup.Catalina.start(Catalina.java:444)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:399)
at org.apache.catalina.startup.Catalina.process(Catalina.java:178)
at java.lang.reflect.Method.invoke(Native Method)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:246)
Catalina.start: java.lang.ClassNotFoundException:
org.apache.catalina.ServerSocketFactory
java.lang.ClassNotFoundException:
org.apache.catalina.ServerSocketFactory
at
org.apache.commons.digester.Digester.createSAXException(Digester.java:1763)
at
org.apache.commons.digester.Digester.createSAXException(Digester.java:1785)
at org.apache.commons.digester.Digester.endElement(Digester.java:760)
at org.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1403)
at
org.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator.java:1550)
at
org.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1809)
at
org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1182)
at
org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1098)
at org.apache.commons.digester.Digester.parse(Digester.java:1170)
at org.apache.catalina.startup.Catalina.start(Catalina.java:444)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:399)
at org.apache.catalina.startup.Catalina.process(Catalina.java:178)
at java.lang.reflect.Method.invoke(Native Method)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:246)

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Start page

2001-12-25 Thread Galbayar

add this to the

CATALINA_HOMEwebapps\yourwebapp\WEB-INF\web.xml

welcome-file-list

welcome-fileyourpage.jsp

/welcome-file/welcome-file-list

- Original Message - 
From: Salvatore Balzano [EMAIL PROTECTED]
To: Tomcat [EMAIL PROTECTED]
Sent: Tuesday, December 25, 2001 22:10
Subject: Start page


 I,m sorry, I've posted my message in HTML. I repost it in plain text.
 
 Hi,
 how can I set the start page for an application (this is, by default,
 index.jsp, and I want to make it mystartpage.jsp)
 
 Thanks.
 
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]
 
 


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Intercepting AuthenticationFilter and dispatching need help !

2001-12-25 Thread Galbayar

try use
request.getRemoteUser() //
or
String auth = request.getHeader(Authorization);

String userInfo =auth.substring(6).trim();

BASE64Decoder decoder = new BASE64Decoder();

String NameAndPassword =new String(decoder.decodeBuffer(userInfo));

StringTokenizer stk=new StringTokenizer(NameAndPassword,:);

String Name=stk.nextToken();

String Password=stk.nextToken();





- Original Message -
From: Softwareentwicklung Hauschel [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Tuesday, December 25, 2001 17:48
Subject: Intercepting AuthenticationFilter and dispatching need help !


 Hey all,
 i want to check if the user is authenticated.
 I've read that the Filters are the right place to do that.
 If the User is not authenticated, so i want to dispatch him to a login
page.
 Does anybody knows how to do that ?

 I've tryed it in the Filter in this way:

 ((HTTPServletRequest)servletRequest).getRequestDispatcher(
pub/ueberweisung
 .jsp ).forward( servletRequest, servletResponse );

 But there is always an Error compiling the jsp ?!
 if I call this jsp (plain html) without a filter it works without any
 problems ?

 Pleas help
 Fredy



 -Ursprüngliche Nachricht-
 Von: Alex Chaffee [mailto:[EMAIL PROTECTED]]
 Gesendet: Samstag, 22. Dezember 2001 02:24
 An: [EMAIL PROTECTED]
 Betreff: [FAQ] jGuru FAQ Update


 jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as
 many other Java topics).  Here is an automated update on recent postings
to
 Tomcat-related FAQs.  Please direct flames and feedback to [EMAIL PROTECTED]
.

  - Alex


 ++ JavaServer Pages (JSP) FAQ: http://www.jguru.com/faq/JSP

 Can I make a jsp custom tag to return a value in to a jsp variable.p
 I want a jsp custom tag to evaluate some condition based on the parameters
I
 pass and return a boolean to the jsp page in a java variable (type
 boolean).p Can anybody give some sample of the code using similar
 functionality. brCan we some how use the get methods in the tagHandler
in
 our jsp to retrieve the values?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=593533

 Is it possible to invoke customtags onEvents like onClick?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592466

 Here is what I have:
 P
 1. My application is under /opt/tomcat/webapps/myApp
 br
 2. My jsp file is : /opt/tomcat/webapps/myApp/web/test.jsp
 br
It contains;
 br
   . . .
 br
 lt;%
 br
 String configFile=getInitParameter(configFile);
 br
 System.out.println(configFIle=+configFile);
 br
 %gt;
 P
 3. My web.xml is: /opt/tomcat/webapps/myApp/WEB-INF/web.xml
 br
 It contains:
 lt;web-appgt;
 br
lt;servletgt;
 br
   lt;servlet-namegt;testlt;/servlet-namegt;
 br
   lt;jsp-filegt;/web/test.jsplt;/jsp-filegt;
 br
   lt;init-parametergt;
 br
 lt;param-namegt;configFilelt;/param-namegt;
 br
 lt;param-valuegt;TOTOlt;/param-valuegt;
 br
   lt;/init-parametergt;
 br
lt;/servletgt;
 br
lt;servlet-mappinggt;
 br
lt;servlet-namegt;testlt;/servlet-namegt;
 br
lt;url-patterngt;/web/test.jsplt;/url-patterngt;
 br
lt;/servlet-mappinggt;
  br
 lt;/web-appgt;
 P
 What am I doing wrong?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592461

 I'm working on the JSP - Tomcat model, I'm using JSPC to pre-compile my
 JSPs, Is there a way to prevent any new (non pre-compiled) JSPs from being
 executed (compiled) in tomcat? ie. I do not want any new JSPs , which have
 not being pre-compiled to be executed via tomcat on the browser, Is there
 any property/configuration file which I need to change in Tomcat??
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=592460

 Why use JSP? All that we can do with scriptlets we can do with JavaScript
as
 well, I think.
 Can somebody explain?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=590882

 We are building a series of JSP pages, each of which is responsible for
 producing a different area of the screen.

 Any given screen that the end user sees, therefore, is made up of a number
 of blocks, each of which has been generated by a single JSP. The top
level
 JSP calls in the blocks using a jsp:include.

 We are trying to use the JSP errorPage directive on every JSP to display
an
 error to the user if something goes wrong with any of the blocks, but
are
 finding that we end up with the error page only taking up part of the
screen
 (for the block which had an error), whereas we would like the whole screen
 to be filled up by the errorPage.
 In other words - if something goes wrong with any of the blocks that
 comprise a screen - we would like to display nothing but the error page.

 What is the best way to do this ?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=590880

 ++ Servlets FAQ: http://www.jguru.com/faq/Servlets

 HttpUtils.parseQueryString is deprecated. What should we use instead ?
 http://www.jguru.com/misc/faqtrampoline.jsp?src=notifyEID=587251

 In some web.xml 

the order of the tags in web.xml file

2001-12-25 Thread yilmaz

Hi all, can anyone tell me where i can find a piece of doc about
the order of the tags in a web.xml file. For a while i have been trying
to use different combinations of those tags but still i couldn't figure out
the right order. I searched archives, FAQs , even
http://java.sun.com/dtd/web-app_2_3.dtd  but couldn't  find anything about
that.
how are we supposed to know the correct order of those tags? Without that,
i can't get my tomcat 4 server worked.
Let me make my problem more clear:
i want to set some security constraints on my directories,so i need to set
security-constraints tags, but whenever i try i am having parsing
exceptions due
to inproper ordering of those tags. In a more straightforward saying,
where should security-constraints tags be put, before -or -after mime
types,
 sesion-config,login config, etc.
Please help me as soon as possible.
Best Regards :)



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - the order of the tags in web.xml file



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




JNDI Context

2001-12-25 Thread Frans Thamura

Dear All,

I using JNDI in JBOSS for remote an object, so I cann access the object from JBOSS...

several of it is a EJB class.

but, in Tomcat 4.01 there is a jndi feature...

is this component can implement my script that run in JBoss

Frans



Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - JNDI Context



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Tomcat fails to start...

2001-12-25 Thread Sanjeev Rathore

Hi Jack,

I think you may not have installed Java on your
computer.  

Sanjeev 

--- Jack Lauman [EMAIL PROTECTED] wrote:
 Tomcat 4.x (CVS 12-25-2001) fails to start.
 
 I'm using the following configuration:
 
 RedHat 7.0 (glibc 2.2.4-18.7.0.3)
 jdk1.3.1_02
 commons-utils-1.1
 commons-collections-1.0
 commons-digester-1.1.1
 commons-dbcp-20011222
 commons-modeler-20011222
 commons-pool-20011222
 crimson-1.1.3
 xerces-1.4.4
 
 I got the following error when executing
 $CATALINA_HOME/bin/startup.sh
 and would appreciate any assistance in resolving it.
 
 Thanks,
 
 Jack
 
 End event threw exception
 java.lang.ClassNotFoundException:
 org.apache.catalina.ServerSocketFactory
   at

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:992)
   at

org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
   at

org.apache.commons.digester.SetNextRule.end(SetNextRule.java:155)
   at

org.apache.commons.digester.Digester.endElement(Digester.java:757)
   at

org.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1403)
   at

org.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator.java:1550)
   at

org.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1809)
   at

org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1182)
   at

org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
   at

org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1098)
   at

org.apache.commons.digester.Digester.parse(Digester.java:1170)
   at

org.apache.catalina.startup.Catalina.start(Catalina.java:444)
   at

org.apache.catalina.startup.Catalina.execute(Catalina.java:399)
   at

org.apache.catalina.startup.Catalina.process(Catalina.java:178)
   at java.lang.reflect.Method.invoke(Native Method)
   at

org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:246)
 Catalina.start: java.lang.ClassNotFoundException:
 org.apache.catalina.ServerSocketFactory
 java.lang.ClassNotFoundException:
 org.apache.catalina.ServerSocketFactory
   at

org.apache.commons.digester.Digester.createSAXException(Digester.java:1763)
   at

org.apache.commons.digester.Digester.createSAXException(Digester.java:1785)
   at

org.apache.commons.digester.Digester.endElement(Digester.java:760)
   at

org.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1403)
   at

org.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator.java:1550)
   at

org.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentScanner.java:1809)
   at

org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1182)
   at

org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:381)
   at

org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1098)
   at

org.apache.commons.digester.Digester.parse(Digester.java:1170)
   at

org.apache.catalina.startup.Catalina.start(Catalina.java:444)
   at

org.apache.catalina.startup.Catalina.execute(Catalina.java:399)
   at

org.apache.catalina.startup.Catalina.process(Catalina.java:178)
   at java.lang.reflect.Method.invoke(Native Method)
   at

org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:246)
 
 --
 To unsubscribe:  
 mailto:[EMAIL PROTECTED]
 For additional commands:
 mailto:[EMAIL PROTECTED]
 Troubles with the list:
 mailto:[EMAIL PROTECTED]
 


__
Do You Yahoo!?
Send your FREE holiday greetings online!
http://greetings.yahoo.com

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Re: Tomcat fails to start...



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




SSL Login, Hotmail style

2001-12-25 Thread Kok Hoor

Hi, all ...

I've been trying to write my own login algorithm that
mimics Hotmail login.

1. your browser browse to a http page, in my case, login.jsp.
2. When you click on enter to submit your login, the form is
  posted to a https page, in this case, processLogin.jsp
3. If the login is valid, the https page will redirect you to a http page,
in this case index.jsp

The problem is, in order for this to work, I need to ensure that
login.jsp has created a session for the user. If I only create a
session in processLogin, the session will not be available, when user
access index.jsp, which means:

https - http ... session created in https will not be visible in http.
http - https, session created in http will be visible in https.

Is there any workaround for this?

Regards,
Kok Hoor

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - SSL Login, Hotmail style



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: HELP - URGENT : Stability of Tomcat if compare with JBOSS or JRUN

2001-12-25 Thread Frans Thamura

This means use only Bea and Oracle.. No Websphere or etc.. right???

So, what is Resin??? is it good???

I implemented Ariba Marketplace in HK  last year, but I tried to implement
Web Logic 4.51 and still crash.. This is because the Server may be used NT
right??? But, we still use NT, and still life, but performance is not still
good enough..

FYI, there is more than 18 Sun with Oracle, and we are one of their Main
Provider that have 10% commision for the project..

The project will be EJB, but I don't know when, because I see all our
citizen are very slow, even in business... i prefer to implement
JSP/Servlet/Java Bean in this years..

and upgrade it later..


Frans

- Original Message -
From: Pae Choi [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Thursday, December 20, 2001 9:16 PM
Subject: Re: HELP - URGENT : Stability of Tomcat if compare with JBOSS or
JRUN


 No WebSphere or any other? Just BEA and Oracle? :-)


 Pae


 - Original Message -
 From: Kemp Randy-W18971 [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Sent: Thursday, December 20, 2001 6:03 AM
 Subject: RE: HELP - URGENT : Stability of Tomcat if compare with JBOSS or
 JRUN


  I have never used Tomcat for large scale projects like this, but some on
 the list have.  But I will ask a few questions.  Do you plan on using EJB
or
 just JSP and servlets?  If so, look at Resin at www.caucho.com as another
 option.  This can be hooked up to Jboss but not in the same VM.  If budget
 constraints are not an issue, given the amount of people this would serve,
I
 would seriously look at Weblogic and Oracle.
 
  -Original Message-
  From: Frans Thamura [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, December 19, 2001 8:03 PM
  To: Tomcat Users List
  Subject: HELP - URGENT : Stability of Tomcat if compare with JBOSS or
  JRUN
 
 
  Dear All,
 
  I am in a decision to buy a software or use tomcat in real production..
I
 am
  very familiar with tomcat 3.2, but never try 3.3, and tomcat 4 still in
  progress (i cannot recommended tomcat 3.3 and 4 because i still cannot
  install cocoon 1.8.2, and the cocoon list still not response)..Because
our
  content management system is run on top of cocoon 1.8.2 and cocoon 2 is
 not
  compatible. :(
 
  I want to create a portal, category: intranet, with staff more than
 10.000.
  This will become nationally project that handle more than millions
 people...
 
  The country for implementation is Indonesia. This is not a internet
 portal,
  but will be intranet portal with private B2B marketplace inside it. This
  project must run on the Net at April, and the prototype of this B2B
using
  Tomcat :)
 
  The project will serve approx half of Indonesian citizen ( I think this
is
  database problem right) and there will be instance problem there...
  Indonesia have 250 millions citizen, and there will be 120million
citizen,
  the database will include all parents and children.
 
  Current System is using Oracle Developer, ORacle Database, and SUN (more
  than 20 SUNs was used there)... and there will be more than 24 points of
  Frame Relay connection.
 
  I need you question. The category is URGENT.. if you can recommended it
  using Tomcat, I will use it.. or may be using JRUN if the answer is not
  satified enough.. sorry for this wording. -- I just want to show to the
  world that tomcat is good and qualified enough to run in real
 production --
 
  The final decision is using Java as standard programming, because the
  multiplatform of that client environment.
 
  We are JRUN partner, and I want to try tomcatany comment??
 
  Question:
  Do you have a try to use tomcat in a production with user more than 1000
  concurrent user in one time?
 
  can I use tomcat?
 
  or I must buy a JRUN??? or JBOSS + Tomcat?
 
  Because with this business case, i think tomcat is enough, because the
  project is look like data warehousing...
 
  We are studying Weblogic, and has contact Weblogic Singapore.. but I
still
  interest with tomcat or may be JBoss+tomcat..
 
 
  Thanks
 
  Frans Thamura
  [EMAIL PROTECTED]
  CTO Adelva.com
  Jakarta
  Indonesia
 
 
 
  _
  Do You Yahoo!?
  Get your free @yahoo.com address at http://mail.yahoo.com
 
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]
 


 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Re: HELP - URGENT : Stability of Tomcat if compare with JBOSS or JRUN



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




HELP - PWS/IIS to Tomcat redirect

2001-12-25 Thread Rajesh Kulkarni

Hi,

I have TOMCAT-4.0  PWS for Windows-95 installed on my machine.
I wish to redirect Tomcat requests (servlet) through PWS. Where can I find
Redirector plug-in for the same?

Thanks

Rajesh

*
Disclaimer

This message (including any attachments) contains 
confidential information intended for a specific 
individual and purpose, and is protected by law. 
If you are not the intended recipient, you should 
delete this message and are hereby notified that 
any disclosure, copying, or distribution of this
message, or the taking of any action based on it, 
is strictly prohibited.

*
Visit us at http://www.mahindrabt.com

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Delivery failure - Recipient unknown

2001-12-25 Thread lists

Delivery failure - Recipient unknown

To - [EMAIL PROTECTED]

From - [EMAIL PROTECTED]
Subject - Delivery failure - Recipient unknown



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]