N
n_o_s_p_a__m
My web service has a webmethod whose return type is declared as an
interface type, for example:
[WebMethod()]
public IBusinessProcess GetBusinessProcess() {}
which generates the lovely error:
Cannot serialize interface IBusinessProcess
The returned object (which implements IBusinessProcess), however, is
marked Serializable; but I gather that doesn't matter and that this is
some limitation in web services (because of marshalling)?
Please let me know what's up here. Thanks in advance.
-NS
interface type, for example:
[WebMethod()]
public IBusinessProcess GetBusinessProcess() {}
which generates the lovely error:
Cannot serialize interface IBusinessProcess
The returned object (which implements IBusinessProcess), however, is
marked Serializable; but I gather that doesn't matter and that this is
some limitation in web services (because of marshalling)?
Please let me know what's up here. Thanks in advance.
-NS