Return-Path: Delivered-To: apmail-jakarta-httpcomponents-dev-archive@www.apache.org Received: (qmail 64124 invoked from network); 12 Jan 2007 18:29:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jan 2007 18:29:51 -0000 Received: (qmail 37756 invoked by uid 500); 12 Jan 2007 18:29:56 -0000 Delivered-To: apmail-jakarta-httpcomponents-dev-archive@jakarta.apache.org Received: (qmail 37707 invoked by uid 500); 12 Jan 2007 18:29:56 -0000 Mailing-List: contact httpcomponents-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list httpcomponents-dev@jakarta.apache.org Received: (qmail 37525 invoked by uid 99); 12 Jan 2007 18:29:55 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Jan 2007 10:29:55 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Jan 2007 10:29:48 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C7139714313 for ; Fri, 12 Jan 2007 10:29:27 -0800 (PST) Message-ID: <24732803.1168626567813.JavaMail.jira@brutus> Date: Fri, 12 Jan 2007 10:29:27 -0800 (PST) From: "Oleg Kalnichevski (JIRA)" To: httpcomponents-dev@jakarta.apache.org Subject: [jira] Updated: (HTTPCORE-23) Threading issue with NIO extensions for client side code In-Reply-To: <2020438.1168626207503.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HTTPCORE-23?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Oleg Kalnichevski updated HTTPCORE-23: -------------------------------------- Fix Version/s: 4.0-alpha4 Priority: Critical (was: Major) > Threading issue with NIO extensions for client side code > -------------------------------------------------------- > > Key: HTTPCORE-23 > URL: https://issues.apache.org/jira/browse/HTTPCORE-23 > Project: HttpComponents Core > Issue Type: Bug > Components: HttpCore NIO > Affects Versions: 4.0-alpha3 > Reporter: Asankha C. Perera > Assigned To: Oleg Kalnichevski > Priority: Critical > Fix For: 4.0-alpha4 > > Attachments: nio_patch_1.patch > > > I would like to write a non-blocking client based on the NIO extensions, but encounter an issue, which could be reproduced with a modified NHttpClient example code as follows: > I want to start off a ConnectingIOReactor, and leave it running continuously. Now, whenever I want to send a request through this reactor, I would want to execute something like > ioReactor.connect( > new InetSocketAddress("www.yahoo.com", 80), > null, > new HttpHost("www.yahoo.com")); > However, if I execute the above before I execute ioReactor.execute(ioEventDispatch), i.e position 1, then everything works fine. If I try it after (i.e. position 2) the outcome is unpredictable - i.e. works sometimes, NPE, etc.. > It is not clear to me why connecting to the reactor after its execute() method is invoked should be any different..? > public static void main(String[] args) throws Exception { > HttpParams params = new DefaultHttpParams(null); > ..... > NHttpClientHandler handler = new MyNHttpClientHandler(params); > final IOEventDispatch ioEventDispatch = new DefaultClientIOEventDispatch(handler, params); > // position 1 Thread t = new Thread(new Runnable() { > public void run() { > try { > ioReactor.execute(ioEventDispatch); > } catch (Exception e) { > e.printStackTrace(); > } > } > } > ); > t.start(); > // position 2 > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: httpcomponents-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: httpcomponents-dev-help@jakarta.apache.org