vote up 1 vote down star

Why are there two different HTTPService classes in Flex? this and this

And the second one inherits the first one. Why couldn't there be a single class combining the two?

flag

43% accept rate

2 Answers

vote up 2 vote down

One of the objects (the first link you posted) is the HTTPService Object itself.

The second is the object that wraps the HTTPService object and gives it the additional functionality for the <mxml /> tag.

The two probably weren't combined because you don't necessarily need the implementation of the IMXMLObject and IMXMLSupport interfaces every time you need an HTTService object.

link|flag
vote up 0 vote down

mx.rpc.http.mxml.HTTPService can also handle concurrency while the other can't.

Edit:

Although in the online documentation I see concurrency as a property of both, several sources say thats not true(and my tests didn't work when I first tried using it). Also the concurrency package is only imported into the mxml.HTTPService, not the base rpc class.

Bug Comment Mederator comment on the docs page

link|flag
Any source for this information? – dta Jun 3 at 14:48
Yes, but sporadic. livedocs.adobe.com/flex/3/… Please scroll to the moderator wvxvw's comment. Also bugs.adobe.com/jira/browse/FLEXDOCS-217 Also if you look in the source, rpc.mxml.Concurrency is imported into mx.rpc.mxml.HTTPService while its not imported into the other. I agree that the documentation isn't very helpful here though. – ryanday Jun 3 at 16:12

Your Answer

Get an OpenID
or

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