This is a group for folks designing and programming embedded systems using the Rabbit Semiconductor C-programmable microcontroller. Rabbit Semi is a spin-off from Z-World who makes a variety of embedded modules and tools. This group is not affiliated with either Rabbit or Z-World, but is a user forum for sharing ideas, asking questions,
flaunting knowledge, and other typical user group stuff. The Rabbit is a powerful uC, supported by a full-featured C-compiler.
HTTP Authentication - Omar - Jun 23 14:41:40 2008
Hello
I have an application that use Rabbit Web with autentication in a
directory.
sspec_addrule("/iec", "Area Reservada", admin, admin, SERVER_ANY,
SERVER_AUTH_BASIC, NULL);
userid = sauth_adduser("params","pwdparams",SERVER_ANY);
sauth_setusermask(userid, admin, NULL);
In this case, my protected directoy is "/iec"
When I need access to ".../iec/fparams.zhtml" for example, the
explorer put a login windows, then I type params and pwdparams, and I
work with the page fparams.zhtml ok.
But if o go out of this directory, to " ..../index.zhtml", and latter
need enter again into ".../iec/fparams.zhtm", the explorer do not show
the login windows again, and then I can access directly.
Only if I go out of all site, and then I access again, the explorer
show the windows login again.
Is there any for "erase" the last access to an directory ???
Thank you in advance
------------------------------------

(You need to be a member of rabbit-semi -- send a blank email to rabbit-semi-subscribe@yahoogroups.com )
Re: HTTP Authentication - joejaworski - Jun 23 15:33:53 2008
This is normal behavior. You only need to authenticate once per
session. There really is no need to inconvenience the user to
re-authenticate every time he/she switches web pages at the controller.
If you want to defeat this, you will have mess with the temporary
cookies set up by rabbitweb.
--- In r...@yahoogroups.com, "Omar"
wrote:
>
> Hello
> I have an application that use Rabbit Web with autentication in a
> directory.
>
> sspec_addrule("/iec", "Area Reservada", admin, admin, SERVER_ANY,
> SERVER_AUTH_BASIC, NULL);
>
> userid = sauth_adduser("params","pwdparams",SERVER_ANY);
> sauth_setusermask(userid, admin, NULL);
>
> In this case, my protected directoy is "/iec"
>
> When I need access to ".../iec/fparams.zhtml" for example, the
> explorer put a login windows, then I type params and pwdparams, and I
> work with the page fparams.zhtml ok.
>
> But if o go out of this directory, to " ..../index.zhtml", and latter
> need enter again into ".../iec/fparams.zhtm", the explorer do not show
> the login windows again, and then I can access directly.
>
> Only if I go out of all site, and then I access again, the explorer
> show the windows login again.
>
> Is there any for "erase" the last access to an directory ???
>
> Thank you in advance
>
------------------------------------

(You need to be a member of rabbit-semi -- send a blank email to rabbit-semi-subscribe@yahoogroups.com )Re: HTTP Authentication - Omar - Jun 23 18:34:46 2008
Thank you joejaworski !
But reality I need close session of the "..\iec " directory when I go
out of this because it got the principal parameters of my controller
in this directory.
The index.zhtml of my controller is a page for only see the controller
functions.
If I need change configure some parameters of controllers, I should be
remember close the explorer or go out from the site before go to index
page to avoid another not authorized user can access to the parameters
controller by click the visited pages in the controller buffer.
Where can I see some over the cookies set up of RabbitWeb ?
Thank you again
--- In r...@yahoogroups.com, "joejaworski"
wrote:
>
> This is normal behavior. You only need to authenticate once per
> session. There really is no need to inconvenience the user to
> re-authenticate every time he/she switches web pages at the controller.
>
> If you want to defeat this, you will have mess with the temporary
> cookies set up by rabbitweb.
>
> --- In r...@yahoogroups.com, "Omar" wrote:
> >
> > Hello
> > I have an application that use Rabbit Web with autentication in a
> > directory.
> >
> > sspec_addrule("/iec", "Area Reservada", admin, admin, SERVER_ANY,
> > SERVER_AUTH_BASIC, NULL);
> >
> > userid = sauth_adduser("params","pwdparams",SERVER_ANY);
> > sauth_setusermask(userid, admin, NULL);
> >
> > In this case, my protected directoy is "/iec"
> >
> > When I need access to ".../iec/fparams.zhtml" for example, the
> > explorer put a login windows, then I type params and pwdparams, and I
> > work with the page fparams.zhtml ok.
> >
> > But if o go out of this directory, to " ..../index.zhtml", and latter
> > need enter again into ".../iec/fparams.zhtm", the explorer do not show
> > the login windows again, and then I can access directly.
> >
> > Only if I go out of all site, and then I access again, the explorer
> > show the windows login again.
> >
> > Is there any for "erase" the last access to an directory ???
> >
> > Thank you in advance
>
------------------------------------

(You need to be a member of rabbit-semi -- send a blank email to rabbit-semi-subscribe@yahoogroups.com )