我正在使用Amf频道,如何为我的频道添加安全性..
答案 0 :(得分:1)
您需要更改频道def,您将在以下位置找到它们:
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)连接不同
有意义吗?
答案 1 :(得分:0)
通过SSL发送并使用SecureAMFChannel。