Good day to all,

The cause of your (and my) debugging woes is that orion does make the source of
it's wrapper classes available to us developers. There is a split second while
orion is deploying your app that the source files exist in the orion root
directory, but the they are quickly snatched away from the prying eyes of hard
working developers. So in short you are seeing the message correctly, and there
is not a debugger in the world  (except for a few that decompile classes for
you) that can step through source that does not exist. :)what I generally do in
a case like yours is set a breakpoint directly after the call you are interested
in. That way you can hit F9 when you get your icky message and still monitor the
results of the call. Also placing a break point in the ejb class itself will
provide a way to step into the ejb.

HTH

Russ White

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Darren Pamatat
> Sent: Wednesday, December 27, 2000 9:12 AM
> To: Orion-Interest
> Subject: Can not locate ..... when running orion under Jbuilder?
>
>
> I have just started working with orion, and have just
> sucessfully finished getting the orion primer ejb
> example running. All works fine.
>
> Now I'm trying to get this to run under the debugger.
> I have setup Jbuilder 4 projects with all the
> necessary orion libs as per doc on setting up JB4 with
> orion, and can run the orion app inside. I have even
> got a simple servlet working where I can step through
> it's code.
> The problem is, when I try this with the orion primer
> simple ejb example, I hit the servlet, and it stops on
> a break point. Good. Now I start stepping over, until
> I get to the line:
>
> answer = _hello.sayHello();
>
> I try and step into this, and the JB debugger won't
> let me. It states in the status bar in red:
> "Can not locate
> Hello_StatelessSessionBeanWrapper0.java from project
> source/class path"
>
> I'm not sure where this file is, as I searched and can
> not find it on my system anywhere.
>
> Is there any way to debug orion ejb components inside
> JB? Any ideas as what I'm doing wrong?
>
> Thanks,
> Darren
>
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Shopping - Thousands of Stores. Millions of Products.
> http://shopping.yahoo.com/
>
>


Reply via email to