Mono Support Amazon settings not working (Closed)

Viewed 37339 time(s), 13 post(s), 1/17/2012 9:10:32 AM - by cosmogonor
1/18/2012 10:04:50 AM
15993 Reputation 2214 Total posts

We will have to sync the code from latest version so you can fix this, please open a new topic in your priority support forum.

Thanks

11
1/18/2012 10:37:26 AM
1176 Reputation 140 Total posts

Hi

the error is throwing in the following code line no : 985 in AmazonS3FileSystemContentProvider.cs class

public bool ObjectExists(string path)
{
bool toReturn = false;
string bucket = GetBucketNameFromPath(path);
string key = GetFolderPath(path);
using (ObjectHeadRequest headRequest = new ObjectHeadRequest(bucket, key))
{
try
{
ObjectHeadResponse headResponse = this.service.ObjectHead(headRequest);
toReturn = true;
}
catch
{
//the object does not exists and the server returns 404 error code
}

}
return toReturn;
}


right now we are using Monox 4.5.3200(.NET4.0)



thanks

12
1/18/2012 10:40:18 AM
7207 Reputation 956 Total posts

Again, could we please move this discussion to your priority support forum?

13
1 2
This is a demo site for MonoX. Please visit Mono Software for more info.