olegk wrote: > > > HttpCore is a toolkit of low level transport components one can use to > build custom HTTP services. It does not provide support for HTTP proxies > out of the box. You'll have to program it by yourself if you want to be > able to send HTTP requests via a proxy using non-blocking HTTP stack. > > There are plans to develop a full-blown HTTP client on top of HttpCore > NIO, similar to the one based on classic (blocking) I/O. But this will > happen only if more people are wiling to contribute to this effort. > > Oleg > >
Sorry for the delayed response. Thanks for this detailed clarification. I'm sorry but my knowledge of http protocols is too limited to help you here. I've made this changes in that example code and it worked well for me in the case of http and not in the case of https. when I tried the tragetHost with https it return the response as 302-Redirection. Is that something i need to do in the case of https communication? ioReactor.connect(new InetSocketAddress(proxyHost,proxyPort),null, httpTargetHost, callback); -- View this message in context: http://www.nabble.com/Submit-HTTP-requests-and-asynchronously-receive-HTTP-responses-tp21328235p21556741.html Sent from the HttpClient-User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
