Re: java.io.NotSerializable exception when calling EJB from servlet?

2001-09-27 Thread Dmitri Colebatch
The arguments to the remote metho dmust be serializable at runtime. The HttpRequest of Catalina's isn't so you wont be able to do that. What you want to do is extract the values you need out of the request, and pass them to the process method so that the process method is pure business logic and

java.io.NotSerializable exception when calling EJB from servlet?

2001-09-27 Thread Andrew Wright
Hi all, I'm trying to call an EJB method from a servlet. The EJB methods work fine when I use a standalone test app, but die when I make the same calls from a servlet, throwing: java.io.NotSerializableException: org.apache.catalina.connector.HttpRequestFacade The servlet can create the EJB