之前写Flex+Java的程式总要同时打开两个IDE:Eclipse+Flex Builder,最近找到一个集成了J2EE的Flex Builder。具体功能简单而言就是,Java代码和Flex代码从此能够在这一个IDE里面编写了,详情如下图:(Flex代码将会是在flex_src中,Java部份则写在src中)
今天将一些原来分开在两个IDE的代码放一起,运行的时候突然遇到一个Error:[FaultEvent fault=[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url: 'http://localhost:9998/WebContent/messagebroker/amf'"] messageId=”C25D6E12-4A22-9827-849A-C56BBBB434F4″ type=”fault” bubbles=false cancelable=true eventPhase=2]
一番努力,终于找到原因,原来是在使用RemoteObject的时候必须配置EndPoint,错误显示安装工程的配置在这个路径 http://localhost:9998/WebContent/messagebroker/amf’ 没有读取到endpoint。解决方法,在工程上点右键,打开Properties,在下图位置,原本默认设置为WebContent的地方修改为项目名称:
当然了,如果不是通过Blaze DS实现的话,直接使用RemoteObject,则可以如下配置:
<mx:RemoteObject id=”firstRO” destination=”FirstJavaClassRemoteObject” fault=”faultEvent(event)”
endpoint=”http://localhost:8080/FlexDemo/messagebroker/amf”
/>
原文地址: http://www.8only.cn/archives/92
Channel.Connect.Flex Error:Failed error NetConnection.Call.Failed: HTTP: Status