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:
Here is my code to reproduce the error:
public class DVPTestRun extends SysTestCase
{
[SysTestMethodAttribute()]
public void createAttachment()
{
// get first CustTable
CustTable custTable;
select firstonly custTable;
DocuType docuType = DocuType::find(DocuType::typeFile());
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);
}
}
}


Report
All responses (
Answers (