remoting

Multiple database connections in Rails

I'm writing a simpler version of phpMyAdmin in Rails; this web app will run on a web server (where users will be able to indicate the database name, hostname, username, password, and port number of one of the database servers running on the same network). The user will then be connected to that machine and will be able to use the UI to a...

Simplifying Flex deployments in services-config.xml?

I am using Flex/Flash to build a UI which front-ends my Rails server application. I am using WebORB as the communication mechanism. My question should apply beyond just WebORB, however. (I think). Specifically, it has to do with the services-config.xml file. I have a local (laptop) dev environment, a remote dev and a remote production e...

WCF Integration with Legacy Remoting Client

I am facing a problem. Please explain if this is possible or not. 1)I created a Service Library (.Net 3.5) 2)Created a Windows Service (.Net 3.5), added ServiceHost and implemented my ServiceLibrary to work as a TCP Endpoint. 3)Next I created a Console Client (.Net 3.5) and tried to get data from my TCP Endpoint…(svcutil….proxy.cs ...

Employing a proxy in Remoting Concept.

hi I am a newbie in remoting concepts(C# Remoting).Actually i done some projects using remoting concepts, i need to employ a proxy between the client and server , if client wants to communicate with the server or vice-versa it should be done through this proxy only.i saw a namespace Remoting.Proxy ,will it help? anyone giveme some sug...

How to encode (serialize) and decode (deserialize) AMF packets?

Hi, At the moment it seems I've tried every trick in the book trying to get this to work. I need some way of encoding AMF requests and then decoding the responses. At this point I don't care what language it's in, as long as it's doable and free (as in to me), however I would prefer PHP. I don't know what other information is needed, b...

Java Spring remoting options

A little context: I would like to separate the Java application I'm writing into a more or less typical server-client model. I would provide a "server" which takes care of business logic and persistence, but write it in a very service oriented fashion. Any front-end code (GUI) would then call upon the server to provide the functionality ...

PowerShell remote sessions: Problems with ESET Nod32 AntiVirus

I am making my first attempts at using PowerShell remoting features. I've set up the "destination" server using the instructions in the help docs. But when I attempt to start a remote session (by executing an "Enter-PSSession servername1" command), it sits there for a long time, and eventually gives this error: Enter-PSSession : Conne...

PowerShell Remote sessions and scope question: Commands appear to run locally

Here's a sample script that attempts to create a remote session on a server, then use WMI to get a list of the server's IIS application pools, and list their names: function Test-Remoting { [CmdletBinding()] param ( ) begin { Enter-PSSession TestServer $...

.Net Remoting: Can the server reference an interface rather than the object?

Hi all, I am using .Net Remoting in an unusual manner whereby a single client will access many servers (this is unavoidable). To increase maintainability, it would be handy to have the server code reference an interface rather than the remoting object itself so that if a change to the remoting object is needed only the client needs to b...

Migrate serialized objects to new version

Hello Guys, I would like to migrate me previously serialized objects in database to new schema. My previous object. Public interface MyReport { string Id { get; set;} string Name { get; set;} Dictionary<string, string> PropColl { get; set;} } But for some reasons we had to make interface changes Public interface IMa...

Only one usage of each socket address (protocol/network address/port) is normally permitted

I done an application in .NET Remoting. I register a port (8085) in my server application. I have 2000 clients they all send an update every 2min to my server through the same port (8085). I often get an error: Only one usage of each socket address (protocol/network address/port) is normally permitted 2000 Clients -----> From 2000 ...

Designing a client/server app to update client software automatically

I am designing an app using .NET 2.0 remoting. It has a single server and multiple clients which are workstations or laptops which may be on or off-line at any time. Part of the design is that the server holds a copy of the client installer MSI. The plan is that for the first installation, the clients will be rolled-out using group poli...

Request to php file from Flash hangs in Safari

The last two days we've been going over this problem for several hours to figure out what's going on and we can't find any clues. Here's what's happening; We have a Flash application that allows people to place orders. Users configure a product and an image of that product is generated by Flash on the fly and presented to the user. When ...

com+ alternative in .net?

What is the com+ alternative in .net? Is it .net remoting or WCF or something else. ...

why our build does not contain all the required dll's

We have a .net 2008 application which uses two dll's to remote to a server to get information. the returned object. One of the properties of this object is an enum which is held in a third dll. For some reason when we build the third dll is not being added, despite the fact i have now included all three dll's in the solution. at runtim...

Remoting Failed in NAND Networks

hi i am doing projects on remoting,we are using LAN in our Concern my remoting samples works well in our Network.in my client place they are using NAND (NANDING) I dunno what is it my remote samples failed to work in that place what should i do if it must run there also.please help me to find a way out of it. it doesn't raise any exc...

Using facade pattern with remoting?

Hi, I hear about using the facade design pattern with remoting but I can't see the relation between these 2 concepts or how facade would help in remoting scenarios. Can anyone shed some light on this? Thanks ...

Remoting Server hosting in Outlook Addin

Hi, I am developing a software using C# 2.0 that has an windows application and an Outlook Add-In. For IPC, I am using Remoting with Binary formatter. Both component has a reference to a common project "Core" which contains Remoting related class definitions. My add-in is the server i.e. registers the remote object. Now, the problem is...

Serverside cleanup after C# remoting

I have a somewhat simple Client/Server solution running over C# remoting (System.Runtime.Remoting). The MarshalByRef object, which is used for the actual communication, however troubles me. In its constructor it starts up an external process and adds the OutputDataReceived eventhandler. Every 2 seconds the process will write data to i...

.NET IpcChannel doesn't reliably clean up properly?

For some reason, after using an IpcChannel and shutting it down, sometimes the namedpipe stays open, with a thread waiting on it. I cannot make this happen on demand in a debug environment, but it happens 5 to 10 times per day in our production environment. The bad effect this is having is that it is stopping me from unloading the appd...