> Hi,
>
[quoted text clipped - 13 lines]
> sometimes happens that in the background the FM database is switched to the
> webbased password.
Probably really important to work out why this happens...
> This will result in a <no access> message on all records
> on the serverside and on the webclient portals with data about the
[quoted text clipped - 5 lines]
>
> Anybody even seen this before and does anybody know what the problem is?
I use a slightly different system. Everyone gets a user name and
password in the Web Security database, and all requests are in POST
forms. Then I can use a hidden input to include their user name in every
request, and a tag field on each record.
<input type="hidden" name="OwnerIDTag" value="[FMP-CLientUserName]">
May be of use
Webko
Also, if you need to munge your address, also munge the server name with
.invalid at the end, as your mail server is still handling the spam
before rejecting it, where using .invalid means it nevers leaves the
spammers hijacked server.
Wouter - 28 Jan 2004 08:53 GMT
Webco,
> Probably really important to work out why this happens...
I think it happens when a client is cancelling a request by clicking somewhere else before FM is finished handling it (like a large search including a sort).
>
> I use a slightly different system. Everyone gets a user name and
> password in the Web Security database, and all requests are in POST
> forms. Then I can use a hidden input to include their user name in every
> request, and a tag field on each record.
>
> <input type="hidden" name="OwnerIDTag" value="[FMP-CLientUserName]">
I use the same system in addition to FM's record level access in areas where security is less important. I just felt that by only doing it this way it would be a bit to obvious for a user to remove the "OwnerIDTag=Myname" from the address bar to expose all records.
> Also, if you need to munge your address, also munge the server name with
> .invalid at the end, as your mail server is still handling the spam
> before rejecting it, where using .invalid means it nevers leaves the
> spammers hijacked server.
Thanks.
> > Hi,
> >
[quoted text clipped - 40 lines]
> before rejecting it, where using .invalid means it nevers leaves the
> spammers hijacked server.
Tim 'Webko' Booth - 28 Jan 2004 23:11 GMT
> > I use a slightly different system. Everyone gets a user name and
> > password in the Web Security database, and all requests are in POST
[quoted text clipped - 7 lines]
> way it would be a bit to obvious for a user to remove the
> "OwnerIDTag=Myname" from the address bar to expose all records.
Which is why I only use POST statements - then the statement doesn't
appear in the URL. But you are right, it is not as secure.
Cheers
Webko