Saurabh Gokhale
Saurabh Gokhale

Reputation: 46395

Client.Error.MessageSend - Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 404: url:

I am a beginner in Flex. I was trying out a Flex-Spring-Hibernate-Java project, which would fetch the records from database and show it in a grid.

But, when I try to open my application, I get the following error :

?[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'"]

What this error is regarding ?

PS : I saw the other related error links similar to this error, but that didn't help me out.

Other Project related details :-

ContextWebRoot : Statistics ( name of my project )

Upvotes: 3

Views: 5995

Answers (1)

Ashwin Hamal
Ashwin Hamal

Reputation: 11

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

Upvotes: 0

Related Questions