Hello,
I have a .NET remoting service listening on a Windows 2003 Server. As far as I know, the Windows Firewall is properly configured to let the information of the Remoting Application go out.
In my PC I have the other part of the communication, trying to execute methods that lives in the Remoting object. In theory, there are not fir...
... I mean I can write down my own classes that generate JSON but I'd rather not :)
...
I have two applications --> App1 and App2. App1 opens App2 by passsing some command line arguments using System.Diagnostic.Process(). The user now accesses App2.
However, when the user changes some command arguments in App1, I need to open the existing aplication (App2) without closing it using the new parameters.
How can I do this?
A...
I have an application that needs to be called upon by a second application. These applications need to find each other without configuration (preferably without touching the registry) and function in a terminal services environment properly. I have heard that .net remoting using named pipes may be a way to accomplish this but I do not ...
How do I limit my amf sessions to flex over pyamf?
I have set up a pyamf gateway to that serves value objects that originate from a django admin panel, through sqlalchemy to my authenticated flex client. It's working great, however there is a problem. My sessions are persisting and clogging up the server, so after about 20 or so AMF ses...
I have a COM+ object which is not stateless (it takes a while to initialize, and maintains large objects in RAM). I want to expose its functionality to other applications / hosts via web service or TCP/IP.
I saw that COM+ Component Services have a built-in capability to create SOAP wrappers and attach them to IIS. However, it looks lik...
Hello guys,
I have an Assembly Library1.dll which contains some Interfaces, which were serialized as a byte array into the database. For some reasons we have to change the Interface properties and defintion. so now i am writing a migration utility. So i have 2 versions of Library1.dll , In my utility i have created a folder where i stor...
Hi there,
I am using client side configuration files for a .NET remoting client, and the
RemotingConfiguration.Configure()
call successfully completes. I have referenced the library where the remote objects are defined in my client.
The problem I am having is that after configuration, when I try to create a remote object using new(...
Hello Guys,
I am running into this massive problem, I have to for various reasons change the Interface defintion to something different. This interface was serialised as a blob into the database. Now i am trying to do the migration of old blob into new blob . But i have managed to maintain the original contract defintion side by side to...
I've got a .NET application that uses Remoting between an Administration Console and a Server application.
During a particularly long running remoting call, I will get an error message, displayed below.
I have added the Sponsor to the client to prevent the Remoting connection from being closed, and I have verified the Renew() method is...
hi
I am doing applications in .net remoting.actually we register a channel in the server side and connect the client using the iP and port of the server,but i want to send my messages from client through a specific port for ex: 8085 or 8086.how to achieve this?
...
Can synchronous members of remoting proxy object be called from multiple threads simlutaneusly ? Auto generated proxy, in my case it is .NET1.1 remoting.
The server model is SingleCall (but I guess that this is not importantn for client model).
Or it is necessary to synchornize access to the proxied object ? I have only ane channel and ...
Hello everyone, I have a project with requirements:
Clients connect to server through internet (WAN) to get data.
Server can notify to clients when server has new data.
P/S: Client is a .NET WinForm application. Someone suggest me to use .NET Remoting but it only works well on LAN and it has problem when send event to clients through...
Hello,
Is it possible to implement a system similar to this:
1 Centralized assembly storage in a central web application
N Client web applications consuming types in assemblies in this centralized web app.
It should work this way.
I design an interface and deploy it
with every client application
Client application request for a spe...
Hello everyone,
Like you know, .NET Remoting has some limits, one of them is that server can't send event to internet clients across NAT/firewall.
This is an evidence: http://social.msdn.microsoft.com/forums/en-US/netfxremoting/thread/6a91626a-3c44-45a1-b0f8-dbf4042f51e4/
And today, I have a plan to improve .NET Remoting so that server...
Hi
I am trying to run a service under a different user account from the application that will access the service via remoting.
While under the same account everything is fine, but as soon as I use different accounts, I get an access denied error while trying to open the IPC port.
Is there something I am missing, as I can't see from th...
Hi,
When a MarshalByRef object is passed from an AppDomain (1) to another (2), if you wait 6 mins before calling a method on it in the second AppDomain (2) you will get a RemotingException :
System.Runtime.Remoting.RemotingException:
Object [...] has been disconnected or
does not exist at the server.
Some documentation about t...
In my application, client can request service from server side while server can send events to client side.
In .NET remoting the event mechanism is implemented by bi-directional channels, while in this case the actual client plays another role of "server" for events. Normally the client will open a free port for this kind of communicat...
Anyone know if it is easily possible to send **kwargs over PyAMF from NetConnection.call()? I would like it.
I could write a wrapper around the actual function and expose that and perform some parsing manually to determine the kwargs to pass in, but I don't want to do that. I will just use a normal argument list in that case.
...
Coming from a Java background, this is the way I'm thinking:
The server provides an object to the client. This object should be able to execute on the server.
Server:
private string _S = "A";
public interface IFoo { void Bar(); }
private class Foo : IFoo {
void Bar() { _S = "B";}
}
public IFoo GetFoo() { return new Foo(); }
C...