> Minus your mysterious 'change the xml' that worked for me.If you could
> produce a more precise example (or at least elaborate on "Doesn't
> work" (raises an exception, does nothing, has the wrong attributes,
> something else...)
> you might get a more helpful response.
Let's see.....
u = User.find(3)
=> #<User id: 3, company_id: 3, login: "tm_user", email:
"[EMAIL PROTECTED]", crypted_password:
"b695db100847aa269fb477443a289d875cf2e001", salt:
"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b", timezone: "UTC",
remember_token: nil, remember_token_expires_at: nil, activation_code:
"bab0c2bc67d43b6871005559b114b9b62b7b70bb", activated_at: "2008-11-19
22:12:07", password_reset_code: nil, enabled: true, created_at:
"2008-11-19 22:12:07", updated_at: "2008-11-19 22:12:07",
lock_version: 4, address_id: nil>
>> u.to_xml
=> "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<user>\n
<activated-at type=\"datetime\">2008-11-19T22:12:07Z</activated-at>\n
<activation-code>bab0c2bc67d43b6871005559b114b9b62b7b70bb</activation-code>\n
<address-id type=\"integer\" nil=\"true\"></address-id>\n
<company-id type=\"integer\">3</company-id>\n
<crypted-password>b695db100847aa269fb477443a289d875cf2e001</crypted-password>\n
<email>[EMAIL PROTECTED]</email>\n <enabled
type=\"boolean\">true</enabled>\n <id type=\"integer\">3</id>\n
<lock-version type=\"integer\">4</lock-version>\n
<login>tm_user</login>\n <password-reset-code
nil=\"true\"></password-reset-code>\n <remember-token
nil=\"true\"></remember-token>\n <remember-token-expires-at
type=\"datetime\" nil=\"true\"></remember-token-expires-at>\n
<salt>1e3a4ba1ccb233c2bbd92c3bdbb917307523671b</salt>\n
<timezone>UTC</timezone>\n</user>\n"
Change the XML. Change the timezone from UTC to ABC
a = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<user>\n
<activated-at type=\"datetime\">2008-11-19T22:12:07Z</activated-at>\n
<activation-code>bab0c2bc67d43b6871005559b114b9b62b7b70bb</activation-code>\n
<address-id type=\"integer\" nil=\"true\"></address-id>\n
<company-id type=\"integer\">3</company-id>\n
<crypted-password>b695db100847aa269fb477443a289d875cf2e001</crypted-password>\n
<email>[EMAIL PROTECTED]</email>\n <enabled
type=\"boolean\">true</enabled>\n <id type=\"integer\">3</id>\n
<lock-version type=\"integer\">4</lock-version>\n
<login>tm_user</login>\n <password-reset-code
nil=\"true\"></password-reset-code>\n <remember-token
nil=\"true\"></remember-token>\n <remember-token-expires-at
type=\"datetime\" nil=\"true\"></remember-token-expires-at>\n
<salt>1e3a4ba1ccb233c2bbd92c3bdbb917307523671b</salt>\n
<timezone>ABC</timezone>\n</user>\n"
Apply it back to the record.
>> u.from_xml(a)
> u.from_xml(a)
=> #<User id: 3, company_id: 3, login: "tm_user", email:
"[EMAIL PROTECTED]", crypted_password:
"b695db100847aa269fb477443a289d875cf2e001", salt:
"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b", timezone: "UTC",
remember_token: nil, remember_token_expires_at: nil, activation_code:
"bab0c2bc67d43b6871005559b114b9b62b7b70bb", activated_at: "2008-11-19
22:12:07", password_reset_code: nil, enabled: true, created_at:
"2008-11-19 22:12:07", updated_at: "2008-11-19 22:12:07",
lock_version: 4, address_id: nil>
Mmmmm. timezone is still UTC.
Let's save it.
>> u.save
=> true
>> u
=> #<User id: 3, company_id: 3, login: "tm_user", email:
"[EMAIL PROTECTED]", crypted_password:
"b695db100847aa269fb477443a289d875cf2e001", salt:
"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b", timezone: "UTC",
remember_token: nil, remember_token_expires_at: nil, activation_code:
"bab0c2bc67d43b6871005559b114b9b62b7b70bb", activated_at: "2008-11-19
22:12:07", password_reset_code: nil, enabled: true, created_at:
"2008-11-19 22:12:07", updated_at: "2008-11-19 22:12:07",
lock_version: 5, address_id: nil>
Looks like the time zone never got changed.
Let's try with json
>> u.to_json
=> "{\"user\": {\"salt\":
\"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b\", \"activated_at\":
\"2008-11-19T22:12:07Z\", \"remember_token_expires_at\": null,
\"crypted_password\": \"b695db100847aa269fb477443a289d875cf2e001\",
\"password_reset_code\": null, \"lock_version\": 5,
\"activation_code\": \"bab0c2bc67d43b6871005559b114b9b62b7b70bb\",
\"timezone\": \"UTC\", \"id\": 3, \"enabled\": true, \"address_id\":
null, \"remember_token\": null, \"company_id\": 3, \"login\":
\"tm_user\", \"email\": \"[EMAIL PROTECTED]"}}"
>> j = "{\"user\": {\"salt\": \"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b\",
>> \"activated_at\": \"2008-11-19T22:12:07Z\", \"remember_token_expires_at\":
>> null, \"crypted_password\": \"b695db100847aa269fb477443a289d875cf2e001\",
>> \"password_reset_code\": null, \"lock_version\": 5, \"activation_code\":
>> \"bab0c2bc67d43b6871005559b114b9b62b7b70bb\", \"timezone\": \"ABC\", \"id\":
>> 3, \"enabled\": true, \"address_id\": null, \"remember_token\": null,
>> \"company_id\": 3, \"login\": \"tm_user\", \"email\": \"[EMAIL PROTECTED]"}}"
=> "{\"user\": {\"salt\":
\"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b\", \"activated_at\":
\"2008-11-19T22:12:07Z\", \"remember_token_expires_at\": null,
\"crypted_password\": \"b695db100847aa269fb477443a289d875cf2e001\",
\"password_reset_code\": null, \"lock_version\": 5,
\"activation_code\": \"bab0c2bc67d43b6871005559b114b9b62b7b70bb\",
\"timezone\": \"ABC\", \"id\": 3, \"enabled\": true, \"address_id\":
null, \"remember_token\": null, \"company_id\": 3, \"login\":
\"tm_user\", \"email\": \"[EMAIL PROTECTED]"}}"
>> j
=> "{\"user\": {\"salt\":
\"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b\", \"activated_at\":
\"2008-11-19T22:12:07Z\", \"remember_token_expires_at\": null,
\"crypted_password\": \"b695db100847aa269fb477443a289d875cf2e001\",
\"password_reset_code\": null, \"lock_version\": 5,
\"activation_code\": \"bab0c2bc67d43b6871005559b114b9b62b7b70bb\",
\"timezone\": \"ABC\", \"id\": 3, \"enabled\": true, \"address_id\":
null, \"remember_token\": null, \"company_id\": 3, \"login\":
\"tm_user\", \"email\": \"[EMAIL PROTECTED]"}}"
>> u.from_json(j)
=> #<User id: 3, company_id: 3, login: "tm_user", email:
"[EMAIL PROTECTED]", crypted_password:
"b695db100847aa269fb477443a289d875cf2e001", salt:
"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b", timezone: "UTC",
remember_token: nil, remember_token_expires_at: nil, activation_code:
"bab0c2bc67d43b6871005559b114b9b62b7b70bb", activated_at: "2008-11-19
22:12:07", password_reset_code: nil, enabled: true, created_at:
"2008-11-19 22:12:07", updated_at: "2008-11-19 22:12:07",
lock_version: 5, address_id: nil>
>> u.save
=> true
>> u
=> #<User id: 3, company_id: 3, login: "tm_user", email:
"[EMAIL PROTECTED]", crypted_password:
"b695db100847aa269fb477443a289d875cf2e001", salt:
"1e3a4ba1ccb233c2bbd92c3bdbb917307523671b", timezone: "UTC",
remember_token: nil, remember_token_expires_at: nil, activation_code:
"bab0c2bc67d43b6871005559b114b9b62b7b70bb", activated_at: "2008-11-19
22:12:07", password_reset_code: nil, enabled: true, created_at:
"2008-11-19 22:12:07", updated_at: "2008-11-19 22:12:07",
lock_version: 6, address_id: nil>
>>
Exact same story.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---