On Wednesday, June 22, 2011 2:02:59 PM UTC-4, sheM wrote:
>
> @ Iceberg and Anthony...
>
> Thanks a lot for stopping by.
>
>
> 1. return 'nothing'
> and
> 2. raise HTTP(403, errormsg)
>
> are 2 different types of returning responses again.
>
> - the requirement we got, doesn't really encourage this :(
>
> any other suggestions pls?
OK, didn't realize you don't want the server to return an http response at
all. In that case, maybe just run an infinite while loop, and the server
and/or browser will eventually time out. E.g.,
if delay_time_for_responding=='infinite':
while true:
pass
Anthony