Flex应用BlazeDS时报错:[RPC Fault faultString="发送失败" faultCode="Client.Error.MessageSend"

 

(1)错误[RPC Fault faultString="发送失败" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:8080/WebContent/messagebroker/amf'"]

 

 

项目文件夹下面.flexProperties文件里有段

serverContextRoot="/WebContent" serverRoot="E:/workspaces/flex/WebContent" serverRootURL="http://localhost:80/flex" toolCompile="true" useServerFlexSDK="false" version="2"/>

真凶终于出来了...就是serverContextRoot="/WebContent"这个,把它改成项目名,问题就解决了...

(2)

当debug FLEX 项目sampleone时候会出现一下错误提示:

[FaultEvent fault=[RPC Fault faultString="发送失败" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 500: url: 'http://localhost:8080/sampleone/messagebroker/amf'"] messageId="003C8C83-3588-2754-C312-21493C38557B" type="fault" bubbles=false cancelable=true eventPhase=2]

解决方案:在*action.xml中的部分出现问题

  
  
 

property的name有问题:property中的name指向的是 DeptNameAction .java类中的接口类型的成员变量deptNameDAO,property中的ref指的是这个成员变量deptNameDAO的类型是deptNameDAO类型的(也就是接口类型的)。

因此name跟DeptNameAction.java中的接口类型的成员变量deptNameDAO抑制

 

 

你可能感兴趣的:(Flex学习)