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 > november 2004 > threads for november 8 - 14, 2004

Filter by week: 1 2 3 4 5

How to make a server self-starting?
Posted by Jeff Brown at 11/14/2004 1:03:50 PM
Hi, I'm just getting started with .NET Remoting. I've written a simple server standalone EXE, and a simple client standalone EXE, and they're working well together. However, I would like to be able to launch only the client application, and have the server application launch automaticall...more >>

Remote event and ASP.NET app
Posted by ptletski at 11/14/2004 12:20:27 PM
Is it possible to have a remote host fire back on an event delegated in an ASP.NET application (i.e., not a web service)? Thanks, Paul ...more >>

Help cant get .Net remoting to work
Posted by midi25 at 11/14/2004 10:18:57 AM
Hi I need some help. I am trying to get a .Net remoting app to work. Heres the story <Server -------------------------------------------------- -----------------------> 1. I have created an empty web project in ISS named RemoteObjects. 2. Then created a Remotable class called Remo...more >>

Asynchronous socket programming vs. remoting
Posted by Michael Lindsey at 11/14/2004 12:12:10 AM
I need to write a server app to send images to client GUIs that are outside of the server's domain. The client will have the file system path to the image but can not access the file system. I am trying to decide if I should use remoting vs. writing a server that uses networkstreams. I have ...more >>

callback to client fails when client is windows 2003 server Standard or Ent.
Posted by al at 11/13/2004 1:20:06 PM
I don't know where to look but my callback to client (tcp 0) fails (it just times out) only when client is Windows 2003 server Standard or Enterprise. I have tested and failed on a Windows 2003 standard server stand alone and domain controller as a client. The server is Windows 2003 server Stand...more >>

Remoting+AnItemInACollection=Error
Posted by Razziel at 11/13/2004 1:13:01 AM
Im trying to develop a small "distributed" application, but i came across with one of those SecurityExceptions new to .NET 1.1. Both server and client are properly configured, i tried using TypeFilterLevel=Full and it does work. But as i have read, if i set the level to Full my application ...more >>

Is FtpWebRequest reliable to send password by using it.
Posted by Umut Tezduyar at 11/12/2004 5:07:31 PM
I found an support class, that is FtpWebRequest class. This class is deriving from the WebRequest abstract class. I tried it, it works fine. But i had some questions about it. To connect to a ftp site, generally password is required. I send my password by setting the "Credentials" property of ...more >>

SQLDataReader.GetValues returns nothing when remoted
Posted by bonescan at 11/12/2004 2:01:02 PM
I'm remoting a class that returns an IDataReader from a SQLDataReader (DotNetNuke.SQLDataProvider) The following code gives me an array of nothing: reader = MyRemoteObject.DataReaderCall(params) objDataTable.BeginLoadData() Dim objValues(reader.FieldCount -...more >>



Set channel type without config file?
Posted by Paul at 11/12/2004 1:32:44 PM
Is there a way to configure remoting "channel type" without using a config file? It seems like a nuisance to maintain an extra config file just for one setting....more >>

Server keeping client objects alive!
Posted by Judah at 11/12/2004 12:40:03 PM
This is a really odd problem I just discovered with our thin client app. We have a client/server solution that utilizes .NET Remoting. Basically, the client will occassionally ask for data from the server, the server will read data from a database and return it to the client. All that works w...more >>

"Invalid Friendly name" error
Posted by bop at 11/12/2004 4:58:04 AM
I get an "Invalid Friendly name" error returned when sending a request through to the Asynchronous Invocation block. The stack trace is as follows: Microsoft.ApplicationBlocks.AsynchronousInvocation.Request.AsyncRequestBatch.CheckFriendlyName(String friendlyName)\r\n at Microsoft.Applicat...more >>

How to execute a command on a network computer
Posted by at 11/11/2004 2:59:21 PM

XML Well Services + .NET Remoting Design Pattern
Posted by Bob Rundle at 11/11/2004 1:07:24 PM
Hey guys, First of all I want to thank the group for all the help I have received over the last few months. I got my .NET remoting demo working and exhibited the thing at an industry trade show...it was a huge success! Thanks especially to Ken and Sunny. Alas...a demo is not good enoug...more >>

Calling delegate on client raises a RemotingException
Posted by Jeremy Chapman at 11/10/2004 2:13:44 PM
I set a delegate on my remotable object but when the server side tries to call the delegate method, I get the exception: System.Runtime.Remoting.RemotingException: This remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or th...more >>

