create application in .net where dll is on server and application on some client machine
-
can we create an application in C# so that we put a dll on some other machine and application on some other machine. when we run the application it uses dll of that machine and executes the application smoothly. please help i have no knowledge of the topic and provide some help url if any. Thanks and regards
-
can we create an application in C# so that we put a dll on some other machine and application on some other machine. when we run the application it uses dll of that machine and executes the application smoothly. please help i have no knowledge of the topic and provide some help url if any. Thanks and regards
Hi, You can do this by using .NET remoting. Please refer to http://msdn.microsoft.com/en-us/library/ms973857.aspx http://www.codeproject.com/KB/IP/Net\_Remoting.aspx
-
can we create an application in C# so that we put a dll on some other machine and application on some other machine. when we run the application it uses dll of that machine and executes the application smoothly. please help i have no knowledge of the topic and provide some help url if any. Thanks and regards
A better solution is to use a service, web or windows, this being the current flavour of remoting.
Never underestimate the power of human stupidity RAH
-
can we create an application in C# so that we put a dll on some other machine and application on some other machine. when we run the application it uses dll of that machine and executes the application smoothly. please help i have no knowledge of the topic and provide some help url if any. Thanks and regards
Whenever you run an application in Windows, it needs to be able to find all the libraries that it runs on the same machine. In .NET, these are either located in the local directory, or in the GAC. When you think about it, you should be able to see that it could be a major security hole in an application if it relied on components that weren't installed with it and were sourced from an external, potentially unsecured, server.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads
-
can we create an application in C# so that we put a dll on some other machine and application on some other machine. when we run the application it uses dll of that machine and executes the application smoothly. please help i have no knowledge of the topic and provide some help url if any. Thanks and regards
I think so, like a plug-in, but then it won't work if the network is down. Better to copy updates down when available. Provided you can do so securely.
-
Whenever you run an application in Windows, it needs to be able to find all the libraries that it runs on the same machine. In .NET, these are either located in the local directory, or in the GAC. When you think about it, you should be able to see that it could be a major security hole in an application if it relied on components that weren't installed with it and were sourced from an external, potentially unsecured, server.
I'm not a stalker, I just know things. Oh by the way, you're out of milk.
Forgive your enemies - it messes with their heads