Flash 服务器端共享对象 - LSO

发布于 2024-07-13 19:17:22 字数 109 浏览 9 评论 0原文

Adobe 文档(我找不到哪个)声明 Flash 可以从服务器读取共享对象(.SOL 文件?)。 这可能是一种在客户端存储数据和检索数据的有趣方式。 关于如何做到这一点有什么想法吗?

The Adobe docs (I can't find which) state that Flash can read Shared Objects (.SOL files?) off a server. This could be an interesting way to store data and retrieve it client-side. Any ideas on how to do this?

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

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

发布评论

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

评论(1

平生欢 2024-07-20 19:17:22

首先,.SOL 文件和 LocalSharedObject 顾名思义,纯粹是本地数据。 它们存储在客户端,而不是服务器上,可以与 cookie 进行比较,或者保存文件。 但它们不是服务器端。

如果您想在服务器上存储数据并在客户端检索数据,您有很多技术,具体取决于您想要/可以在服务器上安装什么。

最明显的一个当然是使用您选择的语言的网络服务,并通过 Flash 应用程序访问它。

您还可以使用 ActionScript Remoting 功能调用服务器端方法来存储和检索对象。 您必须找到适合您的语言的库。 AMFPHP 是 php 的参考,我知道 .NET 和 Java 也存在一些库。 这是一个使用 php 的示例

最后,您可以使用 Flash Media Server,这是 Adob​​e 专有技术。 我对此没有太多经验,但您应该能够在此处

Firstly, .SOL files and LocalSharedObject are purely, as their name implies, local datas. They are stored on the client, not on the server, and could be compared to cookies, or save files. But they are not server-side.

If you want to store data on the server and retrieve it client-side, you have a lot of techniques, depending on what you want/can install on your server.

The most obvious one certainly is using a web-service in the language of your choice, and access it via your Flash application.

You can also use ActionScript Remoting capabilities to call server-side methods to store and retrieve objects. You have to find the proper library for your language. AMFPHP is the reference for php, I know some library also exists for .NET and Java. Here is an example using php

Finally, you can use Flash Media Server which is a proprietary Adobe technology. I don't have much experience with it, but you should be able to find useful ressources here

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