views:

418

answers:

1

I'm using the Flash Builder 4 beta, and I have two projects, both of which have Network Monitor enabled. I have two projects, for one of which the network monitor works, and for the other, it doesn't.

The working project is using an HTTPService to connect to an application running on localhost, using POST and GET to retrieve values.

The non-working project is using a RemoteObject to connect to an AMF PHP service running on a non-local test server.

In both cases, the services themselves work just fine; I get the results back, but in the latter case I don't see any entries in the network monitor. Why?

Here's the type of call I'm making:

function init(): void {
    var service: RemoteObject = new RemoteObject("amfservice");
    service.source = "AEDService";
    service.getAgents.addEventListener(ResultEvent.RESULT, handleResult);
    service.getAgents();
}

function handleResult(event: ResultEvent):void {
    // response comes here.  This works, btw.
}
A: 

Please file a bug in Jira http://bugs.adobe.com/flex

Maria