我们有一个Flex应用程序,有时会抛出此错误 Intermittent Channel.Connect.Failed错误NetConnection.Call.Failed:HTTP:Failured:url'http:// nsmjboss:8400 / backbone / messagebroker / amf'< /强>
我可以在Brewer中点击该链接并且工作正常,我在日志中看不到任何错误。 我的services-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>
知道可能导致这种情况的原因吗?