Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Reg:AspectJ joinpoint specification

One '*' too many.

Furthermore, I guess 'connection' is a variable. A valid method signature should contain a class name, though.
-- 
Alexander Kriegisch


> Am 07.01.2014 um 07:53 schrieb Shanmuga Priya R <shanmugapriya1228@xxxxxxxxxxxxxx>:
> 
> Hi,
>     I created web services using java in Netbeans IDE. In that i invoke another web service using using following method call.
> 
>     SOAPMessage reply=connection.call(message,destination1);
> 
>     Now i want to apply aspect for this instruction. I tried with the following instruction using AspectJ.
> 
>     pointcut beforeexeaspect():execution(* * connection.call(..));
> 
>     But it throws the error--Syntax error on token "connection", "(" expected..
> 
>     Can anyone help me for how to give joinpoint for connection.call(message,destination1);
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top