Let's say I have remote interface A:
@Remote
public interface A {
public Response doSomething();
}
And implementation:
@Stateless
public class B implements A {
public BeeResponse doSomething() {...}
}
Where:
- BeeResponse extends Response.
- Response is located in the EJB-API jar and BeeResponse is in the implementation jar.
- Response and BeeResponse have different serialVersionUID.
My assumption is that the unmarshalling of the response from B will fail, am I correct?