<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>sharpbox Issue Tracker Rss Feed</title><link>http://sharpbox.codeplex.com/workitem/list/basic</link><description>sharpbox Issue Tracker Rss Description</description><item><title>Created Issue: GetPublicObjectUrl give an 404 error [19674]</title><link>http://sharpbox.codeplex.com/workitem/19674</link><description>Hello, I&amp;#39;m trying to make a basic program which upload a picture into dropbox&amp;#40;that part is fully working&amp;#41; and then it give that picture public url in order to download it.&lt;br /&gt;I use the following code to get that url &amp;#58;&lt;br /&gt;&lt;br /&gt;private void GetRessourceURI&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            try&lt;br /&gt;            &amp;#123;&lt;br /&gt;                ICloudDirectoryEntry fEntry &amp;#61; m_DropBoxStorage.GetFolder&amp;#40;&amp;#34;&amp;#47;public&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;                ICloudFileSystemEntry fs &amp;#61; m_DropBoxStorage.GetFileSystemObject&amp;#40;m_RessourceFileName, fEntry&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                m_RessourceURI &amp;#61; DropBoxStorageProviderTools.GetPublicObjectUrl&amp;#40;m_AccessToken, fs&amp;#41;&amp;#59;&lt;br /&gt;               &amp;#47;&amp;#47; m_RessourceURI &amp;#61; m_DropBoxStorage.GetFileSystemObjectUrl&amp;#40;&amp;#34;&amp;#47;&amp;#34; &amp;#43; RessourceFileName, m_DropBoxStorage.GetFolder&amp;#40;&amp;#34;&amp;#47;&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                Console.WriteLine&amp;#40;m_RessourceURI&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            catch &amp;#40;SharpBoxException AnyException&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                throw AnyException&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;when the program is running i get the following link &amp;#58; http&amp;#58;&amp;#47;&amp;#47;dl.dropboxusercontent.com&amp;#47;u&amp;#47;168609230&amp;#47;Lena.jpg , but when i want to use the link dropbox give a 404 error i tried to get the link with GetFileSystemObjectUrl but it give me a temporary URI that i cannot use.&lt;br /&gt;Can someonehelp please&lt;br /&gt;</description><author>Drwhy</author><pubDate>Mon, 06 May 2013 10:01:44 GMT</pubDate><guid isPermaLink="false">Created Issue: GetPublicObjectUrl give an 404 error [19674] 20130506100144A</guid></item><item><title>Commented Issue: DropboxTokenIssuer.exe not working [18848]</title><link>http://sharpbox.codeplex.com/workitem/18848</link><description>The program used to generate the token files has stopped working for some reason. I was able to generate the files successfully about a month back, and now im trying the same process and it is not working, When I click Authorize, it displays the login page, I login and press Allow, and it gives me HTTP500 error. It would be nice to have a workaround for this problem.&lt;br /&gt;Thanks.&lt;br /&gt;Comments: ** Comment from web user: kooplar ** &lt;p&gt;still doesnt work..&lt;br&gt;&lt;/p&gt;</description><author>kooplar</author><pubDate>Thu, 02 May 2013 04:53:02 GMT</pubDate><guid isPermaLink="false">Commented Issue: DropboxTokenIssuer.exe not working [18848] 20130502045302A</guid></item><item><title>Created Issue: unable to sync to Box.net (box.com) [19571]</title><link>http://sharpbox.codeplex.com/workitem/19571</link><description>hello, &lt;br /&gt;&lt;br /&gt;I am attempting to connect to my box account using sharpbox, however I keep getting a file not found error. &lt;br /&gt;the code I am using is below. any ideas&amp;#63; on my account I have the default folder and a backup folder. &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;using System&amp;#59;&lt;br /&gt;using System.Collections.Generic&amp;#59;&lt;br /&gt;using System.Linq&amp;#59;&lt;br /&gt;using System.Text&amp;#59;&lt;br /&gt;using System.Threading.Tasks&amp;#59;&lt;br /&gt;using System.IO&amp;#59;&lt;br /&gt;using AppLimit.CloudComputing.SharpBox&amp;#59;&lt;br /&gt;using AppLimit.CloudComputing.SharpBox.StorageProvider&amp;#59;&lt;br /&gt;using AppLimit.CloudComputing.SharpBox.StorageProvider.WebDav&amp;#59;&lt;br /&gt;&lt;br /&gt;class Program&lt;br /&gt;&amp;#123;&lt;br /&gt;    static void Main&amp;#40;string&amp;#91;&amp;#93; args&amp;#41;&lt;br /&gt;    &amp;#123;&lt;br /&gt;        CloudStorage BoxStorage &amp;#61; new CloudStorage&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#47;&amp;#47; Box.Net ad hoc configuration instance&lt;br /&gt;        var boxnetConfig &amp;#61; CloudStorage.GetCloudConfigurationEasy&amp;#40;nSupportedCloudConfigurations.BoxNet&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47; building credentials for the service &lt;br /&gt;        var webDavCredentials &amp;#61; new GenericNetworkCredentials&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47; set the information you got from the enduser &lt;br /&gt;        webDavCredentials.UserName &amp;#61; &amp;#34;shhhdonttell&amp;#34;&amp;#59; &lt;br /&gt;        webDavCredentials.Password &amp;#61; &amp;#34;ahahahnotthemagicword&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47; open the connection &lt;br /&gt;        var storageToken &amp;#61; BoxStorage.Open&amp;#40;boxnetConfig, webDavCredentials&amp;#41;&amp;#59;&lt;br /&gt;        var publicFolder &amp;#61; BoxStorage.GetFolder&amp;#40;&amp;#34;&amp;#47;Default&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;        String srcFile &amp;#61; Environment.ExpandEnvironmentVariables&amp;#40;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;EyeCandyLog.txt&amp;#34;&amp;#41;&amp;#59; &lt;br /&gt;        BoxStorage.UploadFile&amp;#40;srcFile, publicFolder&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47;&amp;#47; get a specific directory in the cloud storage, e.g. &amp;#47;Public &lt;br /&gt;        &amp;#47;&amp;#47;var publicFolder &amp;#61; BoxStorage.GetFolder&amp;#40;&amp;#34;&amp;#47;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47;foreach &amp;#40;var fof in publicFolder&amp;#41;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#123;&lt;br /&gt;        &amp;#47;&amp;#47;    &amp;#47;&amp;#47; check if we have a directory &lt;br /&gt;        &amp;#47;&amp;#47;    Boolean bIsDirectory &amp;#61; fof is ICloudDirectoryEntry&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47;    &amp;#47;&amp;#47; output the info &lt;br /&gt;        &amp;#47;&amp;#47;    Console.WriteLine&amp;#40;&amp;#34;&amp;#123;0&amp;#125;&amp;#58; &amp;#123;1&amp;#125;&amp;#34;, bIsDirectory &amp;#63; &amp;#34;DIR&amp;#34; &amp;#58; &amp;#34;FIL&amp;#34;, fof.Name&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#125;&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47; close the connection &lt;br /&gt;        BoxStorage.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;</description><author>Wavauiwi</author><pubDate>Tue, 09 Apr 2013 03:47:39 GMT</pubDate><guid isPermaLink="false">Created Issue: unable to sync to Box.net (box.com) [19571] 20130409034739A</guid></item><item><title>Created Issue: Upload file more than 200mb problem [19547]</title><link>http://sharpbox.codeplex.com/workitem/19547</link><description>When i upload more than 200 mb file via simple asp.net file upload control then file will be successfully uploaded but dispplay in linked dropbox account.&lt;br /&gt;&lt;br /&gt;__i already set all variables in we.config__&lt;br /&gt;&lt;br /&gt;my code is below,&lt;br /&gt;&lt;br /&gt;        Dim dropBoxStorage As New CloudStorage&amp;#40;&amp;#41;&lt;br /&gt;        Try&lt;br /&gt;            Dim dropBoxConfig As Object &amp;#61; CloudStorage.GetCloudConfigurationEasy&amp;#40;nSupportedCloudConfigurations.DropBox&amp;#41;&lt;br /&gt;            Dim accessToken As ICloudStorageAccessToken &amp;#61; Nothing&lt;br /&gt;            Using fs As FileStream &amp;#61; File.Open&amp;#40;&amp;#34;filepath&amp;#34;, FileMode.Open, FileAccess.Read, FileShare.None&amp;#41;&lt;br /&gt;                accessToken &amp;#61; dropBoxStorage.DeserializeSecurityToken&amp;#40;fs&amp;#41;&lt;br /&gt;            End Using&lt;br /&gt;            Dim storageToken As Object &amp;#61; dropBoxStorage.Open&amp;#40;dropBoxConfig, accessToken&amp;#41;&lt;br /&gt;&lt;br /&gt;            Dim publicFolder As Object &amp;#61; dropBoxStorage.GetFolder&amp;#40;&amp;#34;dropboxfolder&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt;            Dim srcFile As &amp;#91;String&amp;#93; &amp;#61; Environment.ExpandEnvironmentVariables&amp;#40;&amp;#34;filepath&amp;#41;&lt;br /&gt;&lt;br /&gt;            Dim client As New DropNetClient&amp;#40;&amp;#34;a&amp;#34;, &amp;#34;b&amp;#34;, &amp;#34;c&amp;#34;, &amp;#34;d&amp;#34;&amp;#41;&lt;br /&gt;            Dim obj &amp;#61; client.GetMetaData&amp;#40;&amp;#34;dropboxfolder&amp;#34;&amp;#41;&lt;br /&gt;            Dim FolderExist As Boolean &amp;#61; False&lt;br /&gt;            Dim NewFileName As String &amp;#61; FileUpload1.FileName.ToString&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;            If FolderExist &amp;#61; True Then&lt;br /&gt;                dropBoxStorage.UploadFile&amp;#40;srcFile, publicFolder, NewFileName&amp;#41;&lt;br /&gt;            Else&lt;br /&gt;                dropBoxStorage.UploadFile&amp;#40;srcFile, publicFolder, NewFileName&amp;#41;&lt;br /&gt;            End If&lt;br /&gt;&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;        Finally&lt;br /&gt;            dropBoxStorage.Close&amp;#40;&amp;#41;&lt;br /&gt;        End Try&lt;br /&gt;        Response.Write&amp;#40;&amp;#34;Complete&amp;#34;&amp;#41;&lt;br /&gt;    End Sub&lt;br /&gt;</description><author>deepkiraninc</author><pubDate>Mon, 01 Apr 2013 11:47:07 GMT</pubDate><guid isPermaLink="false">Created Issue: Upload file more than 200mb problem [19547] 20130401114707A</guid></item><item><title>Commented Issue: Download forbidden [19454]</title><link>http://sharpbox.codeplex.com/workitem/19454</link><description>Hi,&lt;br /&gt;I&amp;#39;m getting the http error code 403 while downloading a file. &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#58;    in AppLimit.CloudComputing.SharpBox.Common.Net.Web.WebRequestService.GetWebResponse&amp;#40;WebRequest request&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox.Logic.DropBoxStorageProviderService.CreateDownloadStream&amp;#40;IStorageProviderSession session, ICloudFileSystemEntry fileSystemEntry&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.GenericStorageProviderService.DownloadResourceContent&amp;#40;IStorageProviderSession session, ICloudFileSystemEntry fileSystemEntry, Stream targetDataStream, FileOperationProgressChanged progressCallback, Object progressContext&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.BaseObjects.BaseFileEntryDataTransfer.Transfer&amp;#40;Stream targetDataStream, nTransferDirection direction, FileOperationProgressChanged progressCallback, Object progressContext&amp;#41;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The strange thing is that I can correctly login and I can display all folder and files in my dropbox account. &lt;br /&gt;I got this error only after my app has entered into &amp;#34;production&amp;#34; status. When it was in test it worked perfectly.&lt;br /&gt;Comments: ** Comment from web user: marcoKED2 ** &lt;p&gt;An update to this issue.&lt;br&gt;The problem is the .Net framework. I had to move from version 4.0 to 4.5 of .Net framework and using a Web Site with version 4.5 the problem rise while using the 4.0 there were no problems. &lt;br&gt;Using instead a Web Application the library works fine for both versions.&lt;/p&gt;</description><author>marcoKED2</author><pubDate>Wed, 13 Mar 2013 15:46:06 GMT</pubDate><guid isPermaLink="false">Commented Issue: Download forbidden [19454] 20130313034606P</guid></item><item><title>Created Issue: Download forbidden [19454]</title><link>http://sharpbox.codeplex.com/workitem/19454</link><description>Hi,&lt;br /&gt;I&amp;#39;m getting the http error code 403 while downloading a file. &lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#58;    in AppLimit.CloudComputing.SharpBox.Common.Net.Web.WebRequestService.GetWebResponse&amp;#40;WebRequest request&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox.Logic.DropBoxStorageProviderService.CreateDownloadStream&amp;#40;IStorageProviderSession session, ICloudFileSystemEntry fileSystemEntry&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.GenericStorageProviderService.DownloadResourceContent&amp;#40;IStorageProviderSession session, ICloudFileSystemEntry fileSystemEntry, Stream targetDataStream, FileOperationProgressChanged progressCallback, Object progressContext&amp;#41;&lt;br /&gt;   in AppLimit.CloudComputing.SharpBox.StorageProvider.BaseObjects.BaseFileEntryDataTransfer.Transfer&amp;#40;Stream targetDataStream, nTransferDirection direction, FileOperationProgressChanged progressCallback, Object progressContext&amp;#41;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The strange thing is that I can correctly login and I can display all folder and files in my dropbox account. &lt;br /&gt;I got this error only after my app has entered into &amp;#34;production&amp;#34; status. When it was in test it worked perfectly.&lt;br /&gt;</description><author>marcoKED2</author><pubDate>Mon, 11 Mar 2013 12:48:46 GMT</pubDate><guid isPermaLink="false">Created Issue: Download forbidden [19454] 20130311124846P</guid></item><item><title>Created Issue: Dropbox authorization fails with status 500 [19371]</title><link>http://sharpbox.codeplex.com/workitem/19371</link><description>DropBoxConfiguration.cs sets default callback URL to &amp;#34;http&amp;#58;&amp;#47;&amp;#47;sharpox.codeplex.com&amp;#34; which is a non-existent subdomain &amp;#40;&amp;#34;sharpox&amp;#34; is missing the &amp;#39;b&amp;#39; after &amp;#39;sharp&amp;#39;&amp;#41;.&lt;br /&gt;</description><author>donpark</author><pubDate>Fri, 22 Feb 2013 06:33:25 GMT</pubDate><guid isPermaLink="false">Created Issue: Dropbox authorization fails with status 500 [19371] 20130222063325A</guid></item><item><title>Created Issue: DANGER! - WebDAV DeleteFileSystemEntry method can delete all of your files with one call!!! (v 1.2.0.542) - DANGER! [19349]</title><link>http://sharpbox.codeplex.com/workitem/19349</link><description>I have a lighthttp server, and I shared a root folder by WebDAV, and I have many files in here in deep folder hierarchies.&lt;br /&gt;&lt;br /&gt;The problem is, when I call DeleteFileSystemEntry with string parameter of which contains complex path, something like&amp;#58; &amp;#38;quot&amp;#59;&amp;#47;root&amp;#47;mp3&amp;#47;backstreetboyzftw&amp;#47;subbasubbahahh.mp3&amp;#38;quot&amp;#59;, instead of deleting the file, SharpBox 1.2.0.542 throws an internal NullReferenceException and send the following http message&amp;#58;&lt;br /&gt;&lt;br /&gt;DELETE &amp;#47;root&lt;br /&gt;&lt;br /&gt;And of course lighttpd deletes all of my files in root folder for good.&lt;br /&gt;&lt;br /&gt;This is a critical issue and have to be fixed ASAP&amp;#33;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve attached the http access log.&lt;br /&gt;</description><author>unbornchikken</author><pubDate>Thu, 14 Feb 2013 08:17:07 GMT</pubDate><guid isPermaLink="false">Created Issue: DANGER! - WebDAV DeleteFileSystemEntry method can delete all of your files with one call!!! (v 1.2.0.542) - DANGER! [19349] 20130214081707A</guid></item><item><title>Commented Issue: DropboxTokenIssuer.exe not working [18848]</title><link>http://sharpbox.codeplex.com/workitem/18848</link><description>The program used to generate the token files has stopped working for some reason. I was able to generate the files successfully about a month back, and now im trying the same process and it is not working, When I click Authorize, it displays the login page, I login and press Allow, and it gives me HTTP500 error. It would be nice to have a workaround for this problem.&lt;br /&gt;Thanks.&lt;br /&gt;Comments: ** Comment from web user: bdmsoft ** &lt;p&gt;You can use attached exe to Generate Tokens&lt;/p&gt;</description><author>bdmsoft</author><pubDate>Sun, 06 Jan 2013 14:29:05 GMT</pubDate><guid isPermaLink="false">Commented Issue: DropboxTokenIssuer.exe not working [18848] 20130106022905P</guid></item><item><title>Created Issue: WebDAV GetFile not working when targeting non-IIS server [19136]</title><link>http://sharpbox.codeplex.com/workitem/19136</link><description>Please find the description here&amp;#58;&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;sharpbox.codeplex.com&amp;#47;discussions&amp;#47;282146&lt;br /&gt;</description><author>unbornchikken</author><pubDate>Fri, 04 Jan 2013 12:21:48 GMT</pubDate><guid isPermaLink="false">Created Issue: WebDAV GetFile not working when targeting non-IIS server [19136] 20130104122148P</guid></item><item><title>Created Issue: Generating Shareable links [18849]</title><link>http://sharpbox.codeplex.com/workitem/18849</link><description>Is it possible currently using the Sharpbox Api to generate shareable links for files and folders&amp;#63; It is really a headache to use the REST Api for this purpose and use the Sharpbox api for the other functions&amp;#33; And is it possible to get the appkey and appsecret codes from the dropboxConfiguration&amp;#63;&lt;br /&gt;</description><author>toobas89</author><pubDate>Sun, 04 Nov 2012 09:10:39 GMT</pubDate><guid isPermaLink="false">Created Issue: Generating Shareable links [18849] 20121104091039A</guid></item><item><title>Created Issue: DropboxTokenIssuer.exe not working [18848]</title><link>http://sharpbox.codeplex.com/workitem/18848</link><description>The program used to generate the token files has stopped working for some reason. I was able to generate the files successfully about a month back, and now im trying the same process and it is not working, When I click Authorize, it displays the login page, I login and press Allow, and it gives me HTTP500 error. It would be nice to have a workaround for this problem.&lt;br /&gt;Thanks.&lt;br /&gt;</description><author>toobas89</author><pubDate>Sun, 04 Nov 2012 09:06:41 GMT</pubDate><guid isPermaLink="false">Created Issue: DropboxTokenIssuer.exe not working [18848] 20121104090641A</guid></item><item><title>Commented Issue: DropBoxCredentials not recognized [17013]</title><link>http://sharpbox.codeplex.com/workitem/17013</link><description>&amp;#60;p&amp;#62;I am trying to run the tutorial and the DropBoxCredentials is not getting recognized.  What am I missing.  I used nuget to install the SharpBox references.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Thanks in advance&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: ** Comment from web user: srinivasaraoala ** &lt;p&gt;dropboxtokenIssure is not working  i am uisng the dll that is mention in this url 1.2: http://sharpbox.codeplex.com/releases/view/74634 i am getting some error like 500 web page is not avilabe&lt;/p&gt;</description><author>srinivasaraoala</author><pubDate>Thu, 01 Nov 2012 11:38:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: DropBoxCredentials not recognized [17013] 20121101113820A</guid></item><item><title>Created Issue: Implement chunked uploads [18825]</title><link>http://sharpbox.codeplex.com/workitem/18825</link><description>For supporting large files upload &amp;#40;&amp;#38;gt&amp;#59; 150 MB&amp;#41;, it would be good to implement the new chunked-upload command&amp;#58;&lt;br /&gt;&lt;br /&gt;https&amp;#58;&amp;#47;&amp;#47;www.dropbox.com&amp;#47;developers&amp;#47;reference&amp;#47;api&amp;#35;chunked-upload&lt;br /&gt;</description><author>thepisu</author><pubDate>Wed, 24 Oct 2012 21:50:04 GMT</pubDate><guid isPermaLink="false">Created Issue: Implement chunked uploads [18825] 20121024095004P</guid></item><item><title>Created Issue: Upload and Download Progress [18590]</title><link>http://sharpbox.codeplex.com/workitem/18590</link><description>Hi, I have noticed that the context parameter has been removed from the Upload method but there is still a customnContext variable in the FileDataTransferEventArgs of the Uplaodprogress deegate method, how can the customnContext variable be used if I cannot pass it to the upload method anymore &amp;#63; &lt;br /&gt;By the way an object to update would be very useful in the UploadDownload progress callback. &lt;br /&gt;&lt;br /&gt;Thank you&lt;br /&gt;</description><author>marco_pavanelli</author><pubDate>Wed, 05 Sep 2012 12:38:31 GMT</pubDate><guid isPermaLink="false">Created Issue: Upload and Download Progress [18590] 20120905123831P</guid></item><item><title>Commented Issue: DropBox.DropBoxCredentials [18369]</title><link>http://sharpbox.codeplex.com/workitem/18369</link><description>DropBoxCredentials is not a valid type in version 1.2. What are we supposed to use instead&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: Wolf166 ** &lt;p&gt;Some pages in the documentation seems to be a little bit out of date.&lt;br /&gt;I found a newer documentation on the following position&amp;#58;&lt;/p&gt;&lt;p&gt;&amp;#34;Tutorial 2 - Authorize a SharpBox based DropBox application&amp;#34;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;sharpbox.codeplex.com&amp;#47;wikipage&amp;#63;title&amp;#61;SharpBox&amp;#37;20Developer&amp;#37;20Tutorials&amp;#38;referringTitle&amp;#61;Documentation&lt;/p&gt;</description><author>Wolf166</author><pubDate>Sun, 29 Jul 2012 13:38:45 GMT</pubDate><guid isPermaLink="false">Commented Issue: DropBox.DropBoxCredentials [18369] 20120729013845P</guid></item><item><title>Commented Issue: DropBox.DropBoxCredentials [18369]</title><link>http://sharpbox.codeplex.com/workitem/18369</link><description>DropBoxCredentials is not a valid type in version 1.2. What are we supposed to use instead&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: BermudaLamb ** &lt;p&gt;Does anyone in the development team monitor or respond to these issues&amp;#63; If SharpBox v1.2 does not work with DropBox, then it should be pulled from the downloads until it is fixed.&lt;/p&gt;</description><author>BermudaLamb</author><pubDate>Thu, 19 Jul 2012 14:56:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: DropBox.DropBoxCredentials [18369] 20120719025609P</guid></item><item><title>Created Issue: DropBox.DropBoxCredentials [18369]</title><link>http://sharpbox.codeplex.com/workitem/18369</link><description>DropBoxCredentials is not a valid type in version 1.2. What are we supposed to use instead&amp;#63;&lt;br /&gt;</description><author>BermudaLamb</author><pubDate>Mon, 16 Jul 2012 22:12:59 GMT</pubDate><guid isPermaLink="false">Created Issue: DropBox.DropBoxCredentials [18369] 20120716101259P</guid></item><item><title>Created Issue: DropBox Token Authorization Tool not working [18356]</title><link>http://sharpbox.codeplex.com/workitem/18356</link><description>When &amp;#34;Testing Token&amp;#34; receive message&amp;#58;&lt;br /&gt;Sorry, something went wrong&amp;#58; There was an error deserializing the object of type System.Collections.Generic.Dictionary&amp;#96;2 ...&lt;br /&gt;</description><author>BermudaLamb</author><pubDate>Thu, 12 Jul 2012 21:47:48 GMT</pubDate><guid isPermaLink="false">Created Issue: DropBox Token Authorization Tool not working [18356] 20120712094748P</guid></item><item><title>Commented Issue: Dropbox connecting with mono on linux [18186]</title><link>http://sharpbox.codeplex.com/workitem/18186</link><description>I have been trying to connect to Dropbox by using monodevelop and mono &amp;#40;2.10.8.1&amp;#41; on Ubuntu. This doesn&amp;#39;t work, but when I try the same thing on Mac, with monodevelop and mono, it does work. The code I created is as followed&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;DropBoxConfiguration config&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;config &amp;#61; DropBoxConfiguration.GetStandardConfiguration &amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;config.AuthorizationCallBack &amp;#61; new Uri &amp;#40;this.RedirectUrl&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;_reqToken &amp;#61; DropBoxStorageProviderTools.GetDropBoxRequestToken &amp;#40;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;config,&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;this.ConsumerKey,&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;this.ConsumerSecret&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;if &amp;#40;_reqToken &amp;#61;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;throw &amp;#40;new FetchingRequestTokenFailedException &amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#47;&amp;#47; Request the url&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;this.AuthorizationUrl &amp;#61; DropBoxStorageProviderTools.GetDropBoxAuthorizationUrl &amp;#40;config, _reqToken&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;The exception I receive is as followed&amp;#58;&lt;br /&gt;&lt;br /&gt;System.NullReferenceException&amp;#58; Object reference not set to an instance of an object&lt;br /&gt;  at AppLimit.CloudComputing.SharpBox.Common.Net.oAuth.Impl.OAuthUrlGenerator.GenerateAuthorizationUrl &amp;#40;System.String baseAuthorizeUrl, System.String callbackUrl, AppLimit.CloudComputing.SharpBox.Common.Net.oAuth.Token.OAuthToken requestToken&amp;#41; &amp;#91;0x00000&amp;#93; in &amp;#60;filename unknown&amp;#62;&amp;#58;0 &lt;br /&gt;  at AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox.DropBoxStorageProviderTools.GetDropBoxAuthorizationUrl &amp;#40;AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox.DropBoxConfiguration configuration, AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox.DropBoxRequestToken DropBoxRequestToken&amp;#41; &amp;#91;0x00000&amp;#93; in &amp;#60;filename unknown&amp;#62;&amp;#58;0 &lt;br /&gt;&lt;br /&gt;I wanted to try to use the sourcecode to debug &amp;#40;instead of the binary release&amp;#41;, but the strange thing is, that the binaries I downloaded are version 1.2, while the source code &amp;#40;also the 1.2 branche&amp;#41; show version 1.1. How can I get the 1.2 sources&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: peterhagen ** &lt;p&gt;Ah, the issue is because the default installation of Mono &amp;#40;under linux&amp;#63;&amp;#41; doesn&amp;#39;t check or validate the https certificates. So, that is solved. But, how about the 1.2 source code. Is the branch-1.2 really the 1.2 code&amp;#63; Cause the version number in the assemblyinfo shows 1.1&lt;/p&gt;</description><author>peterhagen</author><pubDate>Tue, 05 Jun 2012 08:58:35 GMT</pubDate><guid isPermaLink="false">Commented Issue: Dropbox connecting with mono on linux [18186] 20120605085835A</guid></item></channel></rss>