Re: html servlet flow



On Thu, 15 Jun 2006 21:21:22 -0400, Jeff Kish <kishjjrjj@xxxxxxxxxxx>
wrote:

Hi.

I'm looking at the lessons in:

http://pdf.moreservlets.com/More-Servlets-and-JSP-Chapter-02.pdf

<snip>

my question is.. what exactly is going on internally?
Specifically, I enter in my browser:

http://ThreeParamsForm.html

<snip>
Then the act of hitting enter or clicking on the submit button causes
the Tomcat to put the param1,param2,param3 values in session level
data (I guess?) and does a 'get', causing the doget method to be
invoked, which has access to the (session?) level param1,2,3
variables.

Is this correct, or am I missing something?.
Are these session level variables, or something else?
If they are session level, then if there was another submit button
with yet another servlet, would that servlet have access to the same
data?


<snip>

Sorry for the bandwidth waste, I just figured out the params are from
the URL.

I'm still trying to get my head around what is going on between the
browser and Tomcat.

Still appreciate any elucidation, still studying.

Thanks
.