Tagged Questions
0
votes
2answers
2k views
How to post XML document to HTTP with VB.Net
I'm looking for help with posting my XML document to a url in VB.NET. Here's what I have so far ...
Public Shared xml As New System.Xml.XmlDocument()
Public Shared Sub Main()
Dim ...
0
votes
1answer
191 views
Prevent errors when doing a Webrequest in VB.Net
I receive three errors using the following function:
Private Sub readWebpage(ByVal url As String)
Try
Dim req As System.Net.WebRequest = System.Net.WebRequest.Create(url)
Dim resp ...
0
votes
2answers
361 views
IIS/Cache problem?
I have a program that checks if a file is present every 3 seconds, using webrequest and webresponse. If that file is present it does something if not, ect, that part works fine. I have a web page that ...