通过 Web 服务公开 DLL

发布于 2025-01-08 02:23:14 字数 190 浏览 1 评论 0原文

你好,我正在做一个个人项目。这是一个基于网络/文本的游戏。

我计划将我的类制作成 DLL 并在 Web 服务中公开它们的方法。

我很确定这是可能的。但找不到关于如何开始此操作的良好教程。

到目前为止,我知道如何制作DLL,我知道如何创建Web Service。但是有人可以帮助我通过 Web 服务公开我的 DLL 吗?

Hello i'm working on a personal project. It is a web/text based game.

I'm planning on making my classes into DLL and exposing their methods in Web Service.

I'm pretty sure this is possible. But can't find a good tutorial on how to start with this.

So far, i know how to make DLL, I know how to create Web Service. But can anyone help me with exposing my DLL thru Web Service?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风月客 2025-01-15 02:23:14
  1. 创建 Web 服务(例如使用 C#)

  2. 添加对 .dll 的引用(例如使用 PInvoke)

  3. 瞧。您刚刚“通过 Web 服务公开了您的 .dll”。

以下链接描述了如何从 C# 调用 .dll 中的非托管代码。您可以在网上找到许多其他类似的参考资料。无论 C# 代码是用于 Windows 窗体、控制台应用程序...还是 Web 服务,机制都是相同的:

http://blogs.msdn.com/b/jonathanswift/archive/2006/10/02/780637.aspx

  1. Create the web service (e.g. using C#)

  2. Add references to your .dll (e.g. using PInvoke)

  3. Voila. You've just "exposed your .dll through a web service".

Here's a link describing how to call unmanaged code in a .dll from C#. You can find many other, similar references on the web. The mechanism is the same, regardless if the C# code is for a Windows form, a console app ... or a web service:

http://blogs.msdn.com/b/jonathanswift/archive/2006/10/02/780637.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文