all groups > dotnet remoting > july 2004 > threads for july 29 - 31, 2004
Filter by week: 1 2 3 4 5
Problems with remoting objects which hosted in Windows Service
Posted by notacat at 7/31/2004 6:37:03 AM
My Remoting service objects works fine when hosted in a plain Console Application.
But when I run it in a Windows Service, it works only partially. Clients can make calls to its' methods, but can't subscribe onto its' events. When client tries to do something like this:
MyObject.MyObjectEvent ... more >>
Remote Object Not Found When Service Installed with Setup Project
Posted by Jim Davis at 7/31/2004 12:37:44 AM
I have a simple remote object that is hosted in a Windows Service. I
register the WellKnownType via the services app.config file. I look up the
path to that file using
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), then pass
that to RemotingConfiguration.Configure(path).
I... more >>
One config file for IIS and custom app server
Posted by Christian Jung at 7/30/2004 5:19:10 PM
Hello,
we usually use IIS as appserver, but for one customer we are not allowed to
do so. For this reason we have written our own appserver to host the remote
objects. For the sake of simple configuration management it would be great
if our own appserver could use the same web.config file as I... more >>
Examples on remoting in vb.net
Posted by Will at 7/30/2004 4:31:39 PM
I'm looking for ant tutorials or examples concerning remoting with vb.net.
Thanks
... more >>
Advice on remoting vb.net
Posted by Will at 7/30/2004 4:30:29 PM
Looking for some examples and or tutorials for remoting with vb.net.
Thanks.
... more >>
CAO First Method Call Slow
Posted by Jason at 7/29/2004 12:47:48 PM
I am having an issue w/ the performace of a CAO. The first method call seems
to take between 7 and 30 seconds to respond when the server and client are
on different machines. If they are on the same machine, the performance is
fine. It seems to me like the response should not take this long. Am I... more >>
Limitation of events over SOAP/HTTP
Posted by Luke Church at 7/29/2004 12:34:59 PM
Hi all,
I'm currently doing priliminary research into the usability of event passing
through remoting. I've been experiencing some difficulty.
Using a sample that I found I now have the eventing working successfully
using a BinaryServerFormatterSinkProvider and a TCP Channel.
Ideally I wo... more >>
Are callbacks supported - How do I subscribe to an event within a remote object from the CLIENT side
Posted by Chester West at 7/29/2004 11:02:35 AM
After MANY hours of frustration, I've finally gotten an object to create...
However, I am attempting to get a callback by using delegates at both the
server and client.
The server and the client are one in the same application, just run on
different machines.
I've learned the hard way, th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
PRB: Remoting and COM-Interop
Posted by news NO[at]SPAM esna-ashari.de at 7/29/2004 5:13:27 AM
The problem:
I developed a remoting server and a corresponding client dll. I used a
dll as the remoting client because I want to prevent my applications
from knowing remoting details.
So applications call functions in the remoting client dll. This dll
talks to the remoting server via tcp and re... more >>
System design: management of server side application threads
Posted by timasmith NO[at]SPAM hotmail.com at 7/29/2004 3:47:31 AM
Hi,
I have a system which comprises of a number of server side application
and services. There is a thread per service or application and some
threads may also create their own application threads.
ServerApplication.exe
----------Controller Thread
... more >>
|