Re: can't get authorization

2005-10-26 Thread Fabio Marzocca
On 10/24/05, Fabio Marzocca <[EMAIL PROTECTED]> wrote: > > Firefox sends this cookie at the very first GET (see the last line): > > GET > /alice/portal/service/login/entry.do?service=sms&from=alice&login=...&password= > HTTP/1.1 > Host: www.rossoalice.virgilio.it > User-Agent: Mozilla

Re: can't get authorization

2005-10-21 Thread Fabio Marzocca
On 21 Oct 2005 06:38:14 -0700, Gisle Aas <[EMAIL PROTECTED]> wrote: > You can get LWP to use a single TCP connection by turing on the > keep_alive feature. Done something like this: Ok, thanks. I did that and now I have a full TCP stream on both tests, but no way to reach the same page. Only fire

Re: can't get authorization

2005-10-21 Thread Gisle Aas
Fabio Marzocca <[EMAIL PROTECTED]> writes: > On 21 Oct 2005 05:26:48 -0700, Gisle Aas <[EMAIL PROTECTED]> wrote: > > It doesn't. > > But looking better at the flow, I am convinced it is not a matter on IPv6. > > Summarizing, this is the stream: > > 1) get the page, sending userid and pwd > 2) u

Re: can't get authorization

2005-10-21 Thread Fabio Marzocca
On 21 Oct 2005 05:26:48 -0700, Gisle Aas <[EMAIL PROTECTED]> wrote: > It doesn't. But looking better at the flow, I am convinced it is not a matter on IPv6. Summarizing, this is the stream: 1) get the page, sending userid and pwd 2) user agent is diverted to an authentication page 3) user agent

Re: can't get authorization

2005-10-21 Thread Gisle Aas
Fabio Marzocca <[EMAIL PROTECTED]> writes: > I have seen that standard query from the browser is Type: (IPv6 > address). Maybe LWP does not support IPv6? It doesn't. Regards, Gisle

Re: can't get authorization

2005-10-21 Thread Fabio Marzocca
More on this... I have seen that standard query from the browser is Type: (IPv6 address). Maybe LWP does not support IPv6?

Re: can't get authorization

2005-10-21 Thread Fabio Marzocca
What I have realized is that the session from lwp is divided into 3 sub-sessions, each one preceded by its own DNS standard query. So each time the lwp session make a DNS query, it gets 3 different addresses. The web session is made by just one query thru all, with the same IP address.. I have re

Re: can't get authorization

2005-10-14 Thread Fabio Marzocca
On 14 Oct 2005 10:06:21 -0700, Gisle Aas <[EMAIL PROTECTED]> wrote: > Those are pretty unreadable. At least try to use the "Follow TCP > stream" function of ethereal so it is possible to read what the data > passed between the peers are. You are right, sorry. So I have replaced the 2 files with a

Re: can't get authorization

2005-10-14 Thread Gisle Aas
Fabio Marzocca <[EMAIL PROTECTED]> writes: > I have put here: http://socrates.homedns.org/lwp/ > the two complete ethereal sessions (one from browser and the other > from LWP). Those are pretty unreadable. At least try to use the "Follow TCP stream" function of ethereal so it is possible to read

Re: can't get authorization

2005-10-14 Thread Fabio Marzocca
I have put here: http://socrates.homedns.org/lwp/ the two complete ethereal sessions (one from browser and the other from LWP). As you can see the browser reaches the correct page, while LWP is diverted to an error page...

can't get authorization

2005-10-12 Thread Fabio Marzocca
I have a strange behaviour. If I type in my browser (Firefox) this address: http://?login=&password= I can enter and get authorized. If I use the same line from my useragent or even from wget, the site diverts me to an error page and doesn't let me in. here are some snippets taken from an ethe