针对flex Channel.Connect.Failed error NetConnection.Call.Failed 404

第一种情况:

  1. [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8889/WebRoot/messagebroker/amf'"]  
当url中是webroot而不是工程名称时:修改工程属性中的上下文目录为工程名称解决

第二种情况:

  1. [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8089/cargps/messagebroker/amf'"]  

当url中工程名称已经更新进去,有可能是web.xml里没有配置flexservlet和监听,没有配置的话也会出现以上错误

网上说的其他的修改方式,没有验证,我说的只是情况之一

解决方法就是在web.xml中添加如下说明;


        flex.messaging.HttpFlexSession
   

 
        MessageBrokerServlet
        flex.messaging.MessageBrokerServlet
       
            services.configuration.file
            /WEB-INF/flex/services-config.xml
       

        1
   

 
        MessageBrokerServlet
        /messagebroker/*
   

你可能感兴趣的:(针对flex Channel.Connect.Failed error NetConnection.Call.Failed 404)