Said, One thing I can see is that you are referencing the SimpleSessionHandler by the wrong name in the request and response flows of your service:
> <handler name="SimpleSessionHandler" > type="java:org.apache.axis.handlers.SimpleSessionHandler"/> > <service name="MyService" provider="java:RPC"> > <requestFlow> > <handler type="session"/> > </requestFlow> > <responseFlow> > <handler type="session"/> > </responseFlow> > ...... > </service> You give the handler the name 'SimpleSessionHandler' which is fine, but you then try to reference this using <handler type="session"/> which should infact be <handler type="SimpleSessionHandler"/>. HTH Jim
