Hello community, i was switching to the latest VHD 10.0.32 last week and ran into a problem with our tests. When we create a attachment during the test, we will getting the following error message:
The problem only occurs during a test. Can anyone confirm this behavior with VHD 10.0.32? Thank you! Here is my code to reproduce the error:
[SysTestCaseDataDependencyAttribute('DEMF')] public class DVPTestRun extends SysTestCase { [SysTestMethodAttribute()] public void createAttachment() { // get first CustTable CustTable custTable; select firstonly custTable;
// get DocuType file DocuType docuType = DocuType::find(DocuType::typeFile());
// attach a file to CustTable str fileName = 'Test1.txt'; str fileContentType = System.Web.MimeMapping::GetMimeMapping(fileName); System.Byte[] fileContent = System.Text.Encoding::UTF8.GetBytes('Hello!'); using (System.IO.MemoryStream streamToAttach = new System.IO.MemoryStream(fileContent)) { DocumentManagement::attachFileToCommon(custTable, docuType.TypeId, streamToAttach, fileName, fileContentType, fileName); } } }
VHD 10.0.32 Attachment Issue During Test - Error 'Settings must be of the form "name=value".'
Hello, I reported this issue to MS. They have fixed it. In a newer release, the issue should not happend anymore.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.