Re: someone....need help!!!!....

2002-04-09 Thread Giorgio Ponza

Sometimes happens also to me.
My solution is to empty the folder /tomcat/work
so Tomcat must recompile it.
But i think some gurus here have a better solution.
Giorgio

- Original Message - 
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 5:28 PM
Subject: someoneneed help


> hai,
> I have just started using tomcat to deploy some
> webapps...the problem:I create the webapps for the
> first time and deploy them,it saves the changes and
> runs properly..but later "changes" in the JSP i am
> makin are not reflected in the outputso if i run
> the program for the first time then it shows the
> changes but later after i make some changes and run it
> the second time,it doesnt reflect those changesi
> dont undertsand what the problem issomeone plz
> help...!!!
>  thanks 
>   ajith
> 
> __
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.yahoo.com/
> 
> --
> To unsubscribe:   
> For additional commands: 
> Troubles with the list: 
> 


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




RE: someone....need help!!!!....

2002-04-09 Thread Barney Hamish

Try touching the JSPs before you run them to make sure that the timestamp is
changed so tomcat knows to re-compile the JSP.

-Original Message-
From: Giorgio Ponza [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 5:37 PM
To: Tomcat Users List
Subject: Re: someoneneed help


Sometimes happens also to me.
My solution is to empty the folder /tomcat/work
so Tomcat must recompile it.
But i think some gurus here have a better solution.
Giorgio

- Original Message - 
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 5:28 PM
Subject: someoneneed help


> hai,
> I have just started using tomcat to deploy some
> webapps...the problem:I create the webapps for the
> first time and deploy them,it saves the changes and
> runs properly..but later "changes" in the JSP i am
> makin are not reflected in the outputso if i run
> the program for the first time then it shows the
> changes but later after i make some changes and run it
> the second time,it doesnt reflect those changesi
> dont undertsand what the problem issomeone plz
> help...!!!
>  thanks 
>   ajith
> 
> __
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.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]>

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




RE: someone....need help!!!!....

2002-04-09 Thread Sefton, Adam

I've only been using TC for a couple of days, so I might be wrong, but:

I found that you need to set server.xml so it reloads the pages:

in server.xml, before your first , place:



this will cause all your contexts to reload automatically without having to use the 
manager application.  This works for my servlets, not tried it with JSPs yet.

Once you've added the line to server.xml, you'll also need to restart the tomcat 
server to take into account the change to the xml file, but then you should be ok.

Does this help?

-Original Message-
From: Barney Hamish [mailto:[EMAIL PROTECTED]]
Sent: 09 April 2002 16:44
To: 'Tomcat Users List'
Subject: RE: someoneneed help


Try touching the JSPs before you run them to make sure that the timestamp is
changed so tomcat knows to re-compile the JSP.

-Original Message-
From: Giorgio Ponza [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 5:37 PM
To: Tomcat Users List
Subject: Re: someoneneed help


Sometimes happens also to me.
My solution is to empty the folder /tomcat/work
so Tomcat must recompile it.
But i think some gurus here have a better solution.
Giorgio

- Original Message - 
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 5:28 PM
Subject: someoneneed help


> hai,
> I have just started using tomcat to deploy some
> webapps...the problem:I create the webapps for the
> first time and deploy them,it saves the changes and
> runs properly..but later "changes" in the JSP i am
> makin are not reflected in the outputso if i run
> the program for the first time then it shows the
> changes but later after i make some changes and run it
> the second time,it doesnt reflect those changesi
> dont undertsand what the problem issomeone plz
> help...!!!
>  thanks 
>   ajith
> 
> __
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.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]>

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


**
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:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>




Re: someone....need help!!!!....

2002-04-09 Thread Dominic Parry

This is ok during development but is bad for performance. Once development
is done you should really set reloadable=false.

The manager works fine, I find running an app which precompiled the jsp
helps too.

Cheers

Dominic Parry
B.Sc. (Computer Science, Information Systems)
B.Sc Hons Computer Science
M.Sc. I Computer Science
Rhodes University
- Original Message -
From: "Sefton, Adam" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 5:47 PM
Subject: RE: someoneneed help


