on putAttributes (domain, itemName, attributeName, attributeValue, flReplace=false, adrerrorstring=nil) { «Changes «1/7/08; 11:36:06 AM by DW «Created. local (t); new (tabletype, @t); t.DomainName = domain; t.ItemName = itemName; t.["Attribute.1.Name"] = attributeName; t.["Attribute.1.Value"] = attributeValue; if flReplace { t.["Attribute.1.Replace"] = flReplace}; return (s3.simpleDb.httpClient ("PutAttributes", @t, adrerrorstring))}; bundle { //test code local (errorstring); if not putAttributes ("users", "DW", "email", "dave.winer%40gmail.com", false, @errorstring) { dialog.alert (errorstring)}}