BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Debug Mode Failing

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> JBuilder Debugger
View previous topic :: View next topic  
Author Message
Reuben M. Prichard Jr.
Guest





PostPosted: Wed Feb 23, 2005 5:43 pm    Post subject: Debug Mode Failing Reply with quote




Not sure what happend but when I try to enter debug mode I get the following message:

Transport dt_socket failed to initialize, rc = 509.

The java command line argument this seems to be referring to is:

-Xrunjdwp:transport=dt_socket,address=NJ05-0276:1474,suspend=y testproject.MainApp

Anybody have any Idea what the RC (Return Code?) 509 means...Not using any remote networking/management of the project..just me.. It was working.. I have removed (everything associated with Jbuilder) and reinstalled but no good. Moved Jbuilder 2005 to different machine and it works fine with the same project..

Reuben M. Prichard Jr.
Motorola MDB
Back to top
Kevin Dean [TeamB]
Guest





PostPosted: Wed Feb 23, 2005 7:18 pm    Post subject: Re: Debug Mode Failing Reply with quote



Reuben M. Prichard Jr. wrote:

Quote:
Not sure what happend but when I try to enter debug mode I get the
following message:

Transport dt_socket failed to initialize, rc = 509.

The java command line argument this seems to be referring to is:

-Xrunjdwp:transport=dt_socket,address=NJ05-0276:1474,suspend=y
testproject.MainApp


A search for "dt_socket 509" in Google leads to this posting:

http://forum.java.sun.com/thread.jspa?threadID=160025&messageID=2757525

It seems that you may have conflicting Java paths on your system.
Check your system PATH setting and remove the conflicting Java path or
put it after the more recent Java path variable.

--
Kevin Dean [TeamB]
Dolphin Data Development Ltd.
http://www.datadevelopment.com/

NEW WHITEPAPERS
Team Development with JBuilder and Borland Enterprise Server
Securing Borland Enterprise Server
http://www.datadevelopment.com/papers/index.html

Please see Borland's newsgroup guidelines at
http://info.borland.com/newsgroups/guide.html

Back to top
Reuben M. Prichard Jr.
Guest





PostPosted: Thu Feb 24, 2005 4:02 pm    Post subject: Re: Debug Mode Failing Reply with quote




Kevin,
That was it...I had modified my path to try some Co. test applications and libraries to point to my JDK1.5.01 jre..Didn't realize Jbuilder uses the environment variable PATH...
Thanks again,

R. M. Prichard Jr.


"Kevin Dean [TeamB]" <NkOdSePaAnM (AT) datadevelopment (DOT) com> wrote:
Quote:
Reuben M. Prichard Jr. wrote:

Not sure what happend but when I try to enter debug mode I get the
following message:

Transport dt_socket failed to initialize, rc = 509.

The java command line argument this seems to be referring to is:

-Xrunjdwp:transport=dt_socket,address=NJ05-0276:1474,suspend=y
testproject.MainApp


A search for "dt_socket 509" in Google leads to this posting:

http://forum.java.sun.com/thread.jspa?threadID=160025&messageID=2757525

It seems that you may have conflicting Java paths on your system.
Check your system PATH setting and remove the conflicting Java path or
put it after the more recent Java path variable.

--
Kevin Dean [TeamB]
Dolphin Data Development Ltd.
http://www.datadevelopment.com/

NEW WHITEPAPERS
Team Development with JBuilder and Borland Enterprise Server
Securing Borland Enterprise Server
http://www.datadevelopment.com/papers/index.html

Please see Borland's newsgroup guidelines at
http://info.borland.com/newsgroups/guide.html


Back to top
Kevin Dean [TeamB]
Guest





PostPosted: Thu Feb 24, 2005 5:26 pm    Post subject: Re: Debug Mode Failing Reply with quote

Reuben M. Prichard Jr. wrote:

Quote:
That was it...I had modified my path to try some Co. test
applications and libraries to point to my JDK1.5.01 jre..Didn't
realize Jbuilder uses the environment variable PATH... Thanks again,

You're welcome. FWIW, JBuilder itself isn't responsible for that
problem; it's simply the rules of the operating system. The JRE says
it needs a DLL and tells the OS to look for it. The OS uses the PATH.

--
Kevin Dean [TeamB]
Dolphin Data Development Ltd.
http://www.datadevelopment.com/

NEW WHITEPAPERS
Team Development with JBuilder and Borland Enterprise Server
Securing Borland Enterprise Server
http://www.datadevelopment.com/papers/index.html

Please see Borland's newsgroup guidelines at
http://info.borland.com/newsgroups/guide.html

Back to top
John McGrath [TeamB]
Guest





PostPosted: Fri Feb 25, 2005 10:54 pm    Post subject: Re: Debug Mode Failing Reply with quote

On 2/24/2005 at 12:26:19 PM, Kevin Dean [TeamB] wrote:

Quote:
FWIW, JBuilder itself isn't responsible for that problem; it's simply
the rules of the operating system. The JRE says it needs a DLL and
tells the OS to look for it. The OS uses the PATH.

To be a little more precise, it is the Java runtime that controls this.
The runtime classes search for the library in the directories named in the
System property "java.library.path". If you do not specify a value for
the property, the JVM initializes it on startup to a list of directories
that mimics the search list that the host operating system uses.

I dug into this in detail about 5 years ago. If you want all of the gory
detail, see:

http://tinyurl.com/5ccf7
a.k.a:
http://groups-beta.google.com/group/borland.public.jbuilder.compiler/msg/cd
82825fb562d843

--
Regards,

John McGrath [TeamB]

---------------------------------------------------
Before sending me e-mail, please read:
http://www.JPMcGrath.net/newsgroups/e-mail.html

Back to top
John McGrath [TeamB]
Guest





PostPosted: Fri Feb 25, 2005 11:34 pm    Post subject: Re: Debug Mode Failing Reply with quote

On 2/25/2005 at 5:54:28 PM, John McGrath [TeamB] wrote:

Quote:
I dug into this in detail about 5 years ago. If you want all of the gory
detail, see:

http://tinyurl.com/5ccf7
a.k.a:
http://groups-beta.google.com/group/borland.public.jbuilder.compiler/msg/
cd 82825fb562d843

FWIW, I think that was based on either JDK 1.2 or JDK 1.3. I just checked
JDK 1.5, and it uses the same directories. The runtime source code for
Linux was not available at the time. In JDK 1.5 on Linux, the default
value for "java.library.path" is just the value of LD_LIBRARY_PATH.

--
Regards,

John McGrath [TeamB]

---------------------------------------------------
Before sending me e-mail, please read:
http://www.JPMcGrath.net/newsgroups/e-mail.html

Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> JBuilder Debugger All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.