all groups > dotnet remoting > march 2007
View clients connect to my remot object
Posted by Augusto Arias at 3/31/2007 11:59:23 AM
I published a remot object using TcpChannel with WellKnownServiceTypeEntry.
How i can view who users are conected to my object?.
thanks.
... more >>
UDPClient Broadcast Receive Error with PPPOE
Posted by greenxiar at 3/24/2007 8:50:01 PM
My Computer is Win2K3 R2, Code is:
using System;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace TechUDPBroadcast {
class Program {
static void Main(string[] args) {
const string addr = "224.1.3.99";
const int prt = 12799... more >>
exclusiveAddressUse not doing what i thought it would do
Posted by Orlando at 3/22/2007 6:38:00 PM
Hi,
Why can't i run multiple instances of the following application at the same
time? I was hoping that setting exclusiveAddressUse to false would allow
multiple processes to listen to the same port. Instead I get a socket
exception on the second process saying "Only one usage of each socke... more >>
Asynchon Delegate vs MSMQ ???
Posted by calderara at 3/22/2007 1:37:05 PM
Dear all,
I am building a 3 tiers application under .NET 2.0. This application is
based on different library ore compoenent which ahve there own purposes. At
first this application will run on a local machine but in order to get a
future vision I could imagin that layers can be split anywhe... more >>
Remote desktop is failing
Posted by M. Cooke at 3/22/2007 9:08:11 AM
I am trying to allow other users to access my XP pro PC and the RDP fails.
I have dropped the firewall. I have checked the enable remote access. I have
verified that tcp is listening on port 3389 via netstat -a -n. I have tried
using tools like portqryui and keep getting that this port is being... more >>
remoting newbie
Posted by Jesse Aufiero at 3/21/2007 7:58:58 PM
Hello,
I know very little about .net remoting but it sounds like a potential fit
for the architecture of a system I am setting out to build.
The system revolves around one large data table (75 plus columns, 250 rows)
which contains values that are ultimately presented visually, as curves, ... more >>
Cached Data through .NET Remoting
Posted by Greg at 3/20/2007 9:32:45 PM
Hi,
I am looking to build a solution whereas I load a large dataset via a
Windows Service and then make that dataset available to my other
applications via .NET Remoting. My other applications connect through
web services and loading the data over and over again is a lot of
resources and add... more >>
Send a word document
Posted by lil J at 3/19/2007 12:00:00 AM
how can I send a word document over remoting from a client to a server?
i think, i have to stream the file, but i don't know how, and
how to put this stream together on the client
thanks,... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Passing file descriptors between processes in .NET
Posted by Steve Jones at 3/15/2007 2:52:03 PM
Can this be done? I know that using marshalling you can send objects between
processes and/or AppDomains but what about sending file descriptors? In Unix
(sorry) you do it with a special setup socket call and let the OS kernel do
it's black magic to "convert" the file descriptor to something... more >>
ThreadAbortException fails to get thrown from thread making remoting call.
Posted by Howard Swope at 3/14/2007 9:56:04 AM
I have a thread that is making a remoting call. Another thread calls to
abort this thread, which is supposed to fire a ThreadAbortException on the
thread that is making the remoting call. This does not happen.
Any thoughts?
--
Howard Swope [hswopeATtrafficDOTcom]
Software Engineer
Medi... more >>
Server availabililty
Posted by victor at 3/12/2007 4:47:23 PM
Hello,
Is there a way the Client can ask the Framework whether the Server is
started/running, without the use of a Try-Catch ?
Thanks, victor... more >>
Help Needed..dotnet remoting security issue
Posted by sumu at 3/8/2007 1:45:03 AM
Hello,
I am trying to develop a dot net client server application.My
application works perfects on LAN..The problem arised when i tried to
host the remote object in a webserver.
The error i get is
" Type System.DelegateSerializationHolder and the types derived from
it (such as System.Dele... more >>
VBScript not getting Exception details
Posted by James at 3/7/2007 6:21:24 PM
I have a remoting object hosted in a Windows Service. One of the clients is a
VBScript that invokes a proxy CCW dll. The script gets all
ApplicationException details but no system exception (Exception,SqlException
etc) details.
An example error message displayed has:
Error: System error... more >>
|