Re: simple question on deltamanger - understanding

2005-06-09 Thread Peter Rossbach

Yes, at germany I can give you that support...

Please send me your cluster config, and os, jdk and tomcat version.

Peter

John MccLain schrieb:


My understanding is that the clustering replication DeltaManager it is
called via a setAttribute if UseDirtyFlag is set to true. So does this mean
that it only checks for a  delta on the attribute that was set, or does it
check the deltas in the entire session?

Also, does anyone know where I can get commercial Tomcat support - we are
having trouble with clustering

John McClain
Senior Software Engineer
TCS Healthcare
[EMAIL PROTECTED]
(530)886-1700x235
"Skepticism is the first step toward truth"


-
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]




 






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



Re: Simple question on HTTP return codes

2005-05-31 Thread Frank W. Zammetti

Cool, good to know there is a difference.  Thanks!

Frank

Dakota Jack wrote:

Just a small note, Frank.  You use sendError(int sc) for errors but
setStatus(int sc) for codes that are not errors.

On 5/31/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote:


Yep, I *should* have known that :)...

The sendError() method of HttpServletRequest does it.  Sorry for wasted
bandwidth!

--
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Tue, May 31, 2005 3:13 pm, Frank W. Zammetti said:


I fear I should know this answer, but...

How can one, from a servlet (or Struts Action maybe) "throw" a specific
HTTP return code?  I need to return a 403 from a servlet if certain things
are not present in the request... is it just a matter of setting a
particular header, or is there something to throw, like an exception?

Thanks all!

--
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com




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








--
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com


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



Re: Simple question on HTTP return codes

2005-05-31 Thread Dakota Jack
Just a small note, Frank.  You use sendError(int sc) for errors but
setStatus(int sc) for codes that are not errors.

On 5/31/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote:
> Yep, I *should* have known that :)...
> 
> The sendError() method of HttpServletRequest does it.  Sorry for wasted
> bandwidth!
> 
> --
> Frank W. Zammetti
> Founder and Chief Software Architect
> Omnytex Technologies
> http://www.omnytex.com
> 
> On Tue, May 31, 2005 3:13 pm, Frank W. Zammetti said:
> > I fear I should know this answer, but...
> >
> > How can one, from a servlet (or Struts Action maybe) "throw" a specific
> > HTTP return code?  I need to return a 403 from a servlet if certain things
> > are not present in the request... is it just a matter of setting a
> > particular header, or is there something to throw, like an exception?
> >
> > Thanks all!
> >
> > --
> > Frank W. Zammetti
> > Founder and Chief Software Architect
> > Omnytex Technologies
> > http://www.omnytex.com
> >
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
"You can lead a horse to water but you cannot make it float on its back."
~Dakota Jack~

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



Re: Simple question on HTTP return codes

2005-05-31 Thread Frank W. Zammetti
Yep, I *should* have known that :)...

The sendError() method of HttpServletRequest does it.  Sorry for wasted
bandwidth!

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com

On Tue, May 31, 2005 3:13 pm, Frank W. Zammetti said:
> I fear I should know this answer, but...
>
> How can one, from a servlet (or Struts Action maybe) "throw" a specific
> HTTP return code?  I need to return a 403 from a servlet if certain things
> are not present in the request... is it just a matter of setting a
> particular header, or is there something to throw, like an exception?
>
> Thanks all!
>
> --
> Frank W. Zammetti
> Founder and Chief Software Architect
> Omnytex Technologies
> http://www.omnytex.com
>


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



Re: Simple question about JSP page

2003-09-06 Thread Christopher Marsh-Bourdon

Did you commit the Add transaction prior to loading the list again?

More details would be helpful prior to making any more guesses.

Cheers 

Christopher Marsh-Bourdon
Pyplia Limited 


On 6/9/03 3:30, "engp0510" <[EMAIL PROTECTED]> wrote:

> Hi,
> Maybe it's a stupid question.
> Built jsps for adding&searching with MySQL. First listing all existing
> records in db and then adding a new one into database, then listing all
> records again. Now the list is the same as previous.
> How to solve it?
> 
> THX
> 




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



Re: Simple question about JSP page

2003-09-06 Thread Ben Souther
1st, you shouldn't cross post to more than one list at a time.

2nd, without seeing your code, we can't help you.

Have you checked the DB with another tool to verify that the record was 
actually added to the database? Are you catching SQL errors and doing 
something useful with them so you can see why your insert is failing (if it 
is)?




On Friday 05 September 2003 10:30 pm, you wrote:
> Hi,
> Maybe it's a stupid question.
> Built jsps for adding&searching with MySQL. First listing all existing
> records in db and then adding a new one into database, then listing all
> records again. Now the list is the same as previous.
> How to solve it?
>
> THX
>
>
> -
> 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: Simple question about JSP page

2003-09-06 Thread Murray
Has your SQL code issued a "commit" after adding the extra rows?  Some DBMSs
require that before the application can see new rows in the database - a
repeated query simply gets the original result until the rollback buffer is
committed.

Murray
-Original Message-
From: engp0510 [mailto:[EMAIL PROTECTED]
Sent: Friday, September 05, 2003 9:31 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Simple question about JSP page


Hi,
Maybe it's a stupid question.
Built jsps for adding&searching with MySQL. First listing all existing
records in db and then adding a new one into database, then listing all
records again. Now the list is the same as previous.
How to solve it?

THX


-
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]




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



