Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet remoting > october 2003 > threads for october 8 - 14, 2003

Filter by week: 1 2 3 4 5

Remoting(C#) & TWO Questions
Posted by Prodip Saha at 10/14/2003 4:23:59 PM
Sorry for too much text to read but I am sure you all faced the same or simillar problem during the course of developing the remoting applications. So, please continue...it will be interesting. I am developing a set of application using remoting architecture. After doing some reading, I have d...more >>


remote component deployment : strange behaviour
Posted by enrico sabbadin at 10/14/2003 1:12:34 PM
Hi, Suppose that a client calls a CAO remote component named C1which in turns calls into another component C2 the method signature is just a simple one such as string GetProcessID() a consle application host the remote component .. both the client and the server configure remoting using co...more >>

Remoting - abstract class definition for collection enumerator
Posted by Andrew at 10/14/2003 11:12:55 AM
When implementing Remoting with abstract base classes in a shared assembly and a custom strongly-typed CollectionBase class that inherits from MarshalByRefObject, how does one define the abstract method for the custom Collection enumerator? Doing this is fine: Method in implementation class...more >>

Client not disconnecting from server
Posted by decrypted at 10/13/2003 11:48:36 AM
I have a situation where I have a client win form app and a windows service acting as the server. I serve my remoting object using RemotingServices.Marshal() and I consume it on the client using Activator.GetObject(). When I am finished working with the remote object, I want to release it...so I...more >>

Log File Locked In Remoting
Posted by integragreg NO[at]SPAM yahoo.com at 10/13/2003 11:38:10 AM
I have an assembly that contains several classes that are used by a Windows Service application. Each class inherits from a base class that provides the capability to log events to a file. The base class uses a shared method to write to a single log file. The service app exposes a top-level o...more >>

Do we still have the 25 connection limit using tcp per cpu?
Posted by GG at 10/13/2003 8:27:22 AM
I am using CAO tcp remoting. Is there a limitation of 25 connections for each cpu? Is one client 1 tcp connection? Thanks *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!...more >>

MS Access to Remoting question
Posted by GarthK at 10/13/2003 7:47:02 AM
This question crosses groups but to avoid cross posting, I'll start here. I've an old VBA DAO app that depends heavily on the typeahead capability in pulldown lists to select records out of a long (several thousand) list of possibilities. I'm looking at a combination of C# on the server and VB on...more >>

Windows Form in remoting server app is not handling event
Posted by RJ at 10/12/2003 10:41:38 PM
I have a Windows Forms application that instantiates an instance of another class that implements a remoting server. Using SAO, with Singleton mode, another Windows Forms application, on the same computer, acts as a remoting client, and calls a method in the remoting server class, simply to pass...more >>



SerializationException, Assembly not found
Posted by raultruco NO[at]SPAM flashmail.com at 10/12/2003 3:57:00 PM
hello, Today i have been all the day trying to run a remoting sample, but i receive the next exception (spanish traslation. The label text could not be exactly): System.Runtime.Serialization.SerializationException: Assembly not found CommonStructs, Version=1.0.1380.42292, Culture=neutral, ...more >>

Know of any Design Patterns for Client/Server architectures?
Posted by Gery D. Dorazio at 10/11/2003 9:46:29 PM
Can anyone recommend some sources of client/server design patterns and/or architectures that target different client/server applications. The idea here is to begin development of some client/server architectures within the Remoting framework. Thanks, Gery -- Gery D. Dorazio Developmen...more >>

Can .NET Remoting make Sockets Obsolete?
Posted by Spiros at 10/11/2003 3:29:09 AM
Hello! I have considered .NET Remoting as an alternative to Sockets in this way: I want clients to send files to a server The files been transfered need to be organized ,when they reach the server.Additional metadata will accompany them. So instead of using sockets and creating m...more >>

Socket bug
Posted by Lloyd Dupont at 10/11/2003 2:12:59 AM
I'm doing some stress test for some TcpIP communication. rougly it's someting like that: for(i=0; i<1000; i++) { Sockect s = new Socket() s.Connect(endPoint); NetworkStream ns = new NetworkStream(s); // .... read / write about 10k random bytes .... ns.Close(); ...more >>

Possible Solution to Serializing Event Handlers in VB -
Posted by Codemonkey at 10/10/2003 3:46:38 PM
Hi, I think I've come up with a solution to some of the problems that I've been having when trying to serialize (and hence remote) objects that have event handlers attached to them in VB. It's a long winded approach, but it gets around the need to implement ISerializable in every class that yo...more >>

DIME HELP (on 98 clients)!!!
Posted by lewilson NO[at]SPAM direcway.com at 10/10/2003 10:16:10 AM
I have a web service that adds a DIME attachment: [WebMethod] public void GetFile(string filename) { SoapContext sc = HttpSoapContext.ResponseContext; DimeAttachment dimeFile = new DimeAttachment("application/DIME", TypeFormatEnum.MediaType, @"c:\temp\" + filename); sc.Attachments.Add(...more >>

network connection state
Posted by Lloyd Dupont at 10/10/2003 12:02:20 AM
I have an application which pool network connection as they are made. and I want to check on the opened one if there is any data available. would it be only for socket I know I have 2 option: call Poll() or Select() Select() is not really proper as the number of socket could grow dynamically...more >>

Is there away to debug remote object that are create in an window service?
Posted by registrationsonly NO[at]SPAM hotmail.com at 10/9/2003 8:23:09 PM
Looking for some tutorials on how to debug remote objects create in window service and use by a client console application. Is there away to attach to these remote objects? Thank You Lukeysan...more >>

CAO,Ingos Factory Class Design
Posted by rob thomson at 10/9/2003 5:41:29 PM
VB.NET COM+ TCP/Binary remoting Hi Im trying to implement Ingo Rammers factory design pattern.=20 I want to be able to hold state on my remoted objects so am using CAO, = and for speed reasons, TCP Binary. I dont want to install the full server install on the client so have = used interfa...more >>

Smart Client Web AutoDeployment, Remoting and Config Files
Posted by Teo at 10/9/2003 4:03:39 PM
Back to this notorious topic being left unanswered despite the many postings. I have a WinForm client application which talks via remoting to another assembly on another machine. The client configures itself using RemotingConfiguration.Configure("<exename.exe>.config"); Remoting wor...more >>

Help -HttpChannel Class
Posted by richf at 10/9/2003 2:23:52 PM
I was trying out some of the sample code for remoting but I cant find the namespace System.Runtime.Remoting.Channels.Http there is System.Runtime.Remoting.Channels - but not a Http or Tcp and without it I cant get the HttpChannel Class - my framework is ...more >>

Sharing Call Context between threads
Posted by Codemonkey at 10/9/2003 12:25:39 PM
Hi, I have a remoting application (client UI/Windows Service server) which uses the System.Runtime.Remoting.Messaging.CallContext object to pass around various pieces of information (UserID etc.) from the client to the server. If I create an new thread in the UI, the Call context for that th...more >>

Singleton only with respect to a single client?
Posted by Gery D. Dorazio at 10/9/2003 12:03:46 PM
Quite a few of the recently posted requests appear to be dealing with sharing the information in a Singleton server object with more than one client. This situation can be seen in many console application samples by running the server and then running multiple clients. To see this problem the se...more >>

Remoting vs ADO.Net
Posted by Pohihihi at 10/9/2003 10:34:26 AM
Hello NG, I have to give a *big* presentation on remoting vs ADO.Net. Different kind of problems are faced by developers and programmers while using ado or remoting in their work. I was wondering if I can get some cases (will be kept anonymous) or details on the problems and advantages so that...more >>

Remoting from dialup
Posted by tegang1891 NO[at]SPAM hotmail.com at 10/9/2003 8:31:23 AM
Is it possible to use remoting from a dialup connection outside a firewall? I have created and tested a remote object that works fine from a PC inside the firewall on our LAN. When I tried the same call from a PC outside the firewall connected thru a modem, the call can't use any remote metho...more >>

Problem Server Activating Class Containing Runtime Callable Wrapper - Please Help!
Posted by C Newby at 10/8/2003 11:23:55 PM
I have a type that I am registering as a well known remote server object. This type contains a method that attempts to instantiate another type that is a VS.NET generated runtime callable wrapper for a third-party COM object. My client has no problem retreiving its proxy of my server object, but ...more >>

Is .NET Remoting deplicated in future?
Posted by Paul at 10/8/2003 2:52:33 PM
I have heard that .NET Remoting is going away in favor of Web Services. Is this true? If so, what's happening in the Web Services world that can help make transmission of text packets more efficient? Thanks, Paul ...more >>

Serializing Events with Handlers
Posted by Anthony Coelho at 10/8/2003 2:48:28 PM
I have a question relating to serializing a class that contains events. Basically I want serialize a class (class1) that publishes an event (event1). Subscribers to event1 could be any type of class and some of the subscribers may not be serializable. My problem is that if I try to serialize a...more >>

Problem with framework v1.1, Remoting and Code Access Security
Posted by stephenk NO[at]SPAM mintek.co.za at 10/8/2003 7:16:16 AM
Hi, I hope someone can help, becasue I have been hitting my head against a brick wall with this. My question is: does remoting change the code access security permissions that a module receives? I will explain. We are trying to port our code from v1.0 of the framework to v1.1 of the fram...more >>

Remoting OleDbConnection...
Posted by G.Ashok at 10/8/2003 12:01:42 AM
Hi, I tried remoting the OleDbConnection, but it is throwing FileNotFoundException (System.Data not found) ....Ashok ...more >>


DevelopmentNow Blog