Hi all.
I've try to expose to the client(gwt) an aspectJ method through gwt-rpc, but the gwt client can't find the method defined in an aspect. The class that i expose implements IsSerializable and only it's method are visible to the client interface...the method added by their aspect contrariwise no. How i can fix this? thanks in advice.
p.s. i post a little example for more clarity:
this is the class...
and this is the aspect...public class Example implements IsSerializable{
private String name;
public setName(String name){
this.name=name
}
}
The Example.getVersion() method is unavailable on the client side.privileged aspect Example_x{
public int Example.getVersion() {
return this.version;
}
TNX


Reply With Quote
