不允许来自静态类型的数据
我正在 .net 中创建一个 API,它将使用 xml 数据与其客户端进行通信。 客户端软件可以是任何语言php、asp.net等。 开发此类 API 的最佳方法是什么, 我试图使用 .net webservices',但 [webmethods] 不允许非静态数据, 在我的 API 中,有很多东西只能处理非静态数据。 你能建议解决这个问题吗? 有什么方法可以在不使用 .net 网络服务的情况下开发它吗?
i m making an API in .net , that will communicate with its client with xml data.
client software can be in any language php,asp.net etc.
what is the best way to develop such API,
i was trying to use the .net webservices', but [webmethods] does not allow non static data,
and in my API there are lots of things that will work only with the non static data.
can you please suggest any solution to this problem, ?
any way to develpop it without using .net webservies?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据评论,您实际上的意思是“不允许静态类”。所以...不要使用 SE 静态类。我建议将这些静态属性移至默认实例中:
并将 Foo.Default 对象的属性视为现有的静态属性。
请注意,对于 XmlSerializer,您需要一个公共构造函数,因此我没有将其称为单例,因为严格来说它不会。
Based on the comments, you actually mean "does not allow static classes". So... Don't SE static class. I would suggest moving those static properties into a default instance:
And treat the
Foo.Default
object's properties like the existing static ones.Note that with XmlSerializer you need a public ctor, hence I haven't called this a singleton, as strictly speaking it won't be.