3

我是 Flex 的初学者。我正在尝试一个 Flex-Spring-Hibernate-Java 项目,该项目将从数据库中获取记录并将其显示在网格中。

但是,当我尝试打开我的应用程序时,出现以下错误:

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

这个错误是关于什么的?

PS:我看到了与此错误类似的其他相关错误链接,但这并没有帮助我。

其他项目相关细节:-

ContextWebRoot:统计信息(我的项目名称)

4

1 回答 1

0

HTTP: Status 404 clearly means the server is not able to find the page you're looking for.

The URL you're using is invalid. http://localhost:8080/demo/spring/messagebroker/amf

Maybe you are missing a trailing slash or something.

For the list of HTTP error codes: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error

于 2013-06-14T07:05:09.963 回答