CLOSE_WAIT
Posted by Evan Camilleri at 11/10/2004 1:58:22 PM
I am calling a Windows Service using remoting. All works well but when the service is STOPPED, and OnStop I Unregister the port, then I have to wait sometime prior to re-opening it! NETSTAT gives a CLOSE_WAIT status. Evan Camilleri ...more >>

SigleTon definitive question
Posted by Pedro Gago at 11/10/2004 10:52:14 AM
Hi everybody, I'm doing tests with singleton activation mode and I have a doubt that I can't solve. With two clients, the first function call to a server component wastes more or less the same time in both clients. Someone said to me in this news group that this time doesn't depend on the s...more >>

Lease and Sponsors
Posted by mdb at 11/10/2004 4:07:40 AM
I'm having some problems getting my CAO to stay out of the clutches of the GC... After I've created the CAO, I invoke a function from the client on the server: IServer.RegisterClient(IClient srcClient, ISponsor sponsor) { ... ILease lease = (ILease)RemotingServices.GetLifetimeSe...more >>

asynchonous messaging in.net
Posted by Jim at 11/9/2004 11:46:45 PM
Hi All, I am trying to build an framework that integrates different applications with our ASP.net web application. For example i am trying to build an event model so in a certain event a message is sent over the messagechannel and communicates with other applications. This design patt...more >>

ANN: RemObjects Software introduces the new RemObjects SDK 3.0 for .NET
Posted by Aleks La Rosa [RemObjects Software] at 11/9/2004 5:01:25 PM
RemObjects SDK, the award winning remoting framework for Delphi and Kylix, is now available for Microsoft .NET. The RemObjects SDK allows you to build fully managed multi-tier servers and clients for .NET and Mono, while preserving full wire compatibility with RemObjects SDK for Delphi so t...more >>

Why IIS?
Posted by Roman S. Golubin at 11/9/2004 3:20:44 PM
I do not stand why I might not use tcp over ssl for example? Why Microsoft pull IIS to secure http channels? Why I must install IIS at my users computers? I cannot see any reasons why Microsoft should not recast the Remoting library to support a custom transport sinks! -- With deep concern, ...more >>

Stuck!! Declaring Nested Classes in Interfaces -- Please Help!
Posted by r.groves NO[at]SPAM usa.net at 11/9/2004 11:59:45 AM
Hello- I've exhausted all my other sources for these remoting questions, so thanks in advance for any help you can provide. We have a client/server application. The business rules are contained in class libraries on the server, and an interface is used by the client to access them through ...more >>

multiple ports on tcp channel
Posted by SP at 11/9/2004 11:59:08 AM
I have a remote server with the following config file ..... <channels> <channel ref="tcp" port="54321" name="Secure"> <serverProviders> <provider type="CustomSecureProvider.SecureServerChannelSinkProvider, MySecureChannel" algorithm="DES" /> <formatter ref="binary" /> </serverP...more >>

Maintaining CAO in Web Service
Posted by mtv at 11/9/2004 10:55:06 AM
Hi all, I want to have Web Service that get/create a CAO per client's call. If it's the first time the client calls, a new CAO is created. If it's the latter call(s), retrieve the CAO (belonged to that client). The 2 options I'm looking at are: 1/ Web Service maintains Session to hold th...more >>

Singleton doubts
Posted by Pedro Gago at 11/9/2004 8:48:21 AM
I can see clearly the difference between SingleCall and Singleton. I'm doing tests with Singleton activation method. I've developed an example and I have some strange results. For each execution I open the channel, I do 10 calls to a component server function and I unregister the channel. The co...more >>

Remoting Events Question/Problem (Not Firing)
Posted by Kelly Wilkerson at 11/8/2004 8:24:03 AM
Here is the issue... I have a Remotable Type that is exposed to a Client Application (Windows Forms Application) using a very simple Server (Console Application). The Server should fire an Event (Event B) passing a System.Collections.Queue containing a collection of structs when another Eve...more >>

"Stay alive" algorithm
Posted by Phil Greg at 11/8/2004 6:49:01 AM
Hi, I want to implement an algorithm so that my server can know when one of its clients is shut down. I was thinking of having the client notify the server when it shuts down, but that doesn't work in case of a crash, so I guess I need some kind of a "stay alive" algorithm... I'm pretty sur...more >>


DevelopmentNow Blog