Return-Path: Delivered-To: apmail-myfaces-users-archive@www.apache.org Received: (qmail 41689 invoked from network); 7 Jun 2008 11:16:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jun 2008 11:16:43 -0000 Received: (qmail 58427 invoked by uid 500); 7 Jun 2008 11:16:43 -0000 Delivered-To: apmail-myfaces-users-archive@myfaces.apache.org Received: (qmail 58397 invoked by uid 500); 7 Jun 2008 11:16:43 -0000 Mailing-List: contact users-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Discussion" Delivered-To: mailing list users@myfaces.apache.org Received: (qmail 58386 invoked by uid 99); 7 Jun 2008 11:16:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 04:16:43 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 11:15:53 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1K4wP3-00083Z-Mk for users@myfaces.apache.org; Sat, 07 Jun 2008 04:16:09 -0700 Message-ID: <17707730.post@talk.nabble.com> Date: Sat, 7 Jun 2008 04:16:09 -0700 (PDT) From: "Ravi.Kharatmal" To: users@myfaces.apache.org Subject: Re: Trinidad 1.2.8 - Connection Closed popup In-Reply-To: <17610785.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: ravi.kharatmal@hcl.in References: <17610785.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org Hi Selva, This 'Connection Failed' popup issue is because of trinidad's internal javascript method TrRequestQueue._alertError = function() { var failedConnectionText = TrRequestQueue._getFailedConnectionText(); if (failedConnectionText != null) alert("Trapped Connection Failed !!! "); } TrRequestQueue._getFailedConnectionText() : This method returns 'Connection Failed' This message is given whenever any issue occures with IFrames that are used internally in trinidad. But it has no major impact on app, so can be taken as warning. SO the solution is to just override this method & comment out the code as below. TrRequestQueue._alertError = function() { // Do nothing. Supressing alert code. // var failedConnectionText = TrRequestQueue._getFailedConnectionText(); //if (failedConnectionText != null) // alert("Trapped Connection Failed !!! "); } So now whenever this method is called, nothing will happen & popup issue will be resolved. Hows that??? ;) selva@wmg wrote: > > Hi, > We are in a process of upgrading our application from Trinidad 1.0.1 to > Trinidad 1.2.8.We are getting connection closed pop up window in between > the work and this is not happening consistently however this is not > blocking any functionality. I have enclosed the screenshot for this issue. > > Any help would be highly appreciated. > > Regards, > Selva > http://www.nabble.com/file/p17610785/connection_failed.jpg > -- View this message in context: http://www.nabble.com/Trinidad-1.2.8---Connection-Closed-popup-tp17610785p17707730.html Sent from the MyFaces - Users mailing list archive at Nabble.com.