好的、简单的 WCF EF4 或 XML 排行榜可以放入我的 WP7 游戏的 MVC 3 Web 应用程序中吗?安全?
我意识到我的基本尝试是非常容易被破解的。创建排行榜时要处理的主要问题是什么?连接字符串需要以某种方式加密吗?还有什么?我希望它不会变得太复杂..
有人有任何好的参考资料用于执行此操作吗?
I realized my basic attempt is very hackable. What are the main issues to deal with when creating a leaderboard? Connection string need to be encrypted somehow ? What else? I am hoping it does not get too complex..
Anyone have any good references they have used for doing this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据上面的评论,我现在了解您的问题。重新表述您原来的问题可能会有所帮助。
好的,所以您无法阻止人们获取您用于从 Silverlight 或 jQuery 或任何其他类似的客户端代码调用 Web 服务的凭据。要理解这一点,您必须考虑 silverlight 的工作原理。 Silverlight 代码发送到客户端。客户端可以是任何人,并且您无法控制它,除非知道它理解 Silverlight 代码。因此,您可以完成以下任务:
这篇文章大致解释了同样的事情:
Does silverlight code need protected?
I understand your problem now, based on the comments above. It may be helpful to rephrase your original question.
Ok, so you can not prevent people from getting the credentials that you use to call your web service from Silverlight or jQuery or any other similar client side code. To understand this, you have to think about how silverlight works. Silverlight code is sent to the client. The client can be anyone, and you do not have control over it except to know that it understands Silverlight code. So, here is what you can accomplish:
This post explains roughly the same thing:
Does silverlight code need protection?