all groups > dotnet remoting > may 2005 > threads for may 1 - 7, 2005
Filter by week: 1 2 3 4 5
Marshalling in new AppDomain while hosting in IIS
Posted by Vladimir Zdorov at 5/7/2005 1:18:02 PM
I want to marshal object in an IIS hosted application. It works fine when
RemotingServices.Marshal is called in the original AppDomain. But when I
create new AppDomain and marshal there, the object cannot be accessed
remotely.
Could anyone please suggest hot accomplish that?... more >>
Using GUI from .NET Remoting events
Posted by david.blackhole NO[at]SPAM gmail.com at 5/6/2005 11:01:42 AM
I have a server with .NET Remoting object, which has significant
number of events. I want to use these events from my client GUI
application. When an event is passed to the client application, it is
running under MTA (Multithread Apartment) and I have to use
Control.Invoke() to marshal it to STA... more >>
remoting - nasty bug?
Posted by David Krmpotic at 5/6/2005 12:00:00 AM
In specific (repeatable) cases the client fails to connect to the server
running on the same machine. The client receives the
System.Net.Sockets.SocketException: "A socket operation was attempted to an
unreachable host" although the server is still running and listening on the
right port (45326 ... more >>
Peer-to-peer - step 1
Posted by Jon Shemitz at 5/5/2005 9:34:57 PM
I'm trying to write a very simple peer-to-peer WinForms app, using
..NET remoting.
In my form load, I register as a server:
TcpChannel Channel = new TcpChannel(Port);
ChannelServices.RegisterChannel(Channel);
RemotingConfiguration.RegisterWellKnownServiceType(
typeof(Message),
... more >>
Problem Using-Dataset Serialization Using DatasetSurrogate from KB 829740
Posted by HankD at 5/4/2005 12:14:46 PM
I have a simple remoting setup that returns a dataset. I decided to try
to improve my performance by using the DatasetSurrogate class from
http://support.microsoft.com/default.aspx?scid=kb;en-us;829740 The
results was the time to retrieve 11,000 rows nearly tripled. I am
assuming I have done so... more >>
Windows service and remoting
Posted by Ray5531 at 5/3/2005 3:00:22 PM
We have a solution consists of an O/R mapper project,Business Logice layer
and a Web application.I need to add a windows service to this solution and
add the business logic layer as a reference to my windows service.We are in
development phase and it's very probable that the business layer is ... more >>
GUIs and remoting
Posted by mccownf NO[at]SPAM yahoo.com at 5/2/2005 9:45:08 AM
I have seen posts by many beginners asking how to use remoting with
GUIs. In my own experience, I have instantiated the remote object
within the server's form object, made it available to clients using
RemotingServices.Marshal(), and attached event listeners to the object
so my GUI could displa... more >>
Problems with remoting to a web farm
Posted by Michael Per at 5/2/2005 8:49:52 AM
The application works fine in single server environment. The
application makes remoting calls through the binary formatted http
channel to a remote object hosted in IIS (IIS6 on Win2003). The
remoting url is protected in web.config for Windows authentication.
The new web farm includes 3 nodes ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
namespace err
Posted by Jeebu at 5/1/2005 12:00:00 AM
hi,
is there any configuration to set for remoting.
i can acess upto using System.Runtime.Remoting.Channels; i cant access http
and tcp
plz help
thanx in anticipation
jeebu
... more >>
|