Client.Error.MessageSend-Channel.Connect.Failed Error NetConnection.Call.Failed:http:Status 404:URL:

qf9go6mv  于 2022-09-21  发布在  Apache
关注(0)|答案(1)|浏览(207)

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

但是,当我尝试打开我的应用程序时,我得到以下错误:
?[RPC错误错误字符串=“发送失败”faultCode=“Client.Error.MessageSend”faultDetail=“Channel.Connect.Failed Error NetConnection.Call.Fail.Failed:http:Status 404:URL:‘http://localhost:8080/demo/spring/messagebroker/amf’”]

这个错误是关于什么的?

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

其他与项目有关的详情:-

ContextWebRoot:STATISTICS(我的项目名称)

7xzttuei

7xzttuei1#

Http:Status 404显然表示服务器无法找到您要查找的页面。

您正在使用的URL无效。http://localhost:8080/demo/spring/messagebroker/amf

也许您遗漏了尾部的斜杠之类的东西。

有关Http错误代码列表:http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error

相关问题