RE: RPC over HTTP

2012-10-03 Thread Evgeny Shvidky
The first RPC message is 104 bytes length and I pass this size to ap_get_client_block() function. -Original Message- From: Ben Noordhuis [mailto:i...@bnoordhuis.nl] Sent: Wednesday, October 03, 2012 2:49 PM To: modules-dev@httpd.apache.org Subject: Re: RPC over HTTP On Wed, Oct 3, 2012

Re: RPC over HTTP

2012-10-03 Thread Ben Noordhuis
On Wed, Oct 3, 2012 at 2:06 PM, Evgeny Shvidky wrote: > Hi, > > ap_setup_client_block() returns OK. > > I think the problem is that "Content-Length" header value is 1073741824 (1 > GB) and probably apache tries to receive the whole content before it passed > to my module. > Am I right? > If yes,

RE: RPC over HTTP

2012-10-03 Thread Evgeny Shvidky
a till now? Thanks, Evgeny -Original Message- From: Ben Noordhuis [mailto:i...@bnoordhuis.nl] Sent: Wednesday, October 03, 2012 1:26 PM To: modules-dev@httpd.apache.org Subject: Re: RPC over HTTP On Wed, Oct 3, 2012 at 11:57 AM, Evgeny Shvidky wrote: > Hi, > > I am developin

Re: RPC over HTTP

2012-10-03 Thread Ben Noordhuis
On Wed, Oct 3, 2012 at 11:57 AM, Evgeny Shvidky wrote: > Hi, > > I am developing a new module on C. > One of the requirements of my module is to receive and handle RPC over HTTP > protocol. > RPC over HTTP opens two HTTP/1.1 requests: > One with request method RPC_IN_DAT

RPC over HTTP

2012-10-03 Thread Evgeny Shvidky
Hi, I am developing a new module on C. One of the requirements of my module is to receive and handle RPC over HTTP protocol. RPC over HTTP opens two HTTP/1.1 requests: One with request method RPC_IN_DATA to send data to the server, and second one with method RPC_OUT_DATA to send data back to