[jira] [Commented] (TRINIDAD-2071) Connection Failed

2011-04-16 Thread Scott O'Bryan (JIRA)

[ 
https://issues.apache.org/jira/browse/TRINIDAD-2071?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13020672#comment-13020672
 ] 

Scott O'Bryan commented on TRINIDAD-2071:
-

Ahh.  IE8.  Unfortunately Trin 1.0.x is in maintenance mode which means no 
new features and likely no new releases.  The agent and ajax code in TRINIDAD 
1.0.x predates IE8, so I'm not surprised it doesn't work.  IE has changed a lot 
in 8 and 9 to become MORE standards compliant.

If you wish to send up a patch to this bug, we can keep it on file or even 
check it into the trunk for those still running 1.0, but it's not likely to get 
released.

Does this issue exist in 1.2 or 2.0?

 Connection Failed
 -

 Key: TRINIDAD-2071
 URL: https://issues.apache.org/jira/browse/TRINIDAD-2071
 Project: MyFaces Trinidad
  Issue Type: Bug
  Components: Components
Affects Versions: 1.0.5-core
 Environment: We are running on a Unix server using Oracle 10g as an 
 application server in a clustered environment
Reporter: ACTUR

 We are experiencing a connection failure  issue the message appears to be 
 coming from trinidad-impl-1.0.5.jar - 
 \META-INF\adf\jsLibs\xhr\RequestQueue.js stating a connection failure. This 
 usually happens when a user selects a component that is doing a partial page 
 refresh. The application hangs for about 20 seconds and then returns the 
 connection fail message. We only found one similar issue out there and with a 
 work around to comment out the message in the RequestQueue.js however this 
 does not completely fix the problem we still experience the delay without the 
 message. Is there a fix for this.  Below is the solution we have found on a 
 blog: 
 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 !!! );
 }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (TRINIDAD-2071) Connection Failed

2011-04-11 Thread Jonathan Gentry (JIRA)

[ 
https://issues.apache.org/jira/browse/TRINIDAD-2071?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13018371#comment-13018371
 ] 

Jonathan Gentry commented on TRINIDAD-2071:
---

More information on this problem: This problem occurring on IE 8, and not on 
Firefox 3.x.

 Connection Failed
 -

 Key: TRINIDAD-2071
 URL: https://issues.apache.org/jira/browse/TRINIDAD-2071
 Project: MyFaces Trinidad
  Issue Type: Bug
  Components: Components
Affects Versions: 1.0.5-core
 Environment: We are running on a Unix server using Oracle 10g as an 
 application server in a clustered environment
Reporter: ACTUR

 We are experiencing a connection failure  issue the message appears to be 
 coming from trinidad-impl-1.0.5.jar - 
 \META-INF\adf\jsLibs\xhr\RequestQueue.js stating a connection failure. This 
 usually happens when a user selects a component that is doing a partial page 
 refresh. The application hangs for about 20 seconds and then returns the 
 connection fail message. We only found one similar issue out there and with a 
 work around to comment out the message in the RequestQueue.js however this 
 does not completely fix the problem we still experience the delay without the 
 message. Is there a fix for this.  Below is the solution we have found on a 
 blog: 
 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 !!! );
 }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (TRINIDAD-2071) Connection Failed

2011-04-06 Thread Jonathan Gentry (JIRA)

[ 
https://issues.apache.org/jira/browse/TRINIDAD-2071?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13016476#comment-13016476
 ] 

Jonathan Gentry commented on TRINIDAD-2071:
---

The real question is why line 592 is not coming back as
 TrXMLRequest.COMPLETED.

 Connection Failed
 -

 Key: TRINIDAD-2071
 URL: https://issues.apache.org/jira/browse/TRINIDAD-2071
 Project: MyFaces Trinidad
  Issue Type: Bug
  Components: Components
Affects Versions: 1.0.5-core
 Environment: We are running on a Unix server using Oracle 10g as an 
 application server in a clustered environment
Reporter: ACTUR

 We are experiencing a connection failure  issue the message appears to be 
 coming from trinidad-impl-1.0.5.jar - 
 \META-INF\adf\jsLibs\xhr\RequestQueue.js stating a connection failure. This 
 usually happens when a user selects a component that is doing a partial page 
 refresh. The application hangs for about 20 seconds and then returns the 
 connection fail message. We only found one similar issue out there and with a 
 work around to comment out the message in the RequestQueue.js however this 
 does not completely fix the problem we still experience the delay without the 
 message. Is there a fix for this.  Below is the solution we have found on a 
 blog: 
 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 !!! );
 }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (TRINIDAD-2071) Connection Failed

2011-03-25 Thread Scott O'Bryan (JIRA)

[ 
https://issues.apache.org/jira/browse/TRINIDAD-2071?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13011416#comment-13011416
 ] 

Scott O'Bryan commented on TRINIDAD-2071:
-

I guess the larger question here is why is the connection failing?  I'm not 
sure simply commenting out the feedback is an appropriate suggestion, 
especially since it causes a delay.  Without the message you would have no idea 
why your app was failing.

 Connection Failed
 -

 Key: TRINIDAD-2071
 URL: https://issues.apache.org/jira/browse/TRINIDAD-2071
 Project: MyFaces Trinidad
  Issue Type: Bug
  Components: Components
Affects Versions: 1.0.5-core
 Environment: We are running on a Unix server using Oracle 10g as an 
 application server in a clustered environment
Reporter: ACTUR

 We are experiencing a connection failure  issue the message appears to be 
 coming from trinidad-impl-1.0.5.jar - 
 \META-INF\adf\jsLibs\xhr\RequestQueue.js stating a connection failure. This 
 usually happens when a user selects a component that is doing a partial page 
 refresh. The application hangs for about 20 seconds and then returns the 
 connection fail message. We only found one similar issue out there and with a 
 work around to comment out the message in the RequestQueue.js however this 
 does not completely fix the problem we still experience the delay without the 
 message. Is there a fix for this.  Below is the solution we have found on a 
 blog: 
 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 !!! );
 }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira