Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-12313] CLI: iOS Debugger: Error connecting to debugger: Error Domain=NSPOSIXErrorDomain Code=61

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2013-01-31T22:53:20.000+0000
Affected Version/sRelease 3.0.1
Fix Version/sRelease 3.0.2, Release 3.1.0, 2013 Sprint 02 JS, 2013 Sprint 02
ComponentsCLI
Labelsios-debugger, qe-port, qe-sdk3.0.2, regression
ReporterDustin Hyde
AssigneeChris Barber
Created2013-01-16T20:17:55.000+0000
Updated2013-12-18T17:01:25.000+0000

Description

[ERROR] :  Error connecting to debugger: Error Domain=NSPOSIXErrorDomain Code=61 "The operation couldn’t be completed. Connection refused" iOS Debugger fails to connect. Last working build: 3.0.1.v20130111154702 First known failure: 3.0.1.v20130111162050 Steps to Reproduce: 1. Open Titanium Project. 2. Insert code (with breakpoints):
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');

// create tab group
var tabGroup = Titanium.UI.createTabGroup(); // breakpoint


//
// create base UI tab and root window
//
var win1 = Titanium.UI.createWindow({  
    title:'Tab 1',
    backgroundColor:'#fff'
});
var tab1 = Titanium.UI.createTab({  
    icon:'KS_nav_views.png',
    title:'Tab 1',
    window:win1
});

var label1 = Titanium.UI.createLabel({
	color:'#999',
	text:'I am Window 1',
	font:{fontSize:20,fontFamily:'Helvetica Neue'},
	textAlign:'center',
	width:'auto'
});

win1.add(label1);

//
// create controls tab and root window
//
var win2 = Titanium.UI.createWindow({  
    title:'Tab 2',
    backgroundColor:'#fff'
});
var tab2 = Titanium.UI.createTab({  
    icon:'KS_nav_ui.png',
    title:'Tab 2',
    window:win2
});

var label2 = Titanium.UI.createLabel({
	color:'#999',
	text:'I am Window 2',
	font:{fontSize:20,fontFamily:'Helvetica Neue'},
	textAlign:'center',
	width:'auto'
});

win2.add(label2);



//
//  add tabs
//
tabGroup.addTab(tab1);  
tabGroup.addTab(tab2);  


// open tab group
tabGroup.open();

alert('SESSION ID: ' + Ti.App.sessionId); // breakpoint
Ti.API.error('SESSION ID: ' + Ti.App.sessionId);
Ti.API.error('ERROR => Ti.API.error');
Ti.API.log('ERROR', 'ERROR => Ti.API.log');
Ti.API.warn('WARN => Ti.API.warn');
Ti.API.log('WARN', 'WARN => Ti.API.log');
Ti.API.info('INFO => Ti.API.info');
Ti.API.log('INFO', 'INFO => Ti.API.log');
Ti.API.debug('DEBUG => Ti.API.debug');
Ti.API.log('DEBUG', 'DEBUG => Ti.API.log');
Ti.API.trace('TRACE => Ti.API.trace');
Ti.API.log('TRACE', 'TRACE => Ti.API.log');
Ti.API.log('FREEFORM', 'FREEFORM => Ti.API.log');

var x = 0; // breakpoint
var y = 0; // breakpoint
3. Run iOS Debugger. Actual Result: [ERROR] :  Error connecting to debugger: Error Domain=NSPOSIXErrorDomain Code=61 "The operation couldn’t be completed. Connection refused" Expected Result: Debugger session connects.

Attachments

FileDateSize
console-log.txt2013-01-16T20:17:55.000+0000202548

Comments

  1. Max Stepanov 2013-01-16

    If connection refused, then the socket server (TiStudio) was not listening. I don't see how it would break between 3.0.1.v20130111154702 and 3.0.1.v20130111162050 Suggest to investigate as Studio issue.
  2. Dustin Hyde 2013-01-17

    The splash screen fix affected the debugger: https://github.com/appcelerator/titanium_mobile/commit/1eb9914025a69ea6c3414bc09240f195173e59de
  3. Chris Barber 2013-01-19

    Master pull request: https://github.com/appcelerator/titanium_mobile/pull/3743 3.0.x pull request: https://github.com/appcelerator/titanium_mobile/pull/3744
  4. Sabil Rahim 2013-01-22

    CR & FR on master and backport PR
  5. Olga Romero 2013-01-23

    Bug still exists in: Titanium Studio, build: 3.0.1.201212181159 Titanium SDK, build: 3.1.0.v20130114171802 It is fixed in: Titanium Studio, build: 3.0.1.201212181159 Titanium SDK, build: 3.0.2.v20130122151702
  6. Olga Romero 2013-01-23

    Closing. Titanium Studio, build: 3.0.1.201212181159 Tested with latest master(commit 572dcc3fe2) Xcode 4.5.2 Device: iPhone4S 5.0.1
  7. Trevor Borgmeier 2013-01-31

    This appears to have reintroduced itself. I get the error for these... - 3.1.0.v20130129154205 - 3.1.0.v20130130232607 - 3.0.2.v20130129171611 but it works in these... - 3.1.0.v20130124121019 - 3.0.2.v20130124114701
  8. Dustin Hyde 2013-01-31

    Verified as ReIntroduced: Titanium SDK: 3.0.2.v20130129171611 OS: Mountain Lion 10.8.2 Xcode: 4.6 Titanium CLI: 3.0.23
  9. Eric Merriman 2013-01-31

    Also occurs with: CLI: 3.0.24 + Xcode 4.6 And CLI: 3.0.24 + Xcode: 4.5.2 In this config, generally you don't get the error, but the breakpoints are ignored.
  10. Chris Barber 2013-01-31

    Master pull request: https://github.com/appcelerator/titanium_mobile/pull/3833
  11. Chris Barber 2013-01-31

    3_0_X pull request: https://github.com/appcelerator/titanium_mobile/pull/3834
  12. Federico Casali 2013-02-05

    Verified as fixed with: TiSDK 3.0.2.v20130201161712 CLI 3.0.24 iPhone 4S 5.0.1 iPhone 5 6.1 Xcode 4.5.2 and 4.6
  13. Olga Romero 2013-02-07

    Closing. Verified fix with: Titanium Studio, build: 3.0.2.201302041757 Titanium SDK, build: 3.0.2.v20130201161712 Xcode 4.6

JSON Source