mvc asp .net 中的 Web 服务部署问题
我在服务器上部署传统 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试执行以下操作:-
Copy Local
属性设置为True
我希望它能为你解决问题
Try doing the following :-
Copy Local
property toTrue
I hope it might get things fixed for you