Hi.Sorry for my english.
When I implement my plug-ins i encounter one trouble under Solaris.
Client (browser) open connection to the server Apache-1.3.22
and send first request: "GET <my_url> HTTP/1.1"
Server child process my request, generate response and wait new
request, but second request: "POST <my_url> > HTTP/1.1 <data>"
processing other server child - not first. I needed to transmit
server data state from first child to the second and after that
process second request. Can I create main for all my request structure?
Or can server process more than one request inside one child memory space?
1)my_client------->GET.... ----->child{0}
2)child{0}------->response1------->my_client
3)my_client------->POST.... ----->child{0} - i need it
3)my_client------->POST.... ----->child{1} - really work
(but child{0} and child{1} havenot common memory space)
4)child{0}------->response2------->my_client
Thanks,
Pavel.mailto:[EMAIL PROTECTED]