Re: Simple question about JSP page

2003-09-06 Thread Christopher Williams
Have you verified that the record IS getting added correctly to the DB?
Have you hit the refresh button to check that your browser isn't displaying
a stale page?  If an old page is getting displayed you can turn off page
cacheing by calling:
response.setHeader("Pragma", "no-cache");

- Original Message - 
From: "engp0510" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Saturday, September 06, 2003 3:30 AM
Subject: Simple question about JSP page


> Hi,
> Maybe it's a stupid question.
> Built jsps for adding&searching with MySQL. First listing all existing
> records in db and then adding a new one into database, then listing all
> records again. Now the list is the same as previous.
> How to solve it?
>
> THX
>
>
> -
> 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: Simple question about JSP page

2003-09-05 Thread Craig Berry
Hard to tell with the information given, but my guess is that you're getting a 
browser-cached copy of the "list all" page.  Add the header voodoo to suppress caching 
and see if that helps.

-Original Message- 
From: engp0510 [mailto:[EMAIL PROTECTED] 
Sent: Fri 9/5/2003 7:30 PM 
To: [EMAIL PROTECTED]; [EMAIL PROTECTED] 
Cc: 
Subject: Simple question about JSP page



Hi,
Maybe it's a stupid question.
Built jsps for adding&searching with MySQL. First listing all existing
records in db and then adding a new one into database, then listing all
records again. Now the list is the same as previous.
How to solve it?

THX


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





RE: Simple question about JSP page

2003-09-05 Thread Shawn Zernik
you should post you tag code of the code for that page.  It can either be a
problem with your tag, or the connection pooling.  Try stopping and
restarting the app in the manager and see if that makes the updates take
affect.  If so, the issues is with re-use of objects and possible connection
pooling.

Shawn Zernik
Internetwork Consulting
www.internetworkconsulting.net

-Original Message-
From: engp0510 [mailto:[EMAIL PROTECTED]
Sent: Friday, September 05, 2003 9:31 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Simple question about JSP page


Hi,
Maybe it's a stupid question.
Built jsps for adding&searching with MySQL. First listing all existing
records in db and then adding a new one into database, then listing all
records again. Now the list is the same as previous.
How to solve it?

THX


-
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: simple question - mapping url

2003-07-17 Thread Shapira, Yoav

Howdy,
You could just put a simple index.html under the support directory which
has a meta refresh tag redirecting to /html/help/support1.html.

Tomcat doesn't have a URL rewriting engine, but the above is one
mechanism to accomplish what you want.  There are other ways, of
increasing complexity.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: James Richmond [mailto:[EMAIL PROTECTED]
>Sent: Thursday, July 17, 2003 9:31 AM
>To: [EMAIL PROTECTED]
>Subject: simple question - mapping url
>
>How do I map www.site.com/support to
www.site.com/html/help/support1.html?
>Simple question but cannot find relevant documentation.
>
>Thanks
>James
>
>_
>Use MSN Messenger to send music and pics to your friends
>http://www.msn.co.uk/messenger
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Re: simple question - mapping url

2003-07-17 Thread John Turner
What environment?

What do you mean by "map"?

Tomcat alone or Tomcat + Apache?  If Tomcat + Apache, what connector?

In Tomcat alone:



Then in /some/path/www.site.com/html/help/WEB-INF/web.xml add 
"support1.html" as a welcome file.  Then turn off directory listing.

John

On Thu, 17 Jul 2003 13:31:05 +, James Richmond 
<[EMAIL PROTECTED]> wrote:

How do I map www.site.com/support to 
www.site.com/html/help/support1.html? Simple question but cannot find 
relevant documentation.

Thanks
James
_
Use MSN Messenger to send music and pics to your friends 
http://www.msn.co.uk/messenger

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



--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Simple question on building mod_jk

2003-07-08 Thread John Turner
Run buildconf.sh.

John

On Tue, 8 Jul 2003 15:13:40 -0400 (EDT), Dumisani Nlebgwa 
<[EMAIL PROTECTED]> wrote:

hey guys i am attempting to build mod)jk from source, so I just 
downloaded
jakarta-tomcat-connectors-jk-1.2.4-src.tar.gz
I just unzipped it, and I guess the next step is doing the ./configure
command but i can't find that in the uzipped directory and the readme
doesn't seem to help me that much. Am I going about this all wrong? could
someone help me out?











*---*
*   Dumisani Nlebgwa*
*   631 216 1622*
*   You can't pronounce my name?*
*   -but its so phonetic!   *
*---*
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Simple question on Unicode URL in Tomcat

2003-06-03 Thread John Z Yang
Dear all:
I have a simple question regarding to the Unicode URL support in Tomcat.
If I pass a Unicode URL to Tomcat, can it retrieve the targeted content?

Some of our web pages are named under double byte characters. We have tried various 
ways but all have failed. If you have a work around, please let us know.

Many thanks.

John

Re: Simple question on Unicode URL in Tomcat

2003-06-02 Thread Shawn
Hiho,

try something like:

String s = URLEncoder.encode(s, enc);

s is your URL and enc is the java encoding such as "Shift_JIS".  See 
URLEncoder for more info.

Will work from java 1.4 I believe.

Had the same problem and this seems to solve it just fine.
--
Shawn
Happily using M2, Opera's revolutionary e-mail client: 
http://www.opera.com/m2/

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


RE: Simple Question

2003-03-10 Thread Shapira, Yoav

Howdy,
None of your assumptions are wrong.  Check/post your logs, as I bet they
contain some errors...

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Vy Ho [mailto:[EMAIL PROTECTED]
>Sent: Saturday, March 08, 2003 10:00 AM
>To: Tomcat Users List
>Subject: Re: Simple Question
>
>
>I tried to stop and start and reload.  All say successful, but none of
>them work.  What happen is that I have a parameter in the web.xml file.
> Each time the Tomcat start up, my application read this parameter.
The
>problem is that if I change the parameter value in the web.xml file,
and
>stop+start+reload, the web.xml file should be read again, and also, I
>assume all my JSP would call init function again.  Unless one of these
>assumption is wrong, something is wrong with the manager.  Could some
of
>you give me some insight?
>
>Thank you very much.
>
>Vy Ho
>
>
>
>Vy Ho wrote:
>
>> Thank you all for helping me out.  I still don't know what the
problem
>> is yet.  However, your advices let me know what is the outcome I
>> should expect when using the manager to restart the server.  My
>> web.xml seems to be good (since stop and restart the tomcat server
>> manually, that is not using the manager, my changes are good).  I'll
>> do some more investigating to see what is going on.  Again, thank you
>> all.
>>
>>
>>
>>
>> -
>> 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]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Re: Simple Question

2003-03-08 Thread Vy Ho
I tried to stop and start and reload.  All say successful, but none of 
them work.  What happen is that I have a parameter in the web.xml file. 
Each time the Tomcat start up, my application read this parameter.  The 
problem is that if I change the parameter value in the web.xml file, and 
stop+start+reload, the web.xml file should be read again, and also, I 
assume all my JSP would call init function again.  Unless one of these 
assumption is wrong, something is wrong with the manager.  Could some of 
you give me some insight?

Thank you very much.

Vy Ho



Vy Ho wrote:

Thank you all for helping me out.  I still don't know what the problem 
is yet.  However, your advices let me know what is the outcome I 
should expect when using the manager to restart the server.  My 
web.xml seems to be good (since stop and restart the tomcat server 
manually, that is not using the manager, my changes are good).  I'll 
do some more investigating to see what is going on.  Again, thank you 
all.



-
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: Simple Question

2003-03-05 Thread Vy Ho
Thank you all for helping me out.  I still don't know what the problem 
is yet.  However, your advices let me know what is the outcome I should 
expect when using the manager to restart the server.  My web.xml seems 
to be good (since stop and restart the tomcat server manually, that is 
not using the manager, my changes are good).  I'll do some more 
investigating to see what is going on.  Again, thank you all.



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


RE: Simple Question

2003-03-05 Thread Craig R. McClanahan


On Mon, 3 Mar 2003, Mike Jackson wrote:

> Date: Mon, 3 Mar 2003 08:58:44 -0800
> From: Mike Jackson <[EMAIL PROTECTED]>
> Reply-To: Tomcat Users List <[EMAIL PROTECTED]>
> To: Tomcat Users List <[EMAIL PROTECTED]>
> Subject: RE: Simple Question
>
> The web.xml is only read when the server is restarted.  The browser has
> nothing to do with it.
>

It is also read again if you use the Manager "stop" and "start" commands.
it's also read again if you "remove" and then "install" it.

As the original questioner noted, web.xml is *not* reread when the
"reload" command is used.  This is a performance enhancement for people
who are simply updating compiled classes -- parsing takes longer, so you
have to explicitly ask for it via one of the above techniques.

> --mikej

Craig

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



RE: Simple Question

2003-03-03 Thread Mike Jackson

>
> I have a very simple question, and if you are a bit experienced in
> tomcat, you probably would know.  I would really appreciate any links,
> hints, tips or advices.
>
> The question is this, if I change an application deployment file
> (web.xml), and then use the tomcat manager to restart the application
> (through the web), would the change in the web.xml file be used?  Is the
> restart as of the above action is the same as a restart of the tomcat
> server (application) itself (that is to stop and start the whole server)?

If you use the manager it will be re-read.  Or if you restart the server it
will be re-read.

> If the above does not work (I tried to restart, and it says restart
> successfully, but the xml file does not seem to be read), then how to I
> do this without actually restart the server?

If it doesn't work you might want to make sure you saved the changes.

> Thank you very much again for any help.
>
> VD

--mikej
-=-
mike jackson
[EMAIL PROTECTED]



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



RE: Simple Question

2003-03-03 Thread Shapira, Yoav

Howdy,

>even if u dont restart the SERVER again, the moment u open the new
browser
>the web.xml should be read again.

Not true.

The deployment descriptor is re-read only on application restart.  One
can restart the application via the manager webapp, or by restarting the
server itself.

>Are u sure that ur mapping for
>the servlets and all that stuff is right inside the web.xml ? u may
want to
>check that once more.

That's good advice.  Check the tomcat logs for any errors in parsing the
web.xml or other configuration files.

Yoav Shapira
Millennium ChemInformatics



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



RE: Simple Question

2003-03-03 Thread Mike Jackson
The web.xml is only read when the server is restarted.  The browser has
nothing to do with it.

--mikej
-=-
mike jackson
[EMAIL PROTECTED]

> -Original Message-
> From: Swapneel Dange [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 03, 2003 8:51 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Simple Question
>
>
> even if u dont restart the SERVER again, the moment u open the
> new browser
> the web.xml should be read again.
> But at time if this doens work then its better to RESTART the
> server. After
> that the new web.xml will be read for sure. Are u sure that ur
> mapping for
> the servlets and all that stuff is right inside the web.xml ? u
> may want to
> check that once more.
>
>
>
> Swapneel Dange
> 505-642-4126
> http://www.cs.nmsu.edu/~sdange
>
>
>
>
>
> >From: Vy Ho <[EMAIL PROTECTED]>
> >Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
> >To: Tomcat Users List <[EMAIL PROTECTED]>
> >Subject: Simple Question
> >Date: Sun, 02 Mar 2003 23:29:23 -0500
> >
> >
> >I have a very simple question, and if you are a bit experienced
> in tomcat,
> >you probably would know.  I would really appreciate any links,
> hints, tips
> >or advices.
> >
> >The question is this, if I change an application deployment file
> (web.xml),
> >and then use the tomcat manager to restart the application (through the
> >web), would the change in the web.xml file be used?  Is the
> restart as of
> >the above action is the same as a restart of the tomcat server
> >(application) itself (that is to stop and start the whole server)?
> >
> >If the above does not work (I tried to restart, and it says restart
> >successfully, but the xml file does not seem to be read), then
> how to I do
> >this without actually restart the server?
> >
> >Thank you very much again for any help.
> >
> >VD
> >
> >
> >-
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
>
> _
> Tired of spam? Get advanced junk mail protection with MSN 8.
> http://join.msn.com/?page=features/junkmail
>
>
> -
> 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: Simple Question

2003-03-03 Thread Swapneel Dange
even if u dont restart the SERVER again, the moment u open the new browser 
the web.xml should be read again.
But at time if this doens work then its better to RESTART the server. After 
that the new web.xml will be read for sure. Are u sure that ur mapping for 
the servlets and all that stuff is right inside the web.xml ? u may want to 
check that once more.



Swapneel Dange
505-642-4126
http://www.cs.nmsu.edu/~sdange




From: Vy Ho <[EMAIL PROTECTED]>
Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
To: Tomcat Users List <[EMAIL PROTECTED]>
Subject: Simple Question
Date: Sun, 02 Mar 2003 23:29:23 -0500
I have a very simple question, and if you are a bit experienced in tomcat, 
you probably would know.  I would really appreciate any links, hints, tips 
or advices.

The question is this, if I change an application deployment file (web.xml), 
and then use the tomcat manager to restart the application (through the 
web), would the change in the web.xml file be used?  Is the restart as of 
the above action is the same as a restart of the tomcat server 
(application) itself (that is to stop and start the whole server)?

If the above does not work (I tried to restart, and it says restart 
successfully, but the xml file does not seem to be read), then how to I do 
this without actually restart the server?

Thank you very much again for any help.

VD

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
_
Tired of spam? Get advanced junk mail protection with MSN 8. 
http://join.msn.com/?page=features/junkmail

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


RE: Simple Question - HTTP Status 404 error

2003-02-14 Thread Turner, John

You also need to map your servlet to a URL in your web.xml file.  Check the
examples web.xml file to see how.

John


-Original Message-
From: Sanjeevkumar Cherengotil
[mailto:[EMAIL PROTECTED]] 
Sent: Friday, February 14, 2003 1:47 AM
To: Tomcat Users List
Subject: Simple Question - HTTP Status 404 error



Hi All,

 I have installed tomcat-4.1.18 on my windows 2000 machine. I tried to
develop a simple application. My Jsps are workign fine. When I am forwarding
to a servlet from a JSP, its throwing 404 error. Here is what I did...

 1 . After installing the tomcat server, i added my directory structure
like
  \webapps\myapp1   &
  \webapps\myapp1\WEB-INF
  \webapps\myapp1\WEB-INF\Classes
  \webapps\myapp1\lib

 2. Added a new ServletContext in server.xml as follows
  

 3. Put my JSPs directly under
  \webapps\myapp1

 4. Added a new Servlet (LoginServlet.java) with package name
'com.myapp1' and put under
  \webapps\myapp1\WEB-INF\Classes\com\myapp1

 5. Edited my web.xml and it has only entry as follows
  

   
login
com.myapp1.LoginServlet
   

  

 6. I'm calling the servlet from my JSP as follows..

  

 Note: I tried various action properties like
  action="servlet/login" & action="servlet/com.myapp1.LoginServlet"
...etc

 This time I'm getting a 404 error. I can't find any errors in log files
too(I looked at the log files in \logs directory,.. any other
error logs are maintained?? Do I need to setup any classpath stuff to make
it work? Please help me to find out where did I go wrong.. Thanks in
advance..:)

Thanks,
Sanjeev





" - luck is what happens when preparation meets opportunity - "

Sanjeev Kumar C K
Senior Software Engineer
IT Solutions India Private Ltd
Ph : 044-28212877 / 78 , ext - 2315 .


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

---

Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 1/27/2003
 

---

Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.449 / Virus Database: 251 - Release Date: 1/27/2003
 

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




Re: : Simple Question on (Tomcat+JBoss) and Apache

2002-09-19 Thread Manoj Kithany

Thanks Stefan,

My /jboss/server/default/deploy directory has following files:
counter-service.xml
ejb-management.jar
hsqldb-service.xml
jboss-local-jdbc.rar
jboss-xa.rar
jbossmq-destinations-service.xml
jbossmq-service.xml
jca-service.xml
jms-ra.rar
jms-service.xml
jmx-ejb-adaptor.jar
jmx-ejb-connector-server.sar
jmx-html-adaptor.sar
jmx-rmi-adaptor.sar
mail-service.xml
properties-service.xml
scheduler-service.xml
tomcat4-service.jar
tomcat4-service.xml
tomcat4-service.xml.save
user-service.xml

Thanks

Manoj G. Kithany


#>From: "Stefan Groschupf" <[EMAIL PROTECTED]>
>Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]>
>To: "Tomcat Users List" <[EMAIL PROTECTED]>
>Subject: AW: Simple Question on (Tomcat+JBoss) and Apache
>Date: Fri, 20 Sep 2002 00:10:43 +0200
>
> >When I start JBOSS, is Tomcat also started or do we have to explicity 
>start
> >Ctatalina...?
>
>So far your catalina service archive is in the jboss deploy directory its
>start with jboss.
>trace the start output!
>Hth,
>Stefan


_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


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




Re: Simple Question (I hope...)

2002-04-07 Thread Erwin Ambrosch

I think your docBase should be webapps/test



Erwin

Am Freitag, 5. April 2002 18:29 schrieben Sie:
> Hi there,
>
> I'm new to Tomcat and to this list, so apologies if this question has
> already been asked (I've checked the archives and can't find an answer).
>
> I'm trying to create a new context in server.xml. My current code is:
>
> debug="0" reloadable="true" />
>
> I've also created a directory within webapps called "test", with sub
> directory WEB-INF and classes.  And within the classes folder is my test
> class file ("homepage.class").
>
> I've also created a web.xml file and placed it in the WEB-INF directory
> defining the servlet mappings for the new servlet (called "homepage"):
>
> 
>   
>   greetings
>   homepage
>   
>   
> greetings
>  /test/please
>   
>
> 
>
> Using the manager app I've successfully added a new application (called
> "test") but when I try to view the servlet, I get a 404 error ... any idea
> what I'm doing wrong?
>
> Thanks
>
> Adam Sefton
> Applications Developer
>
>
> **
> This message may contain information which is confidential or privileged.
> If you are not the intended recipient, please advise the sender immediately
> by reply e-mail and delete this message and any attachments
> without retaining a copy.
>
> **


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




Re: Simple Question (I hope...)

2002-04-05 Thread hatem zanaty


either remove the application test from the manager application and it will run .I 
does not work to create application by the server.xml and the manager application at 
the same time
  "Sefton, Adam" <[EMAIL PROTECTED]> wrote: Hi there, 

I'm new to Tomcat and to this list, so apologies if this question has already been 
asked (I've checked the archives and can't find an answer).

I'm trying to create a new context in server.xml. My current code is:

debug="0" reloadable="true" />

I've also created a directory within webapps called "test", with sub directory WEB-INF 
and classes. And within the classes folder is my test class file ("homepage.class").

I've also created a web.xml file and placed it in the WEB-INF directory defining the 
servlet mappings for the new servlet (called "homepage"):



greetings
homepage


greetings
/test/please




Using the manager app I've successfully added a new application (called "test") but 
when I try to view the servlet, I get a 404 error ... any idea what I'm doing wrong? 

Thanks

Adam Sefton
Applications Developer


**
This message may contain information which is confidential or privileged.
If you are not the intended recipient, please advise the sender immediately
by reply e-mail and delete this message and any attachments
without retaining a copy. 

**


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



-
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax


Re: Simple Question (I hope...)

2002-04-05 Thread Jeff Larsen

Could be several things.  Since some details about your setup are,
missing, please don't take offense if I state the obvious.

Are you using Tomcat standalone or with Apache? Have you successfully
gotten the Tomcat examples to work?

If your homepage.class has a 'package' directive in the source, then
you need to reference the fully qualified class name in your web.xml
and your class file needs to be in the proper package subdirectories
under WEB-INF/classes.

Check the Tomcat logs. You should see some messages that reference
your [/test] context if Tomcat is successfully deploying the context.

Add  1 to your web.xml. Restart
Tomcat and if you class is being successfully loaded you should
see "greetings: init" in the log.

If your servlet is successfully loaded, then it's a URL problem.

What URL are you using to test the servlet? According to your setup
it should be http://hostname:{port}/test/please assuming you are using
Tomcat as your webserver, otherwise the URL mapping is dependent upon
your Apache config.

I hope these ideas help... Post more details if not.

Jeff


- Original Message -
From: "Sefton, Adam" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Friday, April 05, 2002 10:29 AM
Subject: Simple Question (I hope...)


> Hi there,
>
> I'm new to Tomcat and to this list, so apologies if this question has already been 
>asked
(I've checked the archives and can't find an answer).
>
> I'm trying to create a new context in server.xml. My current code is:
>
>  debug="0" reloadable="true" />
>
> I've also created a directory within webapps called "test", with sub directory 
>WEB-INF
and classes.  And within the classes folder is my test class file ("homepage.class").
>
> I've also created a web.xml file and placed it in the WEB-INF directory defining the
servlet mappings for the new servlet (called "homepage"):
>
> 
>   
>   greetings
>   homepage
>   
>   
> greetings
>  /test/please
>   
>
> 
>
> Using the manager app I've successfully added a new application (called "test") but 
>when
I try to view the servlet, I get a 404 error ... any idea what I'm doing wrong?
>
> Thanks
>
> Adam Sefton
> Applications Developer
>
>
> **
> This message may contain information which is confidential or privileged.
> If you are not the intended recipient, please advise the sender immediately
> by reply e-mail and delete this message and any attachments
> without retaining a copy.
>
> **
>
>
> --
> To unsubscribe:   
> For additional commands: 
> Troubles with the list: 


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




Re: Simple Question

2002-03-26 Thread Toru Watanabe

Hi López,

Please note form Java2 SDK v1.4, Java starts to support IPv6.
If you use Tomcat with j2sdk v1.4, then it might work. But
it is very danger because there are only few (or no) achievement.

Regards,
Watanabe.

In the message "Simple Question"
   <[EMAIL PROTECTED]>
Gabriel López Millán <[EMAIL PROTECTED]> wrote:

   
Gabriel López> Support Tomcat IPv6?
Gabriel López> If so, support Tomcat IPv6+SSL?

Gabriel López> Thanks a lot, Gabi.

Gabriel López> -- 
Gabriel López> -
Gabriel López> Gabriel Lopez Millan - Grupo ANTS-CIRCuS
Gabriel López> Facultad de Informática
Gabriel López> Universidad de Murcia (España) Tfo: +34 968367645



Gabriel López> --
Gabriel López> To unsubscribe:   
Gabriel López> For additional commands: 
Gabriel López> Troubles with the list: 


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




RE: Simple question

2001-06-04 Thread Skidmore, Walt
Title: RE: Simple question





I know it's not Tomcat, but I was working with WebLogic, and it didn't have the capability to disable directory browsing.  So, I put in a redirect page (index.html) into each directory and that took care of it.  Kinda tedious, but necessary at times.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 03, 2001 8:08 AM
To: [EMAIL PROTECTED]
Subject: Simple question







Hi,


I know this question is posted over and over again, but still I failed to find
an answer (for Tomcat4 that is):


How can I disable directory browsing in Tomcat 4.0b3 ?


Regards,


Wilko Hische






Re: simple question

2001-04-23 Thread time out

i have found that tomcat will serve JSPs below the docbase as well...when i 
use iis and isapi_redirect.dll


At 12:24 04/23/2001 -0300, you wrote:
>No, just the parent. I mean, the one you've listed in the server.xml file 
>(docBase entry).
>
>regards.
>
>m-
>Hi,
>Im new to using to tomcat. My query is if I have a directory in 
>TOMCAT_HOME/webapps/ called games can I have other directories in the 
>games directory (for each different) and then the normal structure within 
>these sub-directories, like will tomcat build a context for each of these 
>sub-directories when I start it up.
>thanks,
>T.J


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




Re: simple question

2001-04-23 Thread Martin Mauri



No, just the parent. I mean, the one you've listed 
in the server.xml file (docBase entry).
 
regards.
 
m-


  Hi,
  Im new to using to tomcat. My query is if I have a directory in 
  TOMCAT_HOME/webapps/ called games can I have other directories in the games 
  directory (for each different) and then the normal structure within these 
  sub-directories, like will tomcat build a context for each of these 
  sub-directories when I start it up.
  thanks,
  T.J


RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights

In Tomcat 3.2.2 (I know that's the version I'm running - I think its the version of 
the source that I checked) the preference for
servlet/webApp is hardwired into the code that generates the automatic config files.

It takes no notice of anything in the server.xml file (which I think is at least a 
little unfriendly)

To have the behaviour you requested you'll have to edit those (or actually the files 
you derived from those when you first set up
Tomcat) In the case sited for PWS under Win98 it looks like you would have to modify 
the file derived from
%TOMCAT_HOME%\conf\uriworkermap.properties-auto

