是否可以通过 Web 服务在远程计算机上调用?
我的情况是这样的..
我有一些代码与 MMO(用 C# 编写的 DLL)接口,我希望通过将其放入 Web 服务中并调用它来隐藏其中的一些代码。我不希望我的 C# DLL 仅仅被反转并暴露我正在做的事情的方法。
例如..
假设我想将按键消息发送到 MMO 窗口,但我不想将该代码实际放入用户计算机本地的 DLL 中。我想通过网络服务调用 PostMessage。有道理吗?
据我所读,这是不可能的。还有其他选择吗,还是我运气不好?
My situation is this..
I have code I use that interfaces with an MMO -- a DLL written in C# -- and I was hoping to hide some of it by putting it in a web service and calling it. I don't want my C# DLL to merely be reversed and expose my method of doing what I'm doing.
For example..
Say I want to PostMessage a key press to the MMO window, but I don't want to actually put that code inside the DLL local to the user's machine. I wanted to call the PostMessage via the web service. Make sense?
As far as I've read, it's not possible. Are there alternatives, or am I out of luck?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有些产品可以防止 .net dll 上的反射,它可以解决您的问题。
http://www.remotesoft.com/salamander/protector.html
Some products can prevent reflection on .net dlls, it could solve your problem.
http://www.remotesoft.com/salamander/protector.html