Check the FilterOn property
From the webserver, you can check the status of the HttpModule on both the webserver and fileserver. For testing purposes, the following code can be added to your webserver code:
C#:
Response.Write("Webserver: " + oFileUpEE.get_FilterOn(saTransferStage.saWebServer));
//If this is a 3-tier application, you can add the following line
Response.Write("FileServer: " + oFileUpEE.get_FilterOn(saTransferStage.saFileServer));
VB.NET:
Response.Write("Webserver: " & oFileUpEE.FilterOn(saTransferStage.saWebServer))
'If this is a 3-tier application, you can add the following line
Response.Write "FileServer: " & oFileUpEE.FilterOn(saTransferStage.saFileServer))