ClassCastException Error

2002-08-16 Thread Vishal Mukherjee

Hi all,

Having deployed Tomcat 4.0.4 in IIS 4.0

When I try to run a java bean program I get following error.

* testbean.jsp **

 <%@ page language="Java" import="java.sql.*"  session="true" %>
<%@ page  import="java.util.*" %>



  <%
 Connection con=null;
 out.println("enter 1");
   try
   {
   out.println("enter 2");
 //the pull is not initailized
 if(pool.getDriver()==null)
 {
   //initialize the pool
  pool.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
  pool.setURL("jdbc:odbc:oradsn");
  pool.setUsername("paytest");
  pool.setPassword("paytest");
  pool.setSize(5);
  pool.initializePool();
 }

  //get a connection from the connection pool
  con = pool.getConnection();

out.println("connection is " +con);
  //create the statement
  Statement statement1 =con.createStatement();

  }
  catch (Exception e )
 {System.out.println("CException :" + e.getMessage());
}
%>
* End Of testbean.jsp **

* ERROR  **
Apache Tomcat/4.0.4 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

java.lang.ClassCastException: examples.connectionpool.ConnectionPool
at org.apache.jsp.testbean$jsp._jspService(testbean$jsp.java:73)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase
.java:475)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:371)
at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:424)
at java.lang.Thread.run(Unknown Source)



* END OF ERROR  **


Thanks & Regards
Vishal


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




ClassCastException Error

2002-08-16 Thread Vishal Mukherjee

Hi all,

Having deployed Tomcat 4.0.4 in IIS 4.0

When I try to run a java bean program I get following error.

* testbean.jsp **

 <%@ page language="Java" import="java.sql.*"  session="true" %>
<%@ page  import="java.util.*" %>



  <%
 Connection con=null;
 out.println("enter 1");
   try
   {
   out.println("enter 2");
 //the pull is not initailized
 if(pool.getDriver()==null)
 {
   //initialize the pool
  pool.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
  pool.setURL("jdbc:odbc:oradsn");
  pool.setUsername("paytest");
  pool.setPassword("paytest");
  pool.setSize(5);
  pool.initializePool();
 }

  //get a connection from the connection pool
  con = pool.getConnection();

out.println("connection is " +con);
  //create the statement
  Statement statement1 =con.createStatement();

  }
  catch (Exception e )
 {System.out.println("CException :" + e.getMessage());
}
%>
* End Of testbean.jsp **

* ERROR  **
Apache Tomcat/4.0.4 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

java.lang.ClassCastException: examples.connectionpool.ConnectionPool
at org.apache.jsp.testbean$jsp._jspService(testbean$jsp.java:73)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase
.java:475)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:371)
at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:424)
at java.lang.Thread.run(Unknown Source)



* END OF ERROR  **


Thanks & Regards
Vishal

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




HTTP Status 500 - Internal Server Error

2002-08-16 Thread Vishal Mukherjee

Hi all,

Having deployed Tomcat 4.0.4 in IIS 4.0

When I try to run a java bean program I get following error.

* testbean.jsp **

 <%@ page language="Java" import="java.sql.*"  session="true" %>
<%@ page  import="java.util.*" %>



  <%
 Connection con=null;
 out.println("enter 1");
   try
   {
   out.println("enter 2");
 //the pull is not initailized
 if(pool.getDriver()==null)
 {
   //initialize the pool
  pool.setDriver("sun.jdbc.odbc.JdbcOdbcDriver");
  pool.setURL("jdbc:odbc:oradsn");
  pool.setUsername("paytest");
  pool.setPassword("paytest");
  pool.setSize(5);
  pool.initializePool();
 }

  //get a connection from the connection pool
  con = pool.getConnection();

out.println("connection is " +con);
  //create the statement
  Statement statement1 =con.createStatement();

  }
  catch (Exception e )
 {System.out.println("CException :" + e.getMessage());
}
%>
* End Of testbean.jsp **

* ERROR  **
Apache Tomcat/4.0.4 - HTTP Status 500 - Internal Server Error




type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error)
that prevented it from fulfilling this request.

exception

java.lang.ClassCastException: examples.connectionpool.ConnectionPool
at org.apache.jsp.testbean$jsp._jspService(testbean$jsp.java:73)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:201)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:190)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase
.java:475)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:174)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:371)
at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:424)
at java.lang.Thread.run(Unknown Source)



* END OF ERROR  **
Thanks & Regards
Vishal Mukherjee


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




