构建 thrift dll 以在 Windows Phone 7 应用程序中使用
非常简单的问题:如何构建一个 thrift dll 以在 Windows Phone 7 应用程序中使用?
Pretty straight forward question: How do I build a thrift dll for use in a Windows Phone 7 application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您的意思是 Thrift 客户端作为服务器在手机上没有多大意义。
无论如何,快速浏览白皮书让我认为你可以'因为它需要使用套接字,而 WP7 中的开发人员无法使用这些套接字。
除此之外,还需要编写 Thrift 指定的接口的实现。
我知道这是一个非常模糊的答案,但这是一个非常模糊的问题。
I'm assuming you mean a Thrift client as a server wouldn't make a lot of sense on a phone.
Regardless, a quick scan of the white paper makes me think you can't as it requires use of sockets and these are not available to developers in WP7.
Beyond that it would be a case of writing an implementation of the interface specified by Thrift.
I know that is a very vague answer but it's a very vague question.
我已经编写了有关使 Thrift 运行时在 WP7 上工作以及将 C# 生成器更改为生成器 WP7 兼容绑定的分步说明:
https://damian.fyi/2011/01/11/generating-silverlight-windows-phone-company-thrift-proxies /
在某些时候,我想将更改提交回 Apache 项目 - 当我有时间时......
I've written out step-by-step instructions on making the Thrift runtime work on WP7, and on changing the C# generator to generator WP7 compatible bindings:
https://damian.fyi/2011/01/11/generating-silverlight-windows-phone-compatible-thrift-proxies/
At some point I want to submit the changes back to the Apache project - when I have some time ...