all groups > dotnet remoting > august 2003 > threads for august 8 - 14, 2003
Filter by week: 1 2 3 4 5
Passing User Types to Remote Calls
Posted by Richard Bell at 8/14/2003 5:43:27 PM
I am trying to pass a user defined struct to a method of a remote class. The
struct is defined in a separate assembly accessible to both client and
server. However, calls to the method are refused with the message 'Because
of security restrictions, the type MyType cannot be accessed.' Many thanks... more >>
How can i force a remote object to be destroyed before its lease has expired ?
Posted by Elp at 8/14/2003 12:10:52 PM
Hi,
does anybody knows how i could destroy an object, exposed as singleton via
..NET Remoting, without waiting the end of its lease ? I've tried the
RemotingServices.Disconnect method but it doesn't work at all : my object is
unreachable by the client by still there.
Or is there a way to ma... more >>
Plan B
Posted by Russ at 8/13/2003 7:42:42 PM
Hi,
I'm using VB.net 1.1 to build a Web based server and a Windows based client.
Having read through two books and various articles I'm beggining to wonder
if this is simply beyond my mental capacity. Sorry this goes on a bit, but
any help would be greatly appreciated.
I have a 'contact' ... more >>
singleton-singlecall
Posted by Krijn Michiels at 8/12/2003 12:58:56 PM
Hello,
I have a server - application (windows service) with 40 wellknown remote
objects. All of these objects expose Get and Save methods witch return and
accept only datasets (or integer,strings, ..).
Because the methods or very small (select from a DB) the application works
fine with single... more >>
Windows Service with GUI Config/Monitor Tool via Remoting
Posted by m at 8/12/2003 12:46:22 AM
Hello,
I have been searching for a solid example of using a GUI app to control and
monitor a windows service via .net remoting but unfortunately I cannot find
anything that is relevant. I will have a windows service that will be
performing various tasks throughout the day on a schedule, I need a... more >>
Channel and RemotingServices - where's the 'connection'?
Posted by Gramps at 8/11/2003 2:30:42 PM
Hi,
I'm just starting out with Remoting and have come across a number of 'host'
examples that each register a channel and then 'publish' the remote
object,like so:
..
..
Dim channel as New TcpChannel(x)
ChannelServices.RegisterChannel(x)
Dim exchange as New Exchange()
RemotingServic... more >>
Can I restrict windows service hosted server is only used by local client?
Posted by lily at 8/11/2003 2:15:33 PM
As the title, I don't want any client on other machines to use my remote
object, except the local client. Can I do that?
Thx
... more >>
Any security risk when using windows service for local server?
Posted by lily at 8/11/2003 2:08:59 PM
Our server will be configured to use IIS when remoting is needed, or
configured to use windows service if we only need local client. when using
windows service for local server and client, because we opened a port, can
any one from other computer break into that port and get anything send
betwee... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Hosting remoting server in WinForms app
Posted by Robert Koval at 8/11/2003 10:28:49 AM
Hi I am looking for an example how to use a remoting server inside WinForms
app. My scenario is simple: When app starts it listens to incoming messages
and modifies GUI based on that.
Any help is appreciated.
Thanx
Robert
... more >>
"Port Pooling?"
Posted by Microsoft News Group at 8/11/2003 10:05:44 AM
Does .NET Remoting support some type of "port pooling". When specifiying a
port of 0, the system will choose an unused port. But once released is the
system smart enough to keep the port open and reuse. Basically like ADO
connection pooling?
Any insight would be appreciated.
- Jason Gaun... more >>
differences between : new, GetObject(), CreateInstance() ??
Posted by Christian at 8/9/2003 5:02:38 PM
Hi,
1) a client can activate a remote object by using either :
- new
- Activator.GetObject
- Activator.CreateInstance
What are the differences/advantages/disadvantages between the different
approaches ?
2) What is the difference between server-side a... more >>
Running a listener console app outside of VS.Net
Posted by STom at 8/8/2003 1:17:29 PM
I have a strange incident happening when I'm doing development for .Net
remoting.
To implement the listener, I have a console project that just calls
RemotingConfiguration.Configure and then GetRegisteredWellKnownServiceTypes.
I then do a Console.Writeline and the window just sits there.
Th... more >>
Server sink problems - configuration file <> hardcoded configuration
Posted by Arne Madsen at 8/8/2003 12:05:36 PM
Hi,
I've used a server sink to find out who the client is, this works fine when
I use a configuration file on my server, but if I try to hardcode the
details, my client can't access the server.
Can anyone help me out
TIA
Arne Madsen
Denmark
ConfigurationFile - works fine
<?xml ver... more >>
Crystal Report Remoting Issue
Posted by dnemeth NO[at]SPAM earthlink.net at 8/8/2003 3:17:16 AM
I am trying to expose a remote reference to a Crystal Report (version 9.2.2)
from a server. I'm able to gain the Transparent Proxy on the client without
issue, however, when I attach the object to my
CrystalReportViewer.ReportSource, I receive an "Unable to load 'clr:
CrystalDecisions.Shared.IR... more >>
|