When using the Symantec Protection Engine (SPE) Software Development Kit (SDK) to create StreamScan requests, the SPE logs show the file name as index.html.
The variables for the createStreamScanRequest file name fields are null by default. You will need to replace them with a variable that your code fills in.
Default example code:
StreamScanRequest streamScanReq = scanEngine.createStreamScanRequest(null, null, output, SCAN_POLICY);
Correct usage:
StreamScanRequest streamScanReq = scanEngine.createStreamScanRequest(<FileToScan>, <OriginalFileName>, output, SCAN_POLICY);