I don't quite understand the scenario. AspectJ needs to weave into the bytecode of what you want instrumented. If your web service is to be instrumented the weaver will need to be involved at some point: either compiling that web service with the aspect ahead of time or using load-time weaving to apply the aspect as the web service is loading. If the aspect is running in a separate JVM it cannot affect the web service.
cheers, Andy On 13 December 2013 05:09, Shanmuga Priya R < [email protected]> wrote: > Hi, > I am interested to learn AspectJ. I created webservices with aspectj, > that works fine when the webserice(in Java) and the AspectJ in the same > system. Now i want to split this two (i.e.,) webservice run in one system > and the corresponding aspectj run in another system.. Is the remote access > is possible? If possible please help me. > > _______________________________________________ > aspectj-users mailing list > [email protected] > https://dev.eclipse.org/mailman/listinfo/aspectj-users > >
_______________________________________________ aspectj-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/aspectj-users
