I have a Flash Builder 4 (Flex) project that uses BlazeDS. It is checked into an svn repo. I have it working fine on a PC. However, when I checkout the same project on a Mac, correcting directory references accordingly, I run into problems. Everything compiles fine but when I run the system the Flex components never forward the request (via AMF) to the server. I can also see that no request is ever made if I load the app on a PC and monitor it with Fiddler (of course, I'm hitting the Mac based website).
I have stepped into the login service, which should forward the request to the server. The interesting thing is when I single step into the code with a debugger. Eventually I get to this Adobe code inside mx.rpc.AsychRequest.as:
override public function fault(errMsg:ErrorMessage, msg:IMessage):void {
[irrelevant clipped code]
resp.fault(MessageFaultEvent.createEvent(errMsg));
When I look at errMsg it says: http://localhost:8400//WebContent/messagebroker/amf
That double / after the port is clearly not correct and I suspect/guess it is the problem. But I don't know where it is coming from. Again, the same code works fine on a PC. The services xml is the default, by the way: http://{server.name}:{server.port}/{context.root}/messagebroker/amf
If anyone has an idea I am all ears! I have been trying to get this working on the Mac so that I can get away from my seriously taxed VM instance.
Update:
I have some additional information. Based on James' comments, I went and I checked the .flexproperties file's ServerContextRoot. I changed it to 'MyPortal', which is my project's name. After a full purge, that seems to get me further. Now, however, when I trace down into the code I get the following error message:
Destination 'MTSecurity' either does not exist or the destination has no channels defined (and the application does not define any default channels.)
I believe that, in fact, the channel does exist but need to verify. On a slightly different note, I'm still baffled why this worked with the other root value on my PC. My only guess is that I've noticed there is a good deal of caching going on with the browsers. Maybe a working version is still in the cache? Finally, I've also noticed that the value of ServerContextRoot does not follow with the Project Properties' value of 'Web Project Settings.' I am not sure how the value actually gets set or where the Properties version is used.