I've been setting meta-data no problem, including some jets3t compatible meta-data, here;s some sample of my code in production:<br>
<br><span style="font-family: courier new,monospace;">
def establish_s3_connection()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> AWS::S3::Base.establish_connection!(</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> :access_key_id => AppConfig.aws_access_key_id,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> :secret_access_key =>
AppConfig.aws_secret_access_key</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> )</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
end</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">def upload_file()</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> establish_s3_connection</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> AWS::S3::S3Object.store(get_file_name,
</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> open(get_file_path), </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
AppConfig.s3_bucket,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> :content_type=>'audio/mpeg',</span>
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> 'x-amz-meta-my_uploadname'=><a href="http://self.name">self.name</a>,</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;"> 'x-amz-meta-my_upload_ownername'=>self.owner.username,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
'x-amz-meta-my_upload_date'=>self.upload_date.strftime("%b %d, %Y %H:%M:%S"),</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
'x-amz-meta-my_database_mimetype'=>self.mime_type,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> 'x-amz-meta-my_myfile_id'=>
<a href="http://self.id">self.id</a>,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> 'x-amz-meta-jets3t-original-file-date-iso860'=>
File.mtime(get_file_path).strftime("%Y-%m-%dT%H:%M:%S.000Z"))</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">end</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><br><br><div><span class="gmail_quote">On 4/4/07, <b class="gmail_sendername">Alex MacCaw</b> <<a href="mailto:maccman@gmail.com">maccman@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Is setting metadata now supported on upload?<br><span class="sg"><br>-- <br><a href="http://www.eribium.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.eribium.org</a> | <a href="http://juggernaut.rubyforge.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://juggernaut.rubyforge.org</a> | <a href="http://www.aireofs.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://www.aireofs.com</a> | Skype: oldmanorhouse
</span><br>_______________________________________________<br>amazon-s3-dev mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:amazon-s3-dev@rubyforge.org">amazon-s3-dev@rubyforge.org</a>
<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://rubyforge.org/mailman/listinfo/amazon-s3-dev" target="_blank">http://rubyforge.org/mailman/listinfo/amazon-s3-dev</a><br><br></blockquote></div><br>
<br clear="all"><br>-- <br>Andrew Kuklewicz