WCF 类型“System.CodeDom.Compiler.GenerateCodeAttribute”没有定义

发布于 2024-11-19 04:04:51 字数 630 浏览 7 评论 0原文

我正在关注这个教程,该教程展示了如何实现 WCF 身份验证服务。我已经按照详细步骤一步一步完成了。但是当我尝试构建项目时添加所有代理类后,它给了我一些 68 个错误,下面列出了一些错误。我不知道我在这里做错了什么。显然,我认为我缺少类中的一些导入或 app.config 文件中的某些属性。我可能错了。

Type 'System.CodeDom.Compiler.GeneratedCodeAttribute' is not defined.
Type 'System.ServiceModel.ServiceContractAttribute' is not defined.
Type 'System.ServiceModel.OperationContractAttribute' is not defined.
Type 'System.ServiceModel.EndpointAddress' is not defined.

所有三个应用程序服务(身份验证、角色、配置文件服务)均按演练文章中所示进行正确编译。我试图通过 WCF 身份验证服务构建单点登录机制。

提前致谢。

I am following this tutorial that shows how to implement a WCF authentication Service. I have done exactly step by step as detailed. But after adding all the proxy classes when I try to build the project, it gives me some 68 Errors and few are listed below. I don't know what I am doing wrong here. Clearly I think I am missing some Imports in my class or some attribute in app.config file. I may be wrong.

Type 'System.CodeDom.Compiler.GeneratedCodeAttribute' is not defined.
Type 'System.ServiceModel.ServiceContractAttribute' is not defined.
Type 'System.ServiceModel.OperationContractAttribute' is not defined.
Type 'System.ServiceModel.EndpointAddress' is not defined.

All the three application services(authentication, Roles, Profile services) compile appropriately as shown in the walkthrough article. I was trying to build Single-Sign on Mechanism through WCF Authentication service.

Thanks in Advance.

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

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

发布评论

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

评论(2

红墙和绿瓦 2024-11-26 04:04:51

您是否添加了对 system.ServiceModel 的引用?

Have you add reference to system.ServiceModel?

笑梦风尘 2024-11-26 04:04:51

您是否至少针对 .NET 3.0 进行编译?如果您的构建目标是 .NET 2.0,则不会定义类型

Are you compiling for at least .NET 3.0? If your build target is .NET 2.0 the types won't be defined

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