Return-Path: Delivered-To: apmail-incubator-etch-dev-archive@minotaur.apache.org Received: (qmail 66442 invoked from network); 20 Oct 2010 09:39:49 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 20 Oct 2010 09:39:49 -0000 Received: (qmail 41095 invoked by uid 500); 20 Oct 2010 09:39:49 -0000 Delivered-To: apmail-incubator-etch-dev-archive@incubator.apache.org Received: (qmail 40980 invoked by uid 500); 20 Oct 2010 09:39:48 -0000 Mailing-List: contact etch-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: etch-dev@incubator.apache.org Delivered-To: mailing list etch-dev@incubator.apache.org Received: (qmail 40967 invoked by uid 99); 20 Oct 2010 09:39:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 09:39:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Oct 2010 09:39:46 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o9K9dO4E021011 for ; Wed, 20 Oct 2010 09:39:24 GMT Message-ID: <9450010.5731287567564220.JavaMail.jira@thor> Date: Wed, 20 Oct 2010 05:39:24 -0400 (EDT) From: "Holger Grandy (JIRA)" To: etch-dev@incubator.apache.org Subject: [jira] Updated: (ETCH-26) some unexpected exceptions are thrown if .Net Framework Language Pack is installed In-Reply-To: <125364411.1232005439653.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/ETCH-26?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Holger Grandy updated ETCH-26: ------------------------------ Affects Version/s: 1.1 > some unexpected exceptions are thrown if .Net Framework Language Pack is installed > ---------------------------------------------------------------------------------- > > Key: ETCH-26 > URL: https://issues.apache.org/jira/browse/ETCH-26 > Project: Etch > Issue Type: Bug > Components: csharp-binding > Affects Versions: 1.0.0, 1.0.1, 1.1 > Environment: windows .Net Framework Language Pack is installed > Reporter: Tohru OHZONO > Fix For: 1.2 > > > If .Net Framework Langurage Pack is installed, > The "Message" property of Exception returns localized messages. > So, the following in the Etch.Util.TcpTransport.ReadSocket() cause a problem. > //---------------------------------// > if (e.Message == null) > throw e; > if (e.Message.Contains("connection was aborted")) > return; > if (e.Message.Contains("blocking operation")) > return; > if (e.Message.Contains("socket closed")) > return; > if (e.Message.Contains("read operation failed")) > return; > > throw e; > //---------------------------------// > "e.Message" returns localized message, > So thease exceptions are thrown to the outside. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.