Remoting and Web Services

Dave McGlade

New member
Joined
Dec 23, 2005
Messages
1
Programming Experience
10+
I have written some remoting modules (RemoteValueHolder, which is derived from System.MarshalByRefObject) that can be called via a Windows application or used by a Web service based on IIS. The application, the Web service and the remote modules are on the same physical machine. When I use the application to call the remote modules, all is well. When I call them via web services I get the message

An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll
Additional information: Server was unable to process request. --> The argument type System.MarshalByRefObject cannot be converted into parameter type RemoteValueHolder.

I suspect it is some permissioning problem but cannot find what or where. Any advice is welcomed.
 
Last edited:
Back
Top