all groups > dotnet remoting > september 2006 > threads for september 22 - 28, 2006
Filter by week: 1 2 3 4 5
Interesting Socket error when contacting .net remote server
Posted by balak at 9/28/2006 10:44:01 PM
Server machine
===========
I have a .net remote server application (console app hosting a .net remote
object) installed on the server machine.
Client machine
==========
I also have a windows service on another machine (client) that creates the
remote object and makes calls on it. The rem... more >>
httpchannel timeout property
Posted by silva.sergiomanuel NO[at]SPAM gmail.com at 9/28/2006 6:03:06 AM
Hi,
This property is not working with asynchronous request. why??
I really need to implement timeout in remoting http requests.
Are there alternatives??
Thanks in advance=20
S=E9rgio Silva
... more >>
Server Hangs if Client Hangs
Posted by Spam Catcher at 9/27/2006 5:21:49 PM
Hi all,
We have a remoting application (.NET service) which fires off "events" to a
client via delegates.
If the client hangs (i.e. goes into sleep), the server will eventually
hang.
Could the server be running out of delegates?
Is there a maximum number of delegates in .NET?
Ar... more >>
How to break sink chain
Posted by sirtap at 9/26/2006 11:05:03 PM
Hello
I have implemented a sink (.net remoting) and I wonder how could I break
the process of execution of a remote method.
For example, I check a data in CallContext
string session = (string)lcc.GetData("www_session");
and if session is incorrect a don't want to call a method in r... more >>
What happens to an exception thrown in asyncronous call.
Posted by Douglas Peterson at 9/26/2006 7:38:54 PM
So I have this (singleton) remote object. It has a delegate for a data
change event:
public delegate void DataChangeEvent();
When the client(s) connect to the object, they add themselves as listeners
to the event:
remoteObject.dataChangeListeners += new DataChangeEvent(some function);
Wh... more >>
Multiple clients using same remoting object.
Posted by Douglas Peterson at 9/26/2006 4:03:26 PM
I created a simple client and server using the remoting example in the MSDN
Library.
Run the server and client, works fine.
Now run a second instance of the client (at the same time as the first) and
I get the following exception:
"Only one usage of each socket address
(protocol/network ... more >>
Problems using 1.1 BinaryFormatter from ASP.Net 2.0 web applicatio
Posted by dethomps at 9/26/2006 7:31:02 AM
Hi,
I've encountered a problem with a cross-firewall Remoting application which
uses a BinaryFormatter. The application was built with Framework 1.1 and
works fine when accessed from 1.1 applications, but throws the following
exception when accessed from a framework 2.0 application:
... more >>
How many remoting calls are queued?
Posted by Greg Nagel at 9/26/2006 12:00:00 AM
Hi All
I'm starting to wonder about the performance of our remoting calls and not
sure where to look to confirm my suspisions.
I've got 3 websites all making remoting calls to the app server. The app
server then makes calls to the various backends.
From what I know the remoting calls ar... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Custom Exception via Remoting
Posted by GP at 9/22/2006 2:20:02 PM
I've created a custom exception class that is marked Serializable and
implements the ISerializable interface. I am throwing this custom exception
across my remoting boundary. It works just fine when the remoting client is
a Windows forms or console application, but if I use a .NET COM-expose... more >>
|