Re: [Q maybe OT] forward

2002-04-29 Thread Per Einar Ellefsen
At 07:15 29.04.2002, Martin Haase-Thomas wrote: Hi Andrew, thanx for the idea to have a look at Apache::ASP. I took that look meanwhile and to me that seems to be an overhead. Maybe I'm naive, because it wasn't much more than a glance, but the code copes with things a server page *never* has

Re: [Q maybe OT] forward

2002-04-29 Thread Martin Haase-Thomas
Hi Perrin, first of all please excuse my late answer - lots of things in mind to care about, as I'm hopefully close to releasing the 0.2 version of the serverpage implementation (and besides I urgently need a new job, too). But thank you for your presice statement, that is exactly what I

Re: [Q maybe OT] forward

2002-04-28 Thread Martin Haase-Thomas
Hi Andrew, thanx for the idea to have a look at Apache::ASP. I took that look meanwhile and to me that seems to be an overhead. Maybe I'm naive, because it wasn't much more than a glance, but the code copes with things a server page *never* has to worry about, things like session handling

[Q maybe OT] forward

2002-04-24 Thread Martin Haase-Thomas
Hi all, maybe this is going to be a little off topic, but it won't take you much time: I am quite certain that recently I saw a server response code concerning forwarding. It may have looked like HTTP_DOCUMENT_FORWARDED or anything alike. Silly enough I can't recall where I saw it (or

Re: [Q maybe OT] forward

2002-04-24 Thread Per Einar Ellefsen
At 07:44 24.04.2002, Martin Haase-Thomas wrote: Hi all, maybe this is going to be a little off topic, but it won't take you much time: I am quite certain that recently I saw a server response code concerning forwarding. It may have looked like HTTP_DOCUMENT_FORWARDED or anything alike. Silly

Re: [Q maybe OT] forward

2002-04-24 Thread Ernest Lergon
Martin Haase-Thomas wrote: I am quite certain that recently I saw a server response code concerning forwarding. It may have looked like HTTP_DOCUMENT_FORWARDED or anything alike. Hi Martin, just a guess: Do you mean the header entry 'X-Forwarded-For' ? See

Re: [Q maybe OT] forward

2002-04-24 Thread Martin Haase-Thomas
;) you're right. meanwhile i found out that it seems to have something to do with proxies. forwarding is a term that i borrowed from the JSP concept - which i'm currently trying to implement in perl. it means nearly the same as redirect, but without telling the client. (as far as i've

Re: [Q maybe OT] forward

2002-04-24 Thread darren chamberlain
* Martin Haase-Thomas [EMAIL PROTECTED] [2002-04-24 08:19]: forwarding is a term that i borrowed from the JSP concept - which i'm currently trying to implement in perl. it means nearly the same as redirect, but without telling the client. (as far as i've understood it do far. maybe it's just

Re: [Q maybe OT] forward

2002-04-24 Thread Perrin Harkins
Martin Haase-Thomas wrote: forwarding is a term that i borrowed from the JSP concept - which i'm currently trying to implement in perl. JSP forward is directly equivalent to an internal redirect. It's just an include that doesn't return. In short, it's a GOTO statement. Thank you Sun. -

Re: [Q maybe OT] forward

2002-04-24 Thread Andrew Ho
Hello, MHTforwarding is a term that i borrowed from the JSP concept - which i'm MHTcurrently trying to implement in perl. PHJSP forward is directly equivalent to an internal redirect. It's just PHan include that doesn't return. In short, it's a GOTO statement. Thank PHyou Sun. This concept