While trying to upload Log files to server using the BackgroundUploader class, we are seeing the below issue. The maximum number of secrets that may be stored in a single system has been exceeded. (Exception from HRESULT: 0x80070565) Environment Details: * Visual Studio 2013 * C# * Windows Embedded Handheld [...] read more
Im creating a new BackgroundTransfer and adding Server Credentials: PasswordCredential webdavLogin = new PasswordCredential(); webdavLogin.UserName = ServerSettings.Values["serverUsername"].ToString(); webdavLogin.Password = ServerSettings.Values["serverPassword"].ToString(); uploader.ServerCredential = webdavLogin; Now the problem is, everytime i run the BackgroundTransfer, the following exception raises: Exception from HRESULT: 0x80070565 The maximum number of secrets that may be stored in [...] read more