echo '<request><item attribute="foo">bar</item></request>' | curl -X POST -H 'Content-type: application/xml' -d @- http://10.0.1.51:3000/baz/evaluate
My Rails application forgets all about the attribute when it receives the posted XML.
Processing BazController#evaluate (for 10.0.1.3 at 2009-10-03 18:29:32) [POST]
Parameters: {"request"=>{"item"=>"bar"}}
Any idea what I'm doing wrong?