vote up 2 vote down star
1

here's my problem.. resource: user method: create

I call curl like this:

curl -X POST -H 'Content-type: text/xml' -d '<xml><login>john</login><password>123456</password></xml>' http://0.0.0.0:3000/users

but the params hash in rails look like this:

{"xml"=> {"login"=>"luca", "password"=>"123456"}}

I want it to look like this:

{"login"=>"luca", "password"=>"123456"}

I can get it to be like that if I pass the parameters on the url (...?login=luca&pas....), but that's not good...

any idea?

flag

58% accept rate
Does replacing 'xml' with 'user' in your XML string help? – Lars Haugseth Aug 2 at 18:46
nope.. I tried all possible variants.. xml user users request params parameters post .. I don't think that's the way to go.. – luca Aug 2 at 20:38

2 Answers

vote up 1 vote down
curl -X POST -d 'login=john&password=123456' http://0.0.0.0:3000/users

See also: Stack Overflow: How do I make a POST request with curl

link|flag
OK so the point is if I want true xml I must have a single root and readapt my controllers, else I can pass vars with the var=value&... syntax. Thanks – luca Aug 3 at 7:08
vote up 2 vote down
curl -X POST -H 'Content-type: text/xml' -d '<login>john</login><password>123456</password>' http://0.0.0.0:3000/users

What does that get you?

After getting your comment, why not access it through params[:xml] in your controller, rather than params[:login] and params[:password]?

@user = User.authenticate(params[:xml])

That will pass login and password to your model.

link|flag
you can't add 2 nodes.. you'll get: "attempted adding second root element to document" – luca Aug 2 at 18:36
yes, that is how I'm now circumventing the problem, but I was hoping to better understand why it doesn't work.. – luca Aug 2 at 22:31
It doesn't work because '<login>john</login><password>123456</password>' is not a well formed XML document. The root node ends at </login>. For root nodes and Immortals, "there can be only one." :) – Jamie Flournoy Aug 3 at 3:30

Your Answer

Get an OpenID
or

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