remoting

Dynamically loaded assembly showing form?

Hi. Is there a way to allow an instance of a class from a dynamically loaded assembly to show a form? I have this plugin system which loads assemblies in separate domains (for unloading them as needed). These assemblies might have settings, and I was hoping I could have each assembly present a form to the end user to allow for editing ...

remoting - information about the client. c#

Hi, Is it possible to find out / get some information about the connecting client when using remoting on .net 2.0? I like to know get some information about the connecting client on the server side, so I can act accordingly? This is a small and very local application that Never will have more then max 10 simultaneously connecting/reques...

.net remoting dependency / reference issue

I’m doing maintenance on an asp.net web app that uses remoting to call a remote server object to order a credit report. The call “works on my machine” but throws an exception “could not load file or assembly ‘choicepointClue’” when run from the production server (which is running the 64 bit version of the .net framework). I resolved the...

simple IPC mechanism for C#/WPF application to implement app CLI.

So I've been reading lots about interprocess communication on .Net. Named pipes, remoting. It all seems great but possibly overkill for what I need to do. I want to add a command line interface to my WPF application, so I need a simple IPC mechanism to send the string from one process to the already running app. What does SO recommend...

Can WCF run on Win2k?

What is needed to either support WCF on Win2k, or at least minimize the effort in supporting remote communication with Win2k servers via .Net? Background: A product I'm working on has a legacy .NET remoting implementation that has been largely replaced by the WCF for new development. The legacy implementation is used as a fall-back fo...

Confusion in .Net Remoting

Hi.. i am studying .Net Remoting i read from MSDN. but in one step i am facing some confusion.. three steps are required for remoting purpose. 1 - RemoteObject 2 - Host 3 - Client creating RemoteObject and Host is fine. i understand all the things. it uses Configuration File for both Host and Client Configuration. in Client it uses...

RemotingServices.IsObjectOutOfAppDomain when it will return false?

As per Remote Object definition -Any object outside the application domain of the caller should be considered remote. RemotingServices.IsObjectOutOfAppDomain -returns false if remote object resides in the same app domain. In the MSDN article "Microsoft .NET Remoting: A Technical Overview" I found the following statement (in the paragr...

Embedding .net remoting program in WEB

So, here is a deal. I have client-server application(dotNet remoting). Client side has few trackbars, checkboxes, buttons and picturebox. Server is a console application and does only calculation from client. Client's picturebox make some visualisation of calculation in picturebox. All calulations and relative classes are in dll file. N...

Remoting (server side)

Hi, I´m relative new on remoting (2.0 C#). Is there any/someway to lock the server side object/instance to one client? I have up to 10 clients that will connect to the server. The server will offer 3 different task/operations/classes and if one client does a request and if the server is not working on that, I´ll like to lock this opera...

Can I create server-side Java classes, OR mapping, and client-side AS classes from a single model description?

I have a Java server application and a Flex client application. For my data model, I have typical objects, like User etc., that are basically the same in the database, the server-side Java code and the client-side AS code. I. e., the public fields of my AS and Java classes are named identically, and have the same types and values as the ...

Difference between Client Activated Objects and Server Activatd Objects

As per MSDN client activated objects creates a connection between server and client whenever proxy gets created but for SAO, connection between server and client gets created only when client invokes web method. i have a doubt tht if proxy gets created(instantiation of proxy) by server then obivously for sao also there shud be a connect...

How does transparent proxy gets created in Remoting

When we use Activator.GetObject the transparent proxy gets created but the server insance is not created? can someboy tell me wat happens behind the scene? I mean if proxy needs to be created then there should be some communication between client and server so it can hold the reference of remote object,but in SAO using Activator.GetObjec...

How to support both HTTP and HTTPS channels in Flex/BlazeDS?

I've been trying to find the right configuration for supporting both http/s requests in a Flex app. I've read all the docs and they allude to doing something like the following: <default-channels> <channel ref="my-secure-amf"> <serialization> <log-property-errors>true</log-property-errors> </serialization> </channel> ...

Flash Lite access complex data on the webservice .net based?

Hi All, I am new to flashlite/actionscript, my problem is.. how can i call a method in the webservice having complex data(return data and paramters), The web service is .net based and it is tuned for a mobile friendly type of webservice(without xsd:import)... And the problem is brought up when the complex data from/parameter of WS is a s...

How Proxy gets created for SAO when client and server share same interface in Remoting

I have doubt realted to SAO object. Fo eg. I have Interface ITest which is in ITestObj.dll and RemoteObject(which is registered as SAO) Test which implements ITest in a server called RemoteObject.dll. Now my client just uses ITestObj.dll and try to create the proxy object using Activator method. As per MSDN- GetObject or new can be used...

Can I use Interface for CAO in Remoting?

In CAO there is no URI, so specified type has to be registered on the server side. But if my client and server interact through the same interface (remote object implements interface) then how can I call CAO remote object from client side. It gives me exception if I try to call Acitvator.CreateInstance using interface type. for e.g. Re...

Unexpected "100 continue"

I have 2 servers that communicates using .Net remoting. For some architectural reasons, I have a proxy between those 2 servers, that removes the "Expect: 100-continue" header from the request that is sent from one server to another. The problem is, that when the proxy sends the message to the second server without this header, the destin...

If I wanted to authorize connections between my client apps.. how would i?

Hi, I am trying to figure out how to handle authentication and data for client applications who will connect to eachother. In other words, each client app would authenticate to.. and use a central service to find out info about the other client so that they can connect directly. Specifically, what should I deploy to accomplish this and...

Problem with .Net Remoting (C#)

I am using .Net Remoting and trying to access a remote object modified in the Server, here is the object def: The idea is that the MRB object, which I create on the server, is returned to the client and "Set On Server" is printed out when getString() is called on the client. What I get right now is a null string on the client, so the M...

(How) Can Terminal Services / Remote Desktop be used to share an Access Database?

The only type of 'remote desktop' application I've used previously is VNC viewer. My understanding of this kind of application is that when multiple users log in to the same VNC server, they share the keyboard, mouse and desktop, so only one person can actually use the computer, whilst the other users can watch what is happening. This ...