[EMAIL PROTECTED] How to make Apache 2.x as Forwarding server?

2008-07-25 Thread Anand Kulkarni
Hi, I have client/server architecture. I want to introduce Apache server in between that will receive request from client, forward it to server then take response from server and give it back to the client. There is no load balancing or complex processing here. How can I implement this simple

RE: [EMAIL PROTECTED] Any replacement of mod_proxy?

2008-07-17 Thread Anand Kulkarni
Hi, We have used mod_proxy in our project for configuring proxy server between TCP client and TCP server. But, mod_proxy has not been able to forward the complete client data to the server. I think it is a bug with mod_proxy. We have another option called mod_athena. In that also it did

RE: [EMAIL PROTECTED] Any replacement of mod_proxy?

2008-07-17 Thread Anand Kulkarni
Hi, We have already developed an application where TCP-client communicates with TCP-Server. Its working fine. But now we want to introduce some proxy server in between. why? Because we have many TCP servers running and using mod_proxy we want to route client request to the specific one.

RE: [EMAIL PROTECTED] Any replacement of mod_proxy?

2008-07-17 Thread Anand Kulkarni
Hi, Because we have many TCP servers running and using mod_proxy we want to route client request to the specific one. Also using Apache as proxy, we can get benefit of different services. Sorry, this explanation is not enough. What kind of tcp servers are they and what clients connect to

[EMAIL PROTECTED] Bugs of mod_proxy

2008-07-16 Thread Anand Kulkarni
Hi, Are there any well known bugs from mod_proxy module? regards, Anand

[EMAIL PROTECTED] Any replacement of mod_proxy?

2008-07-16 Thread Anand Kulkarni
Hi, We have used mod_proxy in our project for configuring proxy server between TCP client and TCP server. But, mod_proxy has not been able to forward the complete client data to the server. I think it is a bug with mod_proxy. We have another option called mod_athena. In that also it did not

[EMAIL PROTECTED] How to configure Apache 2.x for HTTP 1.0 version?

2008-07-14 Thread Anand Kulkarni
Hi, I am working on Apache 2.x. The default protcol followed is HTTP 1.1. But HTTP 1.1 is a persistent protocol and hence I want Apache to follow HTTP 1.0 protocol. So, How to configure Apache 2.x for HTTP 1.0 version? -Anand

[EMAIL PROTECTED] How to override Apache default headers?

2008-07-14 Thread Anand Kulkarni
Hi, I am using mod_proxy to establish proxy communication between TCP client and TCP server. When I send request from client to server through Apache as proxy, Apache adds the following headers automatically: POST / HTTP/1.1 Host: 192.168.56.17:9801 X-Forwarded-For: 192.168.56.17

RE: [EMAIL PROTECTED] How to configure Apache 2.x for HTTP 1.0 version?

2008-07-14 Thread Anand Kulkarni
1.0 version? On Jul 14, 2008, at 9:05 PM, Anand Kulkarni wrote: I am working on Apache 2.x. The default protcol followed is HTTP 1.1. But HTTP 1.1 is a persistent protocol and hence I want Apache to follow HTTP 1.0 protocol. What do you mean by 'persistent'? So, How to configure Apache 2

[EMAIL PROTECTED] MOD_PROXY a strange problem!!!

2008-07-10 Thread Anand Kulkarni
Hi, I have a TCP client-server application written in Java using the standard socket APIs. Now, I want to introduce Apache as the proxy server between them. And hence I am using the mod_proxy module. The communication among client, apache and server is properly being established but facing a

[EMAIL PROTECTED] How to customize Apache Headers?

2008-07-10 Thread Anand Kulkarni
Hi, I am sending many requests from TCP client to Apache. Using mod_proxy it will be routed to the destinition server. In every client request, I want to send different HTTP headers but I found that Apache adds its own headers and does not allow client to set request specific headers. So, my

[EMAIL PROTECTED] MOD_PROXY not working!!!

2008-06-25 Thread Anand Kulkarni
Hi, I am working on mod_proxy module for Apache 2.2.8. My client is sending 5 HTTP messages to Apache. It is expected that the Apache will forward those messages to actual server. But, Apache just forwards the first message. Here is the message printed on server console: POST / HTTP/1.1

[EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Hi, I want to send large amount of data from client to server through Apache. hence, I am using Apache as proxy using the standard mod_proxy module. Client does not know the length of data to be sent and hence can not set the content length value. So, how can I send this large data without

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
that in the mod_proxy documentation on the Apache site. Anand Kulkarni wrote: Hi, I want to send large amount of data from client to server through Apache. hence, I am using Apache as proxy using the standard mod_proxy module. Client does not know the length of data to be sent and hence can not set

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
is that ? - how is it sending it ? via a POST ? I mean, are you talking about a browser with an html form with a input type=file or about something else ? Thanks André André Warnier wrote: I could swear that I saw something about that in the mod_proxy documentation on the Apache site. Anand

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Chunked encoding in Apache On Wed, 25 Jun 2008 16:37:20 +0530 Anand Kulkarni [EMAIL PROTECTED] wrote: Hi, I have also seen about chunk data at http://httpd.apache.org/docs/2.2/mod/mod_proxy.html Documents for 2.2. For Apache 2.0.63, inside httpd.conf file I set the environment: don't