Fix the missing AWS security service..
1. Take the same approach as in your everlive provider
-- snip from source
public string ApiKey { get; set; }
2. Add the same approach to your amazon provider..
public string AccessKey { get; set; }
public string SecretKey { get; set; }
3. See separate thread about missing dynamic key support.
You can keep the old style webconfig file, but it should be deprecated, i.e only used if both of the above are not available..
This is stanadard AWS security..
"All providers configuration is stored in the configuration files. It is not allowed to define provider's configuration in the markup of the control or through the code behind. This is because the configuration contains sensitive data (access key, secret key and etc.). "
Who thought this one up.. it makes the control totally useless..
Stop reinventing the wheel, just copy what other have worked out over many year this control is NOT new..
See several others, the best is DirectAmazonUploader ..
Take a look
http://flajaxian.com/flajaxian.com/DirectAmazonUploader1.0Help.html
*****ABSOLUTE MUST****
The bucket, and access account MUST be dynamic configurable..
Please fix major design defect..
While, I don't belive that telerik should dictate how I use a control, if you are going to use security as an excuse please do it right..
The use of static secret keys in files or else where is very poor practice and is NOT constant with AWS security services..
YOU NEED TO SUPPORT ALL THREE AWS WAYS TO PASS AWS CREDENTIALS..
PLEASE DO NOT CHNAGE HE AWS SECURITY POLICY!!!
The preferred, and you have not implements is dynamic keys, in your code below..
Add support for AWS dynamic keys see ****
public override void Initialize(string name, NameValueCollection config)
{
if (config == null)
{
throw new ArgumentNullException("No valid configuration is provided.");
}
base.Initialize(name, config);
*** add check for dynamic keys here****
AccessKey = config[CloudUploadConstants.AccessKey];
if (string.IsNullOrEmpty(AccessKey))
{
throw new ProviderException("Missing AccessKey. Please specify it with the accessKey property.");
}


I have a very strange rendering problem that I am experiencing on different pages of my application, and is also experienced on four different development machines.
The grid renders not as unique rows, and none of the event handling is functional. This occurs IE, Chrome and Firefox. Any ideas what to look for?
Seen screen shot.
Using version 2013.3.1015.45
Hi,
I am using a RadEditor with ContentAreaMode set to DIV. I am using IE 11 . The page is a simple one contains
Once the page is rendered the page consists of RadEditor with button and a dropdown . There is no scroll bar on the page yet . So click on the button a postback is caused and NO FOCUS IS SET TO THE RADEDITOR .
Now, Add a few <br /> before the Button and the DropDown so that we now get a scrollbar on the page . Move to the bottom of the page and select on a button or change the dropdown index so that a postback is caused . On Postback we now see that the RadEditor automatically sets focus to its self.
This can be reproducible even in the Demo site RADEditor ContentAreaMode="DIV" To reproduce the error on the demo site please follow as described in the document RADEDITOR.docx issue.
The same when tried in Chrome works just fine and the scroll position of the browser is not changed.
Regards,