Well firstly, I think you must create a new instance of the Httplistener class:
Visual Basic Way:
Dim MyHttpListener As System.Net.HttpListener = New System.Net.HttpListener()
Next, you must start your listener:
Visual Basic Way:
MyHttpListener.Start()
That's what you must do to get it started. Hope it helps :D
|