This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 200177 - Port number is not displayed - "javadebug" instead
Summary: Port number is not displayed - "javadebug" instead
Status: VERIFIED INVALID
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.0.1
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-15 20:34 UTC by Jiri Kovalsky
Modified: 2011-07-15 21:23 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Screenshot of missing port number. (21.34 KB, image/png)
2011-07-15 20:36 UTC, Jiri Kovalsky
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jiri Kovalsky 2011-07-15 20:34:17 UTC
NetBeans 7.0.1 #201107102202, Windows 7, JDK 7 #147

When debugger session starts, IDE prints "Listening on javadebug" into Debugger Console output window instead of "Listening on <port_number>", where <port_number> is a number.

Steps to reproduce:
===================
1. Create AnagramGame sample Java application.
2. Invoke "Debug > Debug Main Project" from main menu.
3. Switch to "Debugger Console" tab of "Output" window to read that port number is missing.
Comment 1 Jiri Kovalsky 2011-07-15 20:36:27 UTC
Created attachment 109459 [details]
Screenshot of missing port number.
Comment 2 Martin Entlicher 2011-07-15 21:19:04 UTC
This seems to be O.K.
There is no port number on Windows, because we do not use socket attach on Windows for a long time already. We use shared memory transport, therefore there is the name of the shared memory used by debugger.
Port number is used on all other non-Windows platforms.
Therefore this is as designed.
Comment 3 Jiri Kovalsky 2011-07-15 21:23:19 UTC
OK, I didn't know that. I am sorry. Verifying...