HTH

BTW In my example below it looks like Tomcat is serving my static content. :-(


> -Original Message-
> From: Brett Knights [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 06, 2001 10:16 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: simple question for servlet-configuration of tomcat
>
>
> > What I have to do (in the configuration files) when I want
> to start my
> > servlets with the URL:
> >
> > http://localhost/servlet/TestServlet
> >
> > and not with a WEPAPP-Directory like
> > http://localhost/example/servlet/TestServlet
> >
> > Which settings I have to do in the configuration-files and in which
> > directory I have to put my Servlets ?
> >
> > >You just have to declare a context like this:
> > > > reloadable="false" >
> > >
>
>
> I don't think this is necessarily correct in all circumstances.
>
> Try as I might I can't get any of the automatically generated
> files to reflect that I want to access my servlets at
> /webapp/servletalias
> rather than at /webapp/servlet/servletalias
>
> I did succeed in making this work with tomcat and apache by
> editing my tomcat.conf file as follows:
>
> Alias /webApp "C:/ApacheGroup/Tomcat/webapps/webApp "
> 
> Options Indexes FollowSymLinks
> 
> ApJServMount /webApp /webApp
>




Re: Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Tony LaPaso

I have a *similar* problem. None of my servlets are being reloaded using
Tomcat 4, b3. This includes the servlets in /examples context.

The only way I've been able to get servlets to reload (aside from
re-starting Tomcat) is to run /manager/reload?path=/.

Apparently servlet reloading is completely broke in T4 b2/3.



- Original Message -
From: "Joel Parramore" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 06, 2001 2:28 PM
Subject: Servlet auto-reloading under ROOT context (was RE: simple question
for servlet-configuration of tomcat)


>
> On a slightly related note: are servlets under the ROOT context
> automatically reloaded?
>
> The docs in server.xml would appear to indicate that reloadable="true" is
> the default, but there's no entry for the ROOT context in my server.xml
> file, and it appears to be inconsistent on our server with regard to
> reloading a servlet which has (definitely) changed in
> webapps/ROOT/WEB-INF/classes (i.e., Tomcat apparently reloaded the servlet
> each time the class was changed, then suddenly stopped doing so, with no
> configuration changes made).
>
> Would placing an explicit CONTEXT entry for the ROOT in the server.xml
file,
> i.e.,
>
>  path="/"
> docbase="webapps/ROOT"
> crossContext="false"
> debug="0"
> reloadable="true">
> 
>
> resolve this issue?  Has anyone else encountered a similar problem?
>
> I can supply more configuration upon request, but at least I'll note that
> the server configuration is with Apache 1.3.14 and Tomcat 3.2.1 running
> Redhat Linux 7.0 on an Intel box, JDK 1.2.2.  Tomcat, aside from slight
> changes for mod_jk operation with Apache, is unchanged from the default
> configuration.
>
> Regards,
> Joel Parramore
>
>
> > -Original Message-
> > From: Mandar Joshi [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, April 06, 2001 2:51 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: simple question for servlet-configuration of tomcat
> >
> >
> >
> > You simply need to put your stuff uner ROOT context.
> >
> >
> > - Original Message -
> > From: "TOPO graphics GmbH" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, April 06, 2001 7:19 AM
> > Subject: simple question for servlet-configuration of tomcat
> >
> >
> > > Hello,
> > >
> > > since several weeks I am testing tomcat as a Servlet Engine with great
> > > success. I use Win98 SE2 with PWS.
> > > Now I have a simple problem (I think):
> > >
> > > What I have to do (in the configuration files) when I want to start my
> > > servlets with the URL:
> > >
> > > http://localhost/servlet/TestServlet
> > >
> > > and not with a WEPAPP-Directory like
> > > http://localhost/example/servlet/TestServlet
> > >
> > > Which settings I have to do in the configuration-files and in which
> > > directory I have to put my Servlets ?
> > >
> > > Thanks a lot for your answer
> > >
> > > With best regards
> > >
> > > M. Thorand
> > >
> > > TOPO graphics
> > > Geographische Informationssysteme GmbH
> > >
> > > EMail:  [EMAIL PROTECTED]
> > >
>




Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Joel Parramore


On a slightly related note: are servlets under the ROOT context
automatically reloaded?

The docs in server.xml would appear to indicate that reloadable="true" is
the default, but there's no entry for the ROOT context in my server.xml
file, and it appears to be inconsistent on our server with regard to
reloading a servlet which has (definitely) changed in
webapps/ROOT/WEB-INF/classes (i.e., Tomcat apparently reloaded the servlet
each time the class was changed, then suddenly stopped doing so, with no
configuration changes made).

Would placing an explicit CONTEXT entry for the ROOT in the server.xml file,
i.e.,




resolve this issue?  Has anyone else encountered a similar problem?

I can supply more configuration upon request, but at least I'll note that
the server configuration is with Apache 1.3.14 and Tomcat 3.2.1 running
Redhat Linux 7.0 on an Intel box, JDK 1.2.2.  Tomcat, aside from slight
changes for mod_jk operation with Apache, is unchanged from the default
configuration.

Regards,
Joel Parramore


> -Original Message-
> From: Mandar Joshi [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 06, 2001 2:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: simple question for servlet-configuration of tomcat
>
>
>
> You simply need to put your stuff uner ROOT context.
>
>
> - Original Message -
> From: "TOPO graphics GmbH" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, April 06, 2001 7:19 AM
> Subject: simple question for servlet-configuration of tomcat
>
>
> > Hello,
> >
> > since several weeks I am testing tomcat as a Servlet Engine with great
> > success. I use Win98 SE2 with PWS.
> > Now I have a simple problem (I think):
> >
> > What I have to do (in the configuration files) when I want to start my
> > servlets with the URL:
> >
> > http://localhost/servlet/TestServlet
> >
> > and not with a WEPAPP-Directory like
> > http://localhost/example/servlet/TestServlet
> >
> > Which settings I have to do in the configuration-files and in which
> > directory I have to put my Servlets ?
> >
> > Thanks a lot for your answer
> >
> > With best regards
> >
> > M. Thorand
> >
> > TOPO graphics
> > Geographische Informationssysteme GmbH
> >
> > EMail:  [EMAIL PROTECTED]
> >




Re: simple question for servlet-configuration of tomcat

2001-04-06 Thread Mandar Joshi


You simply need to put your stuff uner ROOT context.


- Original Message - 
From: "TOPO graphics GmbH" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 06, 2001 7:19 AM
Subject: simple question for servlet-configuration of tomcat


> Hello,
> 
> since several weeks I am testing tomcat as a Servlet Engine with great
> success. I use Win98 SE2 with PWS.
> Now I have a simple problem (I think):
> 
> What I have to do (in the configuration files) when I want to start my
> servlets with the URL:
> 
> http://localhost/servlet/TestServlet
> 
> and not with a WEPAPP-Directory like
> http://localhost/example/servlet/TestServlet
> 
> Which settings I have to do in the configuration-files and in which
> directory I have to put my Servlets ?
> 
> Thanks a lot for your answer
> 
> With best regards
> 
> M. Thorand
> 
> TOPO graphics
> Geographische Informationssysteme GmbH
> 
> EMail:  [EMAIL PROTECTED]
> 




RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights

> What I have to do (in the configuration files) when I want to start my
> servlets with the URL:
>
> http://localhost/servlet/TestServlet
>
> and not with a WEPAPP-Directory like
> http://localhost/example/servlet/TestServlet
>
> Which settings I have to do in the configuration-files and in which
> directory I have to put my Servlets ?
>
> >You just have to declare a context like this:
> > reloadable="false" >
> >


I don't think this is necessarily correct in all circumstances.

Try as I might I can't get any of the automatically generated files to reflect that I 
want to access my servlets at
/webapp/servletalias
rather than at /webapp/servlet/servletalias

I did succeed in making this work with tomcat and apache by editing my tomcat.conf 
file as follows:

Alias /webApp "C:/ApacheGroup/Tomcat/webapps/webApp "

Options Indexes FollowSymLinks

ApJServMount /webApp /webApp




RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Benoît Jacquemont

Please look at the answers after posting a question. I have already answered
to your question yesterday:

> Hi,

>You just have to declare a context like this:
>
>
>in your TOMCAT_HOME/conf/server.xml. You should also remove the ROOT
context and the ROOT directory that is in the webapp
>directory.
>Anyway, in real world, I mean in production environment, you should remove
all the contexts that don't deal with your app,
>and all the subdirectory within the /webapp.

>Benoît

> Hello,
>
> since several weeks I am testing tomcat as a Servlet Engine with great
> success. I use Win98 SE2 with PWS.
> Now I have a simple problem (I think):
>
> What I have to do (in the configuration files) when I want to start my
> servlets with the URL:
>
> http://localhost/servlet/TestServlet
>
> and not with a WEPAPP-Directory like
> http://localhost/example/servlet/TestServlet
>
> Which settings I have to do in the configuration-files and in which
> directory I have to put my Servlets ?
>
> Thanks a lot for your answer
>
> With best regards
>
> M. Thorand
>
> TOPO graphics
> Geographische Informationssysteme GmbH
>
> EMail:  [EMAIL PROTECTED]
>




RE: Simple Question

2001-03-20 Thread Darrell Porter

In a multiuser environment, it is much easier to implement DNS (utilizing
BIND) than managing hosts files.


-Original Message-
From: Amir Nuri [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 20, 2001 3:07 AM
To: Tomcat-User
Subject: Simple Question


Do i need DNS in order to use Virtul Hosts ?



Re: Simple Question

2001-03-20 Thread Valeriy Molyakov

No, but then all your users should have appropriate records in files hosts


- Original Message - 
From: "Amir Nuri" <[EMAIL PROTECTED]>
To: "Tomcat-User" <[EMAIL PROTECTED]>
Sent: Tuesday, March 20, 2001 1:06 PM
Subject: Simple Question


> Do i need DNS in order to use Virtul Hosts ?




Re: Simple Question

2001-03-20 Thread Kenneth Westelinck

Amir,

Yes, unless you configure it in the hosts file:
- on unix: /etc/hosts
- on Windoze: c:\winnt\system32\drivers\etc\hosts


regards,

Kenneth Westelinck

>From: "Amir Nuri" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "Tomcat-User" <[EMAIL PROTECTED]>
>Subject: Simple Question
>Date: Tue, 20 Mar 2001 13:06:40 +0200
>
>Do i need DNS in order to use Virtul Hosts ?

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: simple question about servlet development

2001-02-05 Thread Robuschi \(Delfi\)

I developed some servlets and I didn't restarted Tomcat each time. I thing
you can simply put the new servlets over the oldest ones and then try
them.

Hope this helps.

Robuschi Roberto  Delfi srl
P.za Ravenet 1/b - 43100 PARMA
Tel. 0521/932474 Fax 0521/989045
[EMAIL PROTECTED] --- http://www.delfi.it


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