如何确保通道安全?我正在使用 Amf 频道,如何为我的频道添加安全性

发布于 2024-11-19 03:01:12 字数 34 浏览 2 评论 0原文

我正在使用 Amf 频道,如何为我的频道添加安全性..

I'm using a Amf channel , How to add security to My channel..

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

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

发布评论

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

评论(2

看海 2024-11-26 03:01:12

您需要更改通道定义,您可以在以下位置找到它们:

WEB-INF/flex/services-config.xml

更改或添加安全定义和端点 - 这是一个示例:

<channel-definition id="my-server" class="mx.messaging.channels.AMFChannel">
    <endpoint uri="http://{server.name}:{server.port}/{context.root}/amf" class="flex.messaging.endpoints.AMFEndpoint" /> 
</channel-definition>
<channel-definition id="my-server-secure" class="mx.messaging.channels.SecureAMFChannel">
    <endpoint uri="https://{server.name}:443/{context.root}/amf" class="flex.messaging.endpoints.SecureAMFEndpoint" />
</channel-definition>

注意类必须不同,并且您通过 SSL 连接(https / 端口 443)

有道理吗?

You need to change the channel def's, you'll find them in:

WEB-INF/flex/services-config.xml

Change or add a secure definition and endpoint - here is an example:

<channel-definition id="my-server" class="mx.messaging.channels.AMFChannel">
    <endpoint uri="http://{server.name}:{server.port}/{context.root}/amf" class="flex.messaging.endpoints.AMFEndpoint" /> 
</channel-definition>
<channel-definition id="my-server-secure" class="mx.messaging.channels.SecureAMFChannel">
    <endpoint uri="https://{server.name}:443/{context.root}/amf" class="flex.messaging.endpoints.SecureAMFEndpoint" />
</channel-definition>

Notice the class must be different as well as you're connecting over SSL (https / port 443)

Make sense?

微凉 2024-11-26 03:01:12

通过 SSL 发送并使用 SecureAMFChannel。

Send it over SSL and use SecureAMFChannel.

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