boolean en-/decoding

2004-07-30 Thread Michael Zwettler
Hello, the apache xmlrpc library accepts only 0 and 1 as correct boolean values while true and false are both interpreted as false value. Other libraries evaluate the strings true and false to the booleans true and false. Are true and false correct boolean values or not? Michael

Re: connection keepalive

2004-10-22 Thread Michael Zwettler
Hello, i checked the http headers (with tcpdump): the xmlrpc-client sends a http 1.1 request with Connection: keep-alive in the header. This is useless in http 1.1 because - permanent connections are the default - only Connection: Close is supported The server sends the response without a

Re: connection keepalive

2004-10-22 Thread Michael Zwettler
Update: the apache xmlrpc client keeps the connection open only if the server response contains a Connection: Keep-Alive header. Without this header the client closes the connection. Is this http 1.1 compliant? I thought in http 1.1 the connections are kept open until a Connection: close header