Seam 1.0.1 GA
My remoting just stopped working on my POJO:
java.lang.RuntimeException: No compatible method found. at org.jboss.seam.remoting.Call.execute(Call.java:118) at org.jboss.seam.remoting.ExecutionHandler.handle(ExecutionHandler.java:92)
if (component.getBusinessInterfaces().size() > 0)
{
// Get the local interface for the component - this is the type that we're
// going to assume we're invoking against.
type = component.getBusinessInterfaces().iterator().next();
}@WebRemote
public double getEditValue(int gridX, int gridY) {...}@Name("liveReportBean")
@LoggedIn
@Scope(ScopeType.CONVERSATION)
public class LiveReportBean
implements UserContextChangeListener {...}It is a bug, fixed in CVS now.
Thanks!