我们有一个 Flex 应用程序,有时会抛出此错误Intermittent Channel.Connect.Failed error NetConnection.Call.Failed:HTTP: Failured: url 'http://nsmjboss:8400/backbone/messagebroker/amf'
我可以在 brewer 中点击该链接,它工作正常,而且我在我们的日志中看不到任何错误。我的服务-config.xml
<flex-client>
<timeout-minutes>120</timeout-minutes>
</flex-client>
<channels>
<channel-definition id="backbone-amf" class="mx.messaging.channels.AMFChannel">
<endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
<properties>
<connect-timeout-seconds>480</connect-timeout-seconds>
</properties>
</channel-definition>
<channel-definition id="backbone-streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
<endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/streamingamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
</channel-definition>
<channel-definition id="backbone-polling-amf" class="mx.messaging.channels.AMFChannel">
<endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/>
<properties>
<polling-enabled>true</polling-enabled>
<polling-interval-seconds>4</polling-interval-seconds>
</properties>
</channel-definition>
知道是什么原因造成的吗?