Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] AspectJ in RMI example

Title: RE: [aspectj-users] AspectJ in RMI example

This is just a hint, but remote calls are made by using reflection wich may (?) deceive the weaver for "call" pointcuts. If this is so, maybe using execution pointcuts instead would work ?

-----Original Message-----
From: Josep Lluís Lérida [mailto:jlerida@xxxxxxxxx]
Sent: Sunday, January 04, 2004 5:29 PM
To: aspectj-users@xxxxxxxxxxx
Subject: Re: [aspectj-users] AspectJ in RMI example


Hi,

I forget say that I work with ASPECTJ and Eclipse IDE. I don't work with
JBOSS application server and any other.

Thanks,

Josep Lluís


Josep Lluis Lérida wrote:

>Hi,
>
>I am trying apply the AOP to a simple RMI example CreditBank-Shopper. I
>create an ASPECT that trace public calls and constructors. After startup and
>execution, I am obtaining information over calls in client part: Shopper and
>calls to interfaces STUBs by the client application, and calls in CreditBank
>class, that instance and registry the CreditManager class doing it accesible
>by remote calls. But i can't obtain information over the calls in remote
>classes, CreditManager and CrecitCards.
>
>Somebody can give me an idea how to do it? This is possible to do?
>
>Josep Lluís
>
>_______________________________________________
>aspectj-users mailing list
>aspectj-users@xxxxxxxxxxx
>http://dev.eclipse.org/mailman/listinfo/aspectj-users
>

>


_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top