> I've only been using TC for a couple of days, so I might be wrong, but:
>
> I found that you need to set server.xml so it reloads the pages:
>
> in server.xml, before your first , place:
>
> 
>
> this will cause all your contexts to reload automatically without having
to use the manager application.  This works for my servlets, not tried it
with JSPs yet.
>
> Once you've added the line to server.xml, you'll also need to restart the
tomcat server to take into account the change to the xml file, but then you
should be ok.
>
> Does this help?
>
> -Original Message-
> From: Barney Hamish [mailto:[EMAIL PROTECTED]]
> Sent: 09 April 2002 16:44
> To: 'Tomcat Users List'
> Subject: RE: someoneneed help
>
>
> Try touching the JSPs before you run them to make sure that the timestamp
is
> changed so tomcat knows to re-compile the JSP.
>
> -Original Message-----
> From: Giorgio Ponza [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 09, 2002 5:37 PM
> To: Tomcat Users List
> Subject: Re: someoneneed help
>
>
> Sometimes happens also to me.
> My solution is to empty the folder /tomcat/work
> so Tomcat must recompile it.
> But i think some gurus here have a better solution.
> Giorgio
>
> - Original Message -
> From: "ajith kondapalli" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 09, 2002 5:28 PM
> Subject: someoneneed help
>
>
> > hai,
> > I have just started using tomcat to deploy some
> > webapps...the problem:I create the webapps for the
> > first time and deploy them,it saves the changes and
> > runs properly..but later "changes" in the JSP i am
> > makin are not reflected in the outputso if i run
> > the program for the first time then it shows the
> > changes but later after i make some changes and run it
> > the second time,it doesnt reflect those changesi
> > dont undertsand what the problem issomeone plz
> > help...!!!
> >  thanks
> >   ajith
> >
> > __
> > Do You Yahoo!?
> > Yahoo! Tax Center - online filing with TurboTax
> > http://taxes.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]>
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
>
> **
> 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:   <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: someone....need help!!!!....

2002-04-09 Thread Ricky Leung

I think this is the default behavior.  However, it only reloads servlets and
jsps and not the beans because when I was debugging them, after I deployed,
TC didn't take the changes and I wasted a lot of wondering what is wrong
until I restarted it and everything took into effect.


-Original Message-
From: Sefton, Adam [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 11:47 AM
To: 'Tomcat Users List'
Subject: RE: someoneneed help


I've only been using TC for a couple of days, so I might be wrong, but:

I found that you need to set server.xml so it reloads the pages:

in server.xml, before your first , place:



this will cause all your contexts to reload automatically without having to
use the manager application.  This works for my servlets, not tried it with
JSPs yet.

Once you've added the line to server.xml, you'll also need to restart the
tomcat server to take into account the change to the xml file, but then you
should be ok.

Does this help?

-Original Message-
From: Barney Hamish [mailto:[EMAIL PROTECTED]]
Sent: 09 April 2002 16:44
To: 'Tomcat Users List'
Subject: RE: someoneneed help


Try touching the JSPs before you run them to make sure that the timestamp is
changed so tomcat knows to re-compile the JSP.

-Original Message-
From: Giorgio Ponza [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 09, 2002 5:37 PM
To: Tomcat Users List
Subject: Re: someoneneed help


Sometimes happens also to me.
My solution is to empty the folder /tomcat/work
so Tomcat must recompile it.
But i think some gurus here have a better solution.
Giorgio

- Original Message -
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 5:28 PM
Subject: someoneneed help


> hai,
> I have just started using tomcat to deploy some
> webapps...the problem:I create the webapps for the
> first time and deploy them,it saves the changes and
> runs properly..but later "changes" in the JSP i am
> makin are not reflected in the outputso if i run
> the program for the first time then it shows the
> changes but later after i make some changes and run it
> the second time,it doesnt reflect those changesi
> dont undertsand what the problem issomeone plz
> help...!!!
>  thanks
>   ajith
>
> __
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.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]>

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


**
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:   <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: someone....need help!!!!....

2002-04-09 Thread ajith kondapalli

hai,
I have tried stoppin the server and restarting it
agin..but of no use...i also renamed the file(another
name) and compiled the JSP but it didnt work.but
when i remove the JSP file in /tomcat/work i get an
error sayin that there is no file
   ajith
--- Giorgio Ponza <[EMAIL PROTECTED]> wrote:
> Sometimes happens also to me.
> My solution is to empty the folder /tomcat/work
> so Tomcat must recompile it.
> But i think some gurus here have a better solution.
> Giorgio
> 
> - Original Message - 
> From: "ajith kondapalli" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 09, 2002 5:28 PM
> Subject: someoneneed help
> 
> 
> > hai,
> > I have just started using tomcat to deploy
> some
> > webapps...the problem:I create the webapps for the
> > first time and deploy them,it saves the changes
> and
> > runs properly..but later "changes" in the JSP i am
> > makin are not reflected in the outputso if i
> run
> > the program for the first time then it shows the
> > changes but later after i make some changes and
> run it
> > the second time,it doesnt reflect those
> changesi
> > dont undertsand what the problem issomeone plz
> > help...!!!
> >  thanks 
> >   ajith
> > 
> > __
> > Do You Yahoo!?
> > Yahoo! Tax Center - online filing with TurboTax
> > http://taxes.yahoo.com/
> > 
> > --
> > To unsubscribe:  
> 
> > For additional commands:
> 
> > Troubles with the list:
> 
> > 
> 
> 
> --
> To unsubscribe:  
> 
> For additional commands:
> 
> Troubles with the list:
> 
> 


__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

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




Re: someone....need help!!!!....

2002-04-09 Thread hemant

Hi

2 Options:

1>>Search for the Work Folder under tomcat. Check for a folder that has the
same name as Tomcat. Delete the .java and JSP file of the page you want to
test.
2>>Open the JSp you want to test, hit enter somewhere in between the lines.
This way you can force a re-compile on the JSP.

possible silly mistake>> Make sure that you are changing the right JSP in
the right directory.(Especially when you maintain copies, silly mistakes do
happen.)


later
hemant


- Original Message -
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 11:28 AM
Subject: someoneneed help


> hai,
> I have just started using tomcat to deploy some
> webapps...the problem:I create the webapps for the
> first time and deploy them,it saves the changes and
> runs properly..but later "changes" in the JSP i am
> makin are not reflected in the outputso if i run
> the program for the first time then it shows the
> changes but later after i make some changes and run it
> the second time,it doesnt reflect those changesi
> dont undertsand what the problem issomeone plz
> help...!!!
>  thanks
>   ajith
>
> __
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.yahoo.com/
>
> --
> To unsubscribe:   
> For additional commands: 
> Troubles with the list: 


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


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




RE: someone....need help!!!!....

2002-04-09 Thread Sean LeBlanc

I'm not sure, but it sounds like what happens to me when I have one jsp included by 
another,
and the jsp doing the including has not changed. I find that in this case the new 
included
jsp is not used. Try touching the including ("parent") jsp file if this is the case.


> -Original Message-
> From: ajith kondapalli [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 09, 2002 10:00 AM
> To: Tomcat Users List
> Subject: Re: someoneneed help
> 
> 
> hai,
> I have tried stoppin the server and restarting it
> agin..but of no use...i also renamed the file(another
> name) and compiled the JSP but it didnt work.but
> when i remove the JSP file in /tomcat/work i get an
> error sayin that there is no file
>ajith
> --- Giorgio Ponza <[EMAIL PROTECTED]> wrote:
> > Sometimes happens also to me.
> > My solution is to empty the folder /tomcat/work
> > so Tomcat must recompile it.
> > But i think some gurus here have a better solution.
> > Giorgio
> > 
> > - Original Message - 
> > From: "ajith kondapalli" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 09, 2002 5:28 PM
> > Subject: someoneneed help
> > 
> > 
> > > hai,
> > > I have just started using tomcat to deploy
> > some
> > > webapps...the problem:I create the webapps for the
> > > first time and deploy them,it saves the changes
> > and
> > > runs properly..but later "changes" in the JSP i am
> > > makin are not reflected in the outputso if i
> > run
> > > the program for the first time then it shows the
> > > changes but later after i make some changes and
> > run it
> > > the second time,it doesnt reflect those
> > changesi
> > > dont undertsand what the problem issomeone plz
> > > help...!!!
> > >  thanks 
> > >   ajith
> > > 
> > > __
> > > Do You Yahoo!?
> > > Yahoo! Tax Center - online filing with TurboTax
> > > http://taxes.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!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.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]>




Re: someone....need help!!!!....

2002-04-09 Thread hemant

Good POint Sean

Yep, I think this could be the case.

If Jsp1 is included in Jsp2, then any changes to JSP1 wont be visible if
JSP2 is not changed.

later
hemant


- Original Message -
From: "Sean LeBlanc" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 3:47 PM
Subject: RE: someoneneed help


> I'm not sure, but it sounds like what happens to me when I have one jsp
included by another,
> and the jsp doing the including has not changed. I find that in this case
the new included
> jsp is not used. Try touching the including ("parent") jsp file if this is
the case.
>
>
> > -Original Message-
> > From: ajith kondapalli [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, April 09, 2002 10:00 AM
> > To: Tomcat Users List
> > Subject: Re: someoneneed help
> >
> >
> > hai,
> > I have tried stoppin the server and restarting it
> > agin..but of no use...i also renamed the file(another
> > name) and compiled the JSP but it didnt work.but
> > when i remove the JSP file in /tomcat/work i get an
> > error sayin that there is no file
> >ajith
> > --- Giorgio Ponza <[EMAIL PROTECTED]> wrote:
> > > Sometimes happens also to me.
> > > My solution is to empty the folder /tomcat/work
> > > so Tomcat must recompile it.
> > > But i think some gurus here have a better solution.
> > > Giorgio
> > >
> > > - Original Message -
> > > From: "ajith kondapalli" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Tuesday, April 09, 2002 5:28 PM
> > > Subject: someoneneed help
> > >
> > >
> > > > hai,
> > > > I have just started using tomcat to deploy
> > > some
> > > > webapps...the problem:I create the webapps for the
> > > > first time and deploy them,it saves the changes
> > > and
> > > > runs properly..but later "changes" in the JSP i am
> > > > makin are not reflected in the outputso if i
> > > run
> > > > the program for the first time then it shows the
> > > > changes but later after i make some changes and
> > > run it
> > > > the second time,it doesnt reflect those
> > > changesi
> > > > dont undertsand what the problem issomeone plz
> > > > help...!!!
> > > >  thanks
> > > >   ajith
> > > >
> > > > __
> > > > Do You Yahoo!?
> > > > Yahoo! Tax Center - online filing with TurboTax
> > > > http://taxes.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!?
> > Yahoo! Tax Center - online filing with TurboTax
> > http://taxes.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]>




Re: someone....need help!!!!....

2002-04-09 Thread ajith kondapalli

hai,
This is really the case for me...i have a parent
JSP called dbquery.jsp which calls a child jsp
addproc.jsp(addproc.jsp is invoked by the "submit"
botton)...so if i run as
http://localhost:8080/webapps/work...the changes i am
making in addproc.jsp are not being reflectedcan u
guys please elaborate on how to rectify this
   thanking u
   Ajith 
--- hemant <[EMAIL PROTECTED]> wrote:
> Good POint Sean
> 
> Yep, I think this could be the case.
> 
> If Jsp1 is included in Jsp2, then any changes to
> JSP1 wont be visible if
> JSP2 is not changed.
> 
> later
> hemant
> 
> 
> - Original Message -
> From: "Sean LeBlanc" <[EMAIL PROTECTED]>
> To: "'Tomcat Users List'"
> <[EMAIL PROTECTED]>
> Sent: Tuesday, April 09, 2002 3:47 PM
> Subject: RE: someoneneed help
> 
> 
> > I'm not sure, but it sounds like what happens to
> me when I have one jsp
> included by another,
> > and the jsp doing the including has not changed. I
> find that in this case
> the new included
> > jsp is not used. Try touching the including
> ("parent") jsp file if this is
> the case.
> >
> >
> > > -----Original Message-
> > > From: ajith kondapalli
> [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 09, 2002 10:00 AM
> > > To: Tomcat Users List
> > > Subject: Re: someoneneed help
> > >
> > >
> > > hai,
> > > I have tried stoppin the server and
> restarting it
> > > agin..but of no use...i also renamed the
> file(another
> > > name) and compiled the JSP but it didnt
> work.but
> > > when i remove the JSP file in /tomcat/work i get
> an
> > > error sayin that there is no file
> > >ajith
> > > --- Giorgio Ponza <[EMAIL PROTECTED]> wrote:
> > > > Sometimes happens also to me.
> > > > My solution is to empty the folder
> /tomcat/work
> > > > so Tomcat must recompile it.
> > > > But i think some gurus here have a better
> solution.
> > > > Giorgio
> > > >
> > > > - Original Message -
> > > > From: "ajith kondapalli"
> <[EMAIL PROTECTED]>
> > > > To: <[EMAIL PROTECTED]>
> > > > Sent: Tuesday, April 09, 2002 5:28 PM
> > > > Subject: someoneneed help
> > > >
> > > >
> > > > > hai,
> > > > > I have just started using tomcat to
> deploy
> > > > some
> > > > > webapps...the problem:I create the webapps
> for the
> > > > > first time and deploy them,it saves the
> changes
> > > > and
> > > > > runs properly..but later "changes" in the
> JSP i am
> > > > > makin are not reflected in the outputso
> if i
> > > > run
> > > > > the program for the first time then it shows
> the
> > > > > changes but later after i make some changes
> and
> > > > run it
> > > > > the second time,it doesnt reflect those
> > > > changesi
> > > > > dont undertsand what the problem
> issomeone plz
> > > > > help...!!!
> > > > >  thanks
> > > > >   ajith
> > > > >
> > > > >
> __
> > > > > Do You Yahoo!?
> > > > > Yahoo! Tax Center - online filing with
> TurboTax
> > > > > http://taxes.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!?
> > > Yahoo! Tax Center - online filing with TurboTax
> > > http://taxes.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]>
> 


__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

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




Re: someone....need help!!!!....

2002-04-09 Thread hemant

Ok

I think its different from "jsp inclusion case" but let me clarify

Here is your case
dbquery.jsp -submit on dbquery.jsp> addproc.jsp

Here is what Sean suggested

((jsp1) jsp2) (here there is no question of one invoking the other.)

 If JSP1 changes, JSP2 also has to change because  jsp2 includes jsp1 .

If the above description is correct, then we are talking 2 different
scenarios. In the first scenario changes in 2 JSP's can be viewed
independent of each other.

If you make changes to addproc.jsp and still dont see it, then check the
JSP. I wonder if you have some kind of scriptlet/logic tag that has to
evaluate to something for your changes to kick off? or could it be that your
changes are throwing an exception, you are catching them in the scriptlet
and doing nothing with it?

If you have an IDE such as Visual Age, switch the JSP debugger on and debug
the part where u expect a change.

Regards
hemant






- Original Message -
From: "ajith kondapalli" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Tuesday, April 09, 2002 7:02 PM
Subject: Re: someoneneed help


> hai,
> This is really the case for me...i have a parent
> JSP called dbquery.jsp which calls a child jsp
> addproc.jsp(addproc.jsp is invoked by the "submit"
> botton)...so if i run as
> http://localhost:8080/webapps/work...the changes i am
> making in addproc.jsp are not being reflectedcan u
> guys please elaborate on how to rectify this
>thanking u
>Ajith
> --- hemant <[EMAIL PROTECTED]> wrote:
> > Good POint Sean
> >
> > Yep, I think this could be the case.
> >
> > If Jsp1 is included in Jsp2, then any changes to
> > JSP1 wont be visible if
> > JSP2 is not changed.
> >
> > later
> > hemant
> >
> >
> > - Original Message -----
> > From: "Sean LeBlanc" <[EMAIL PROTECTED]>
> > To: "'Tomcat Users List'"
> > <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 09, 2002 3:47 PM
> > Subject: RE: someoneneed help
> >
> >
> > > I'm not sure, but it sounds like what happens to
> > me when I have one jsp
> > included by another,
> > > and the jsp doing the including has not changed. I
> > find that in this case
> > the new included
> > > jsp is not used. Try touching the including
> > ("parent") jsp file if this is
> > the case.
> > >
> > >
> > > > -Original Message-
> > > > From: ajith kondapalli
> > [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday, April 09, 2002 10:00 AM
> > > > To: Tomcat Users List
> > > > Subject: Re: someoneneed help
> > > >
> > > >
> > > > hai,
> > > > I have tried stoppin the server and
> > restarting it
> > > > agin..but of no use...i also renamed the
> > file(another
> > > > name) and compiled the JSP but it didnt
> > work.but
> > > > when i remove the JSP file in /tomcat/work i get
> > an
> > > > error sayin that there is no file
> > > >ajith
> > > > --- Giorgio Ponza <[EMAIL PROTECTED]> wrote:
> > > > > Sometimes happens also to me.
> > > > > My solution is to empty the folder
> > /tomcat/work
> > > > > so Tomcat must recompile it.
> > > > > But i think some gurus here have a better
> > solution.
> > > > > Giorgio
> > > > >
> > > > > - Original Message -
> > > > > From: "ajith kondapalli"
> > <[EMAIL PROTECTED]>
> > > > > To: <[EMAIL PROTECTED]>
> > > > > Sent: Tuesday, April 09, 2002 5:28 PM
> > > > > Subject: someoneneed help
> > > > >
> > > > >
> > > > > > hai,
> > > > > > I have just started using tomcat to
> > deploy
> > > > > some
> > > > > > webapps...the problem:I create the webapps
> > for the
> > > > > > first time and deploy them,it saves the
> > changes
> > > > > and
> > > > > > runs properly..but later "changes" in the
> > JSP i am
> > > > > > makin are not reflected in the outputso
> > if i
> > > > > run
> > > > > > the program for the first time then