Bean on Tomcat

2002-08-14 Thread Vishal Mukherjee

Hi all

Can anyone tell me how to configure beans om Tomcat 4.0.4

Thanks & Regards
Vishal Mukherjee


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




Web.xml

2002-08-13 Thread Vishal Mukherjee

Hi all

Can anyone assist me to write the web.xml in the WEB-INF directory. I have
added the context and also created directory of Jsp and servlets.


Thanks & Regards
Vishal


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: new to tomcat

2002-08-12 Thread Vishal Mukherjee

hi
Is it necessary to deploy the application under webapps directory only.
Regards
Vishal

- Original Message -
From: "Michael E. Locasto" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Monday, August 12, 2002 6:04 PM
Subject: Re: new to tomcat


Amit,

> But when i create  TESTJSP directory under
> Tomcat4.0
> - webapps
> --- TESTJSP
> ---  HelloWorld.jsp

did you restart Tomcat after you created that directory and put the jsp in
it?

You don't need a Context entry in server.xml for directories under webapps/
...
they will get loaded automagically at startup.

Regards,
Michael


>
> & try to view in browser ..
> http://localhost:8080/TESTJSP/HelloWorld.jsp
>
> it gives error saying HTTP 404 error .. requested resources are not
> available..
> Can u tell me what type of error is it?
>
> regards
>
> Amit Luktuke
>
>
>
> - Original Message -
> From: "Ben Walding" <[EMAIL PROTECTED]>
> To: "Tomcat Users List" <[EMAIL PROTECTED]>
> Sent: Saturday, August 10, 2002 1:40 PM
> Subject: Re: new to tomcat
>
>
> > Possibly :
> > You should have called the dir webapps
> >
> > not webaaps
> >
> > Although this is probably just a typo in your email :)
> >
> > Amit Luktuke wrote:
> >
> > >hello
> > >
> > >I am very new to Tomcat4.0.
> > >I have successfully installed tomcat4.0 on my machine but can not able
to
> run simple HelloWorld.jsp file.
> > >
> > >I have put it in folder
> > >C:\Tomcat4.0\webaaps\TestJSP\Helloworld.jsp
> > >
> >webapps
> >
> > >
> > >On brower ..
> > >http://localhost:8080/TestJSP/Helloworld.jsp
> > >
> > >My O.S is windows 2000 professional & i have JDK1.3 installed.
> > >
> > >Can anyone help me
> > >
> > >
> > >Regards
> > >
> > >Amit Luktuke
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
> 
> > For additional commands, e-mail:
> 
> >
> >
>
>
> --
> To unsubscribe, e-mail:

> For additional commands, e-mail:



--
To unsubscribe, e-mail:

For additional commands, e-mail:


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Newbie to Tomcat on IIS

2002-08-10 Thread Vishal Mukherjee

hi all

I am new to tomcat 4.04  has installed tomcat on Win NT 4.0 with IIS. Want
to know a few things
1.Is in necessary to deploy your website under the Webapps directory.
2.My directory name is "intranet' so what will be the context. and what
all I need to change. so that JSP and Beans are configured

Please help me I am unable to grasp from the docs. if any one can give me
the step by step help I would me very grateful.

Thanks & Regards
Vishal

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Tomcat on IIS Shudown Procedure

2002-07-25 Thread Vishal Mukherjee

Hi all,

I am using tomcat 4.0.4 on IIS with Win NT 4.0 This is our intranet Server,
Tomcat is installed as service. At the day end this server automatically
shuts down with the shutdown utility of windown resourse kit.

Sometimes Next day i find problems with the server that the .JSP pages do
not run properly.

Am i closing it in a wrong way. can any one help me pls..


Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)

Life goes on within you and without you
 G. Harrison. 1943-2001
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~

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




Re: HELP HELP HELP HELP HOW to Configure Tomcat on IIS and deploy our own web Application.

2002-02-25 Thread Vishal Mukherjee

Any one to help me on this 



- Original Message -
From: "Vishal Mukherjee" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Monday, February 25, 2002 10:27 AM
Subject: HOW to Configure Tomcat on IIS and deploy our own web Application.


> Hi all,
>
> I an a NewBie to Tomcat. Having installed TC 3.2.3 on IIS 4 with the help
of
> your guidance from the link suggested below.
> http://www.verysimple.com/scripts/support_tc_iis.html
>
> All works fine. I have a web application which i have to deply to our
> intranet server, mearly copying the files in a directory and adding the
> context does not work. Can anyone help to delpoy our application where i
can
> get step-by-step methods to configure the application for JSP, Servlets
and
> beans directories  and deploy it.
>
> Thanks & Regards
> ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
> Vishal Mukherjee
> IRSSL  Vashi
> 91.022.7896004.155 (voice)  022.7896020(fax)
> "Don't take life too serious. You'll never escape it alive anyway."
> - Ebert Hubbard
> ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
>
>
> Visit Our Cement Site at http://www.indorama.co.in
>   Our Software Site at http://www.irssl.com
>
>
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>


Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



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




HOW to Configure Tomcat on IIS and deploy our own web Application.

2002-02-24 Thread Vishal Mukherjee

Hi all,

I an a NewBie to Tomcat. Having installed TC 3.2.3 on IIS 4 with the help of
your guidance from the link suggested below.
http://www.verysimple.com/scripts/support_tc_iis.html

All works fine. I have a web application which i have to deply to our
intranet server, mearly copying the files in a directory and adding the
context does not work. Can anyone help to delpoy our application where i can
get step-by-step methods to configure the application for JSP, Servlets and
beans directories  and deploy it.

Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)
"Don't take life too serious. You'll never escape it alive anyway."
- Ebert Hubbard
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~


Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



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




A simple query

2002-02-22 Thread Vishal Mukherjee

Is it necessary to keep the physical folder under the webapps directory.
I have tomcat 3.2.3 on IIS 4

Thanks & Regards




Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




A simple query

2002-02-21 Thread Vishal Mukherjee

Is it mecessary to keep the physical folder under the webapps directory.

Thanks & Regards



Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




Please Somebody help me

2002-02-20 Thread Vishal Mukherjee

Please some boby help me

I have installed tomcat 3.2.3 on IIS4 and had configured it as per the
instruction.
The JSP pages work proberly from http://localhost/examples or
http://localhost/jsp but from other mc it does not thou the html works.


I think i have not given proper context.

What Context to add in the server.xml file for this situation.

The physical directory is  E:\Indorama
The Alias used in IIS is  ircl

so my intranet site is http://indorama/ircl

the JSP pages are located in a the directory e:\indorama\indorama\jsp

so at site it reflectes as http://indorama/ircl/indorama/jsp

I want to know what will be the context to be added in server.xml

Please help me.

Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)
"Don't take life too serious. You'll never escape it alive anyway."
- Ebert Hubbard
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~


Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



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




Redirector Comtext.

2002-02-19 Thread Vishal Mukherjee

Hi all,

I have installed tomcat 3.2.3 on IIS4 and had configured it as per the
instruction. But i am facing a problem
What Context to add in the server.xml file for this situation.

The physical directory is  E:\Indorama
The Alias used in IIS is  ircl

so my intranet site is http://indorama/ircl

the JSP pages are located in a the directory e:\indorama\indorama\jsp

so at site it reflectes as http://indorama/ircl/indorama/jsp

I want to know what will be the context to be added in server.xml

Please help me.

Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)
"Don't take life too serious. You'll never escape it alive anyway."
- Ebert Hubbard
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~


Visit Our Cement Site at http://www.indorama.co.in
  Our Software Site at http://www.irssl.com 



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




Tomcat 4.0 with IIS

2002-02-03 Thread Vishal Mukherjee

Hi all,

Is Tomcat 4 compatiable with IIS 4?
Can i upgrade my Tomcat 3 on IIS 4 to Tomcat 4

Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)
"Don't take life too serious. You'll never escape it alive anyway."
- Ebert Hubbard 
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~


Visit Our Cement Site at http://cement.indorama.com
  Our Software Site at http://www.irssl.com 



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




TC with IIS

2002-01-31 Thread Vishal Mukherjee

Hi All,

I am using TC 3.3a with IIS 4.0

I have gone through many pages to configure it.
I am facing problem to configure the isapi_redirector.dll properly. in the
iis 4 the ISAPI filters screen the jakarta filter has a RED arrow next to
it.
What could be the Problem
I am using SBS 4.5 with IIS 4.0 and Tomcat 3.3a


Thanks & Regards
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
Vishal Mukherjee
IRSSL  Vashi
91.022.7896004.155 (voice)  022.7896020(fax)
"Don't take life too serious. You'll never escape it alive anyway."
- Ebert Hubbard
~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~


Visit Our Cement Site at http://cement.indorama.com
  Our Software Site at http://www.irssl.com 



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