I understand the .NET stuff has Add-> Web Reference capability built in, where you simply supply the WSDL URL to the wizard but is there any way to do create a Web Reference in Visual Basic 6?

...if not, how can I do this using another method in Visual Basic 6?

Basically, the 3rd party company we wish to interact with has given us the WSDL URL, and two methods - sendRequest() and getResponse().

What about the following with the Inet control:

VB Code:
  1. Dim PostData As String
  2.     Dim Headers As String
  3.  
  4.     Inet1.Protocol = icHTTPS
  5.     Inet1.RemoteHost = "companywebsite.com"
  6.     Inet1.RemotePort = 443
  7.     Inet1.Document = "/stspost"
  8.     Inet1.UserName = "userID"
  9.     Inet1.Password = "password"
  10.    
  11.     PostData = "sendRequest=REQUEST GOES HERE (FIXED-LENGTH TEXT)"
  12.     Headers = "Content-Type: application/x-www-form-urlencoded" & vbCrLf
  13.    
  14.     Inet1.Execute , "Post", PostData, Headers

Thanks for any help you guys can give!