vote up 1 vote down star
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.
}
flag

76% accept rate
From anirudhs.chaosnet.org/blog/2009.06.01.html: "Only the Flex RPC APIs will be re-routed to the proxy and reported in Network Monitor. It does not intercept the low-level flash player APIs. For that, you'd still have to depend on other tools." By default, Flash Builder's Network Monitor should be able to detect RemoteObject's AMF transfer, so can you please quote, or at least explain the way you are using the RemoteObject's PHP methods? – Dimitar Dimitrov Aug 25 at 19:40
I'm not using any PHP methods. I've updated the question to include how I'm doing it. – Chris R Aug 25 at 20:03

1 Answer

vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.