mvc asp .net 中的 Web 服务部署问题

发布于 2024-12-25 10:33:29 字数 199 浏览 4 评论 0原文

我在服务器上部署传统 Web 服务时遇到异常。发送肥皂请求时,它会生成以下异常

- “服务器无法处理请求。--->无法加载一种或多种请求的类型。检索 LoaderExceptions 属性以获取更多信息。”

经过大量谷歌搜索后,我了解到这是缺少程序集的问题。不确定缺少哪个组件。

有这方面了解的朋友请评论。

谢谢。

I am getting exception while deploying traditional web service on server. While sending a soap request it generates the following exception-

"Server was unable to process request. ---> Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."

And after lot of Googling , I got to know that this is the issue of missing assemblies. Not sure which assembly is missing.

Any one have knowledge on this please comment.

Thanks.

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

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

发布评论

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

评论(1

地狱即天堂 2025-01-01 10:33:29

尝试执行以下操作:-

  1. 打开引用选项卡,并在其属性窗口中逐一查找每个程序集,将其 Copy Local 属性设置为 True
  2. 重新生成项目,这将所有必需的程序集复制到 bin 文件夹中
  3. 将这些程序集复制到服务器上的 bin 文件夹中。

我希望它能为你解决问题

Try doing the following :-

  1. Open the reference tab and one-by-one for each assembly in its properties window, set its Copy Local property to True
  2. Rebuild the project, this will copy all the required assemblies into the bin folder
  3. Copy these assemblies to the bin folder on server.

I hope it might get things fixed for you

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