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


all groups > dotnet remoting > may 2006

Filter by week: 1 2 3 4 5

System.Net.WebException: The remote server returned an error: (400) Bad Request exception
Posted by Stephen Barrett at 5/31/2006 1:13:26 PM
I am having problems getting remoting working in a new environment. I have an existing environment with a webapp tier, an application server tier, and database tier. The webapp talks to app tier via remoting using a serverfactory/inteface design approach. The app tier is hosted in IIS and...more >>

Cannot create server connection when client already created
Posted by William Sullivan at 5/31/2006 8:53:02 AM
I have a windows service that can be configured via IPC. The server has an IpcServerChannel and the client has an IpcClientChannel. I can create, connect, and communicate fine. The problem is when the service is shut down and started again while the client is still active. The service atte...more >>

remoting and socket exceptions
Posted by dr at 5/30/2006 9:52:02 AM
I currently have two applications that communicate using remoting on v1.1 of the .NET framework on Windows XP. Everything works fine until I unplug the network cable on the machine (it is using DHCP). Then for the next minute or so, all remoting calls fail returning sockets exceptions (conne...more >>

How do I get Events from Remote Class Instance?
Posted by Joseph Geretz at 5/30/2006 2:53:19 AM
I'm working on a class which will provide a single instance across all clients on the same workstation (a 'super-singleton', to coin a phrase). In order to do this, the (super-)singleton class needs to run as a server in a separate AppDomain. Each client requesting an instance actually gets hande...more >>

WebMethod
Posted by Tommaso Caldarola at 5/29/2006 6:20:43 PM
How to implement a web method via remoting? -- Inviato da X-Privat.Org - Registrazione gratuita http://www.x-privat.org/join.php...more >>

Callbacks to client
Posted by Casper Hornstrup at 5/29/2006 6:02:55 PM
I need to invoke a method on the client from the remote server object. How do I do this? Of course you can do exactly the reverse of the client->server scenario, but I thought .NET remoting was smarter than that. A simple example would be nice if you have one. Now I've run into the exception ...more >>

How do I share a Singleton between AppDomains?
Posted by Joseph Geretz at 5/29/2006 3:18:37 PM
I've built a singleton class which I want to share among different application clients (code below). I've confirmed that the singleton class works properly within a single client. Although the application can acquire multiple references to the class, all references point to a single class in...more >>

Remote Assistance Invitation
Posted by janipastor at 5/29/2006 11:41:02 AM
I can't send an remote assistance invitation to my brother, because nothing happens when I click on the icon. I go to the start menu, and click "help and support". The hourglass displays for less than 3 seconds, and then nothing. What can I do?...more >>



.NET Remoting on Compact Framework
Posted by jldearmas NO[at]SPAM yahoo.com at 5/29/2006 9:12:36 AM
Hi At Microsoft documentation is very clear that CF do not support .NET Remoting but... is there a solution from 3rth party or an open source project in order to allow use remote objects from CF. I only need to use remote objects running in .NET (desktop edition) TIA -- Lic. Jorge L...more >>

Free Port
Posted by lroland NO[at]SPAM gmail.com at 5/29/2006 2:21:32 AM
Hi all I have a server where the port number is configurable - if the user changes from the default port I would like some quick way to test if the new port is actually free - the only solution I have come by is to actually bind to the port and free myself from it again. Is there a quicker wa...more >>

Versioning question
Posted by Rick at 5/23/2006 1:42:07 PM
Let me preface my question by stating that I'm a remoting newbie... I've inherited a project that the first version was designed and coded by an outside consulting company. I've been asked to make some changes I've got a client and a server that implement a common interface: using System; ...more >>

Remoting - Strange Behaviour
Posted by nikunjdhawan NO[at]SPAM gmail.com at 5/23/2006 12:08:49 AM
Hi Techies, I am facing a strange problem while working with .Net Remoting. I have a remoting windows service which is running on 8888 port on my Windows XP development machine. I have a ASP.Net application that uses this remote component. Both of the above application are on same machi...more >>

Raising Events from a Windows Service
Posted by Dan Alexander at 5/19/2006 3:46:01 AM
Hi, I've got a problem with Remoting and I was wondering if you kind folks could shed some light on it. Here's the situation:- I have a windows service that gathers information from a source once a minute; After it has gathered the information I need it to inform any client applications ...more >>

.Net Remoting [FieldAccessException]
Posted by chawlaa NO[at]SPAM gmail.com at 5/15/2006 3:39:42 PM
Hi I have an application written in .Net 2.0 using remoting. When remoting is turned on at the client side I get the FieldAccessException. The server is hosted in IIS and is therefore using http channel. The remote class derives from MarshalByRefObject. The remote method just returns a string...more >>

Remote Object
Posted by BADER at 5/14/2006 11:30:02 PM
Is it possible to make a "Form" in the Server App (Server.exe) as the Remote Object instead of a spreat DLL... If yes, please give an example Thanx a lot...more >>

Single Sign-On Authentication?
Posted by Spam Catcher at 5/14/2006 9:13:49 PM
Any ideas on how to handle authentication with .NET remoting? I'm currently using ASP.NET's form auth for login... any good ways of tying ASP.NET logins with remoting calls? Thanks....more >>

Question about performance using remoting
Posted by CodeLookingAhead at 5/13/2006 2:32:02 AM
I have object that has properties such as FirstName, LastName, City, State, I also have a method call Add which contains the logic to insert the previous information in the database. If I use remoting with this object will a trip be made to the server every time I update a property? I really...more >>

Passing values by reference
Posted by Chad at 5/11/2006 4:08:23 PM
I have a class, MyRemoteObject, of which I create a remote instance. I = call a sub, CreateAccountAndUser, passing to the sub an Account object = and a User Business object, both serializable. The sub takes the info = in the busines object and saves the info to the database. The CreateAccoun...more >>

Can I get some information about the client?
Posted by Philip.Arbin at 5/11/2006 8:32:52 AM
When I use remoting, can I get some information (maybe IP address? or some caller ID?) about the client from the server when one of the clients calls the remote method on the server? I want to identify the caller. Is there any pattern about client authentication? ...more >>

Remoting Data
Posted by Robert Strickland at 5/10/2006 6:12:27 PM
Is it possible to use either dataset or datatable to remote between the server and the client? Could someone direct me to a site with this information? ...more >>

problem with COM Object Wrapper or with Remoting... which one?
Posted by ThunderMusic at 5/9/2006 11:07:42 AM
Hi, I have a web project in VS 2005 and I'm using a wrapper to work with a COM object. this object must work in a remoting environment. So we've done a simple console app to give us the access to the remote object. In our test web app, everything works fine... if we copy paste all the cod...more >>

Fat client - Server: Which technology?
Posted by Pieter Coucke at 5/8/2006 3:04:16 PM
Hi, Which technology's are used to make Windows Forms (Fat) Client - Server application with VB.NET (2.0)? - XML Webservices, Remoting, DCOM, ... are there others? - Which are used the most and why? - Pro's and cons? Any help or usefull links would be really appreciated! thanks a lot i...more >>

Multiple channels problem with member objects
Posted by CJ Bourn at 5/8/2006 2:04:02 PM
I have a remoted "server" that maintains a list of objects that are also remotable. The server maintains two channels, TCP for remote communication and IPC for cross-process communication. Remoting seems to get confused on which channel to use when a remote application accesses the server and ...more >>

Serialization and Custom Attributes
Posted by Jon Jon at 5/6/2006 11:03:07 AM
1st please forgive me if I posted this to the wrong news group(s), news group guidance would be appreciated. Question: I have the following sample class generated from XSD.exe (Vs 2005). I would like to set an attribute on each field (LastName,FirstName,etc) that indicates if the field ...more >>

Remoting in Citrix Environment
Posted by DylanM at 5/5/2006 5:51:02 AM
Hi, I have a winforms app that is going to be deployed across a Citrix server farm. The application GUI uses remoting to contact a dedicated server that provides business objects & data access etc. I noticed today that if two users are connected to the same Citrix server & both attempt...more >>

Reference to object in Client application
Posted by Juan at 5/4/2006 6:17:11 PM
Hi everybody!! I'm new on .net remoting. I have configured one object (.dll). I have too a windows service as host of the object and all seems to be ok. When I develop the client application, I need to reference the object (.dll) to have intellisense. But, why I need the object (.dll) to run...more >>

two way comminucation in Remoting
Posted by BJ Honney Cut at 5/4/2006 5:30:01 PM
Is it possible to enable a two way communication via remoting. i.e. from the client side, i execute a method on a server object (singleton) via remoting and also pass a reference of the client object (inherited from MarshalByRefObject) which will be maintained on the server remote object. ...more >>

Stop server thread from client
Posted by Rembo at 5/4/2006 7:05:50 AM
Can anyone tell me how to end a server thread from the client UI? There is a Singleton SAO with some methods. The client (UI) triggers one of these methods by using remoting over a tcp channel. Since the methods are long running I want to be able to stop them from the UI. Thanks ...more >>

Debug Remotable Object
Posted by victor at 5/2/2006 2:31:40 PM
Hi, How to debug / step into the RemotableObject module? I'm able to step into the Server and Client, but not in the RO. Is it because its a DLL? Thanks! victor...more >>

IE hosted windows user controls causes IE to crash
Posted by mschuetz NO[at]SPAM consjuri.net at 5/2/2006 10:43:54 AM
Hello, after having installed the Internet Explorer Update KB912812 I am experiencing trouble with our Windows User Controls, which are hosted in Internet Explorer (6) through ASP.NET application. The IE simply closes, without any message, whenever trying to navigate to a page that holds any Wi...more >>

Asycn TCPListener Sample Stops Listening URGENT!!!
Posted by MSDN at 5/2/2006 8:30:22 AM
I have created a Sockets Sever using the MSDN sample here http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp The problem is when I disconnect a client the server seems to stop listening any ideas would be greatly appreciated....more >>

Remoting access from VBScript
Posted by kiranreddyd NO[at]SPAM gmail.com at 5/2/2006 6:26:19 AM
I have trouble accessing a remoting object from non .Net client say VBScript. I've created a Windows Service written in C#. The Service exposes a remoting object using the http channel. The remoting object has one function - HelloWorld() that returns a string. I can call the function by usi...more >>


DevelopmentNow Blog