vote up 0 vote down star

Flex3 + Cairngorm. I have my service in Servicis.mxml:

<mx:HTTPService id="docIndex" url="{URL_PREFIX}/jobs/{???}/docs" resultFormat="e4x"/>

And I call it from my generic restful delegate like this:

public function index(params:Object):void {
		var call:AsyncToken = services.getHTTPService(resourceName+"Index").send(params);
		call.addResponder(responder);
	}

I want to know how I can use the params Object I pass inside the url definition (the ??? above). And please tell me how you would go about searching an answer to this in the documentation, I'd like to be a little more independet on these problems...

EDIT: I'll explain myself if you didn't understand my problem: I have a restful api written in rails to which I'm connecting. Doc is a child resource of Job. If I want to get all docs I have to supply a job_id too. Therefore in the service the url must be changed for each .send() call, with the proper job_id (the ??? part above). I'd like to call it like myDelegate.index({job_id:34}) and insert that job_id field in the Service URL.

flag

56% accept rate
It is really not very obvious what kind of behavior you're looking for here. Can you please clarify what {???} should look like in relation to the contents of the params object? Not how to do this, since that's what brought you here in the first place, but the why. – Lior Cohen Aug 2 at 11:42
ok: I have a restful api written in rails to which I'm connecting. Doc is a child resource of Job. If I want to get all docs I have to supply a job_id too. Therefore in the service the url must be changed for each .send() call, with the proper job_id (the ??? part). I'd like to call it like myDelegate.index({job_id:34}) and insert that job_id field in the Service URL. is it clearer now? – luca Aug 2 at 12:08

1 Answer

vote up 0 vote down

Write a class that extends HTTPService and allows you to set parameters into the url. Then, in your index function you can fetch it with services.getHTTPService, and call a function you create that sets the url values for you.

In your service locator create an instance of your class rather than a flat HTTPService.

link|flag
I'll try.. do you think that getHTTPService will work even with my child class? – luca Aug 4 at 19:40
Yes, it should, because your http service is still an HTTPService – Sean Clark Hess Aug 6 at 22:13

Your Answer

Get an OpenID
or

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