Tracy Correct, the model data is getting there, but not the querystring parameters.
I also noticed about the mx:objects in the post. It was an error and I was getting really screwy data on the server. I've since changed the bindings to point to the text property of the objects and the post body is being sent correctly (I also had to add contentType="application/xml" to my HTTPService. After making those changes, I am still seeing the same behavior as before (with a valid post body, now). The server platform is ATG (Java servlet based). When I try to extract the 2 request parameters, I get null for both of them. Thanks! Todd On 12/5/06, Tracy Spratt <[EMAIL PROTECTED]> wrote:
So the model data is getting into the server, but the url querystring parameters are not? Also, you are passing an mx:Object in the post body to the server. Is that working? What does it look like on the server? What is the server platform? Tracy ------------------------------ *From:* [email protected] [mailto:[EMAIL PROTECTED] *On Behalf Of *Todd Breiholz *Sent:* Tuesday, December 05, 2006 3:43 PM *To:* [email protected] *Subject:* [flexcoders] HTTPService POST with request parameters I am trying to post an XML payload to an HTTPService that has additional request parameters (e.g. http://www.mysite.com/get?o=sponsor&a=save). I created my HTTPService as such: <mx:HTTPService id="getSponsor" method="POST" resultFormat="e4x" result="getResultOK(event)" fault="getResultFault(event)" url="http://www.mysite.com/get> <mx:request> <o>sponsor</o> <a>put</a> </mx:request> </mx:HTTPService> And call it like this: private function addSponsor():void { getSponsor.send(sponsorModel); } With sponsorModel: <mx:Model id="sponsorModel"> <sponsor> <id>{txtId}</id> <name>{tiName}</name> <imageUrl>{tiImageUrl}</imageUrl> <linkUrl>{tiLinkUrl}</linkUrl> </sponsor> </mx:Model> It looks like the request parameters are not being sent (I am not seeing them on the server). Is this supported in Flex 2? Thanks Todd

