Hi Everyone,
First I don't know the term of "Proxy Methods" are true way to describe what I need is but let me tell what I really want to know actually :
Suppose I have a class, named Proxy Class containing proxy methods
class ProxyMethods
{
public void CallHelloWorld();
}
actually this is a mirror, actual codes are storing in a web server. So how would this method call the real method that is locating in Web Server without using webservices ?
This way would secure my own code, if a refactoring software refactors the dll located in client's computer, then only thing it would show is that basic method signatures and some connection data which is used to connect the real classes located in Web Server.
So how would I accomplish it ?
Maybe Remoting ?