Thanks for this answer, but some tcpdump and strace later, i now
understand that the problem is not there. The request is made, but
that's the ape server that is not responding.
(like, not saying anything)

On localhost : (where it works)

26623 accept(7, {sa_family=AF_INET, sin_port=htons(58740),
sin_addr=inet_addr("127.0.0.1")}, [16]) = 9
26623 fcntl64(9, F_GETFL)               = 0x2 (flags O_RDWR)
26623 fcntl64(9, F_SETFL, O_RDWR|O_NONBLOCK) = 0
26623 epoll_ctl(5, EPOLL_CTL_ADD, 9, {EPOLLIN|EPOLLPRI|EPOLLOUT|
EPOLLET, {u32=9, u64=38654705673}}) = 0
26623 accept(7, 0xbff6826c, [16])       = -1 EAGAIN (Resource
temporarily unavailable)
26623 read(9, "GET /\r\n", 2048)        = 7
26623 read(9, 0x9f71757, 2041)          = -1 EAGAIN (Resource
temporarily unavailable)
26623 read(9, "\r\n", 2041)             = 2
26623 write(9, "HTTP/1.1 200 OK\r\nPragma: no-cach"..., 144) = 144
26623 write(9, "<!DOCTYPE HTML PUBLIC \"-//IETF//"..., 250) = 250
26623 shutdown(9, 2 /* send and receive */) = 0
26623 read(9, "", 2048)                 = 0
26623 close(9)                          = 0

On the other host : (where it don't)

17848 accept(7, {sa_family=AF_INET, sin_port=htons(52761),
sin_addr=inet_addr("215.184.108.163")}, [16]) = 9
17848 fcntl64(9, F_GETFL)               = 0x2 (flags O_RDWR)
17848 fcntl64(9, F_SETFL, O_RDWR|O_NONBLOCK) = 0
17848 epoll_ctl(5, EPOLL_CTL_ADD, 9, {EPOLLIN|EPOLLPRI|EPOLLOUT|
EPOLLET, {u32=9, u64=38923167960}}) = 0
17848 accept(7, 0xffa0f028, [16])       = -1 EAGAIN (Resource
temporarily unavailable)
17848 read(9, "GET /2/?%5B%7B%22cmd%22%3A%22set"..., 2048) = 585
(As you can see, there is no write call on this socket)
17848 shutdown(9, 2 /* send and receive */) = 0
17848 read(9, "", 1463)                 = 0
17848 close(9)

So why the process is not writing is still unclear. Could it be an
harware problem (it's a build from source on a ppc host on OpenSuse
11.0) ?

Anyway, the article you're pointing out is still unteresting.

Regards, Denis
-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to