intranet application

2002-12-27 Thread # Lalit Nagpal #
hi guys ...

somebody please tell me how to write a intranet
application using tomcat ... how to configure tomcat
for an intranet application 

thanx in advance

Lalit Nagpal

=
# Lalit Nagpal #

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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





Re: intranet application

2002-12-27 Thread Hanasaki JiJi
Tomcat doesnt care if its intranet or internet.  It is all TCP/IP to 
Tomcat.  Some comibination of the following separates a internet from 
intranet: firewall, NAT(Network Address Translation), Proxies ...

Tomcat supports CGI and Servlet based applications.  I would highly 
suggest going the servlet approach.  CGI's often spawn at least one OS 
process for each HTTP request.  This reduces performance alot.  How do 
write servlets?  Check the below references and learn OO (Object 
Oriented) don't just start coding.  Its a sure way to find trouble later.
http://java.sun.com/
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html
http://java.sun.com/j2ee/tutorial/1_3-fcs/
	read the web technology tutorials

# Lalit Nagpal # wrote:
hi guys ...

somebody please tell me how to write a intranet
application using tomcat ... how to configure tomcat
for an intranet application 

thanx in advance

Lalit Nagpal

=
# Lalit Nagpal #

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



--
=
= Management is doing things right; leadership is doing the =
=   right things.- Peter Drucker=
=___=
= http://www.sun.com/service/sunps/jdc/javacenter.pdf   =
=  www.sun.com | www.javasoft.com | http://wwws.sun.com/sunone  =
=


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




intranet application - plz help

2002-07-12 Thread # Lalit Nagpal #


how to run an application on an intranet. I want my
servlets to be accessible only for the comps on my
LAN. I am using tomcat 4 - 80 port is for our website
now do i have to use some other port for intranet
application - if yes how to configure tomcat to listen
to two ports.

Thanks is advance
Lalit

__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com

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




Need help - intranet application

2002-07-12 Thread # Lalit Nagpal #



how to run an application on an intranet. I want my
servlets to be accessible only for the comps on my
LAN. I am using tomcat 4 - 80 port is for our website
now do i have to use some other port for intranet
application - if yes how to configure tomcat to listen
to two ports.

Thanks in advance


=
# Lalit Nagpal #

__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com

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




Re: intranet application - plz help

2002-07-12 Thread Christoph Fischer

make an additional conncetor in server.xml:

!-- Define a non-SSL HTTP/1.1 Connector on port 8080 --
Connector className=org.apache.catalina.connector.http.HttpConnector
   port=80 minProcessors=5 maxProcessors=75
   enableLookups=false redirectPort=8443
   acceptCount=10 debug=0 connectionTimeout=6/
Connector className=org.apache.catalina.connector.http.HttpConnector
   port=8085 minProcessors=5 maxProcessors=75
   enableLookups=false redirectPort=8443
   acceptCount=10 debug=0 connectionTimeout=6/

Tomcat now listens on port 80 and 8085.

You can also rederict using the virtual-host:

  !-- Define the default virtual host --
  Host name=localhost debug=0 appBase=webapps unpackWARs=false
  Host name=Intranet-IP debug=0 appBase=webapps/intranet 
unpackWARs=false

Hopes it helps
Chris

# Lalit Nagpal # wrote:

how to run an application on an intranet. I want my
servlets to be accessible only for the comps on my
LAN. I am using tomcat 4 - 80 port is for our website
now do i have to use some other port for intranet
application - if yes how to configure tomcat to listen
to two ports.

Thanks is advance
Lalit

__
Do You Yahoo!?
Sign up for SBC Yahoo! Dial - First Month Free
http://sbc.yahoo.com

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

  



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