Long! Exception details, was: TargetInvocationException because of
FileNotFoundException in client
Tue, 06 May 2008 02:17:34 +0200
Here's the exception info that Visual Studio gave me.
System.Reflection.TargetInvocationException was unhandled by user code
Message="Ein Aufrufziel hat einen Ausnahmefehler verursacht."
Source="mscorlib"
StackTrace:
Server stack trace:
bei System.RuntimeMethodHandle._SerializationI ...
|
TargetInvocationException because of FileNotFoundException in client
Tue, 06 May 2008 02:02:04 +0200
Hi there.
I have a strange problem here. I have a working client/server pair that
communicates through a TCP channel, the "well known object" is known to
the client through it's interface and instanced using Activator.
There are a couple of assemblies involved, but in the end it all comes
down to Frontend, ...
|
Sharing Cookies between service references
Mon, 28 Apr 2008 14:43:41 -0400
Using VS2008, if I have two or more service references that refer to web
services under the same application and session which use cookies to save
sessionid, is there a way to share cookies between the service references?
Best regards,
Metro.
...
|
Problem remoting to SQL Server from a Vista Machine
Sun, 27 Apr 2008 12:11:22 -0400
I have a C# .net app that connects remotely to a SQL Server 2005 database on
a Windows 2003 server machine sitting in Chicago. It connects through a
VPN. Everything works fine when I run the app from a machine running XP Pro
SP 2. When I try to run the same app, no modifications, from a Vista
Business mac ...
|
Ipc Channel events
Sun, 27 Apr 2008 03:37:47 -0700 (PDT)
Hi all,
I develop on .net 2.0 C#.
What can u advice me in the next scenario:
I have (.exe) ipc server and some clients (on the same machine).
I was wondered to know is there possibility that client's will
subscribed to server's event (something like events in .net).
I need that server ...
|
IIS authentication with client activated object in factory pattern
Fri, 25 Apr 2008 18:33:00 -0700
I have a .NET remoting application that is hosted in IIS where I have a
factory class that is defined as a Singleton on the server whose primary role
is to create instances of another remoted object that is returned from a
method in the factory class called CreateInstance. I need all of this to work
with Ker ...
|
Remoting with a Service... Not Listening?
Tue, 22 Apr 2008 10:18:17 -0700
I've written a Windows Service, Listens for Data via TCP, Each listener is
spawned in a new Thread creating a new Listener Object.
I have the Interface for the Remoting Server side on the Listener Class
Object (separate Project that Generates a DLL)
The Service Works and I'm running my code form the Listen ...
|
|
|
Multiple Server Objects Sharing a Common URI
Fri, 18 Apr 2008 18:08:06 -0500
I have an assembly (iFormsServer) that exposes two objects descended
from MarshallByRefObject (iFormClient and iFormInstrument). The server
side configuration is as follows:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.runtime.remoting>
<application>
<channels>
...
|
GC.Collect() not cleaning memory, how to find out what references to lots of memory still exist?
Tue, 15 Apr 2008 14:04:02 -0700
GC.Collect() not cleaning memory, how to find out what references to lots of
memory still exist?
When all my processign is done i set everything to null and then:
GC.Collect();
and then
GC.WaitForPendingFinalizers();
but it still shows that my process takes 400 MB of memory. Is there any easy
way to see w ...
|
Remoting Delegates and events
Tue, 15 Apr 2008 10:40:39 -0400
I am trying to create a remote class that will allow a client to subscribe
to an event using delegates in C#. I have tried to do this my setting up a
class that is marshaled by reference to be used as the object that handles
the event
public delegate void RemoteAlert(string str);
public abstract class R ...
|