I can't seem to find it. Where'd it go?
...
more >>
I'd like to use RemotingConfiguration.Configure to configure my server, but
I don't want the server to automatically start listening. I fished around
in the docs but didn't see anything that would let me do this.
I realize I could do everything programmatically, but that's an inferior
solutio...
more >>
The problem started when I moved the server from a console application
(for testing) to a Windows service. As a console application, the
server worked flawlessly, as a service I get NullReference exceptions
on the client when trying to call only SOME server methods. About 80%
of the methods work...
more >>
If I have an assembly named MyRemoteObj of type MyNameSpace.MyRemoteObj in
MyRemoteObj.dll and the following code snippets, it's not clear how the
framework knows to look in this particular dll for the assembly:
MyRemoteObj.exe.config snippet
....
<wellknow mode="SingleCall" type="MyNameSp...
more >>
In my remoting object, I do the following to pass the exception back up =
to the client:
Catch ex As Exception
Throw ex
An exception is thrown back to the client indeed, but the exception =
message is not being passed. For example, in the remoting object, if I =
put a breakpoint on the Thr...
more >>