Hi
Its based on what your server / application accepts.
Systems that need basic authentication pass authorization information in the
headers and you need to pass it in every request(the browser does this
automatically). (Other systems like NT authentication also use a similar
mechanism). In these cases you need an authorization manager

Systems that implement a form based system where you POST a
username/password usually maintain your authorization with a session id (in
turn the session id is in the url or cookie) and you dont need an
authorization manager in this case.
So assuming your application is of the latter variety, you dont need the
authorization manager

regards
deepak


On Thu, Dec 24, 2009 at 8:39 PM, Jatin Davey <[email protected]> wrote:

> Hi
>
> I was reading through the documentation about the HTTP request sampler and
> found the following statement:
>
> If the request requires server or proxy login authorization (i.e. where a
> browser would create a pop-up dialog box), you will also have to add an HTTP
> Authorization Manager <
> http://jakarta.apache.org/jmeter/usermanual/component_reference.html#HTTP_Authorization_Manager>
> Configuration Element.
>
> I have a question in this regard , If i send the authorization parameters
> in seperate HTTP Post requests do i need to use the HTTP Authorization
> managers ?
>
> Thanks
> Jatin
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to