Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to access some assets on azure from flash. This requires a crossdomain file to be at the root of the blob, ie http://xxxxxxx.blob.core.windows.net/crossdomain.xml

I found that using Azure Storage Explorer there didn't seem to be a way of adding files to the root, I found this post http://www.owenadavies.co.uk/2011/11/azure-crossdomainxml-inside-root-of.html which details a programmatic approach. However I have implemented the code and tried to test and am getting the following error which suggests to me it may not be possible to add files to the root?

<Error>
<Code>OutOfRangeInput</Code>
<Message>
One of the request inputs is out of range. RequestId:5853bdc0-89ed-47f6-986e-f42badd38e75 Time:2012-06-13T09:37:58.0222882Z
</Message>
</Error>

Can anyone clarify if it is possible?

share|improve this question

1 Answer

up vote 2 down vote accepted

Could you post the code you're using to create the root container?

Besides that you could also use CloudBerry to create the $root container and upload files to it:

http://blog.cloudberrylab.com/2010/04/cloudberry-explorer-for-azure.html

enter image description here

share|improve this answer
Ah nice and easy with Cloudberry :) The OutOfRangeInput response had me a little worried, a ResourceNotFound response would have been more consistent – Tom Jun 13 '12 at 10:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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