After hours of searching, of course, I found the answer after posting my question here. I was able to access the file using a stream reader. The code is as follows.
Dim reader As New IO.StreamReader(context.Request.InputStream)
Dim xmlFile As String = reader.ReadToEnd()
fizch source
share