Hi Paul,
I tried to attach to attach the debugger to a remote process (I am running
my server on another NT machine) but am getting the following error:
"Wrong number of arguments: (lambda (obj field value) "Set the value in OBJ
for slot FIELD to VALUE. ^JFIELD is the s..
I can't see beyond that as this msg is shown in the status line in the emacs
window (status line is the one where I can type is commands like ESC x
tag-search etc.)
I get this error after I enter the remote host name (or the IP address) and
the socket address.
Any pointers will help.
thanks in advance, sandip.
--
Sandip Sarwate
> > -----Original Message-----
> > From: Paul Kinnucan [SMTP:[EMAIL PROTECTED]]
> > Sent: Thursday, January 20, 2000 7:48 AM
> > To: Sarwate, Sandip; [EMAIL PROTECTED]
> > Subject: Re: Unable to debug over an ORB
>
> > Hi Sandip,
> >
> > Setting a breakpoint requires both that the debugger be able to
> "resolve"
> > the breakpoint, that is, verify that the specified location actually
> > exists. Your *JDEbug* buffer shows that the breakpoints were specified
> but
> > never resolved, that is, in addition to this message,
> >
> > Setting breakpoint at line 736 in STARServerImpl.java.
> >
> > you should also see
> >
> > Resolved breakpoint set in STARServerImpl.java at line 736.
> >
> > I'm not sure why the breakpoints were not resolved. Make sure that you
> > compile your server with all debug information. Also, if you used jikes
> to
> > compile your server, recompile it with javac.
> >
> > Another suggestion is to start your server from the debugger rather than
> > attaching to it.
> >
> > But please note I have tested JDEBug's attach feature successfully on
> > MATLAB, a commercial application that embeds a Java vm and thousands of
> > lines of multithreaded Java code. I am able to attach to a running
> > instance
> > of MATLAB, set breakpoints, and step through the code without any
> problem.
> >
> > - Paul