Hi,
Yes there are other ways to call a webservice:
1. You can use MSXML object to fire a HTTP get/post
request on the webservice.(ASP and VB 6.0 can use this)
2. In .NET you use WebRequest class in System.Net to fire
post/get request on the web service. please see the sample
code
Dim req As WebRequest = WebRequest.Create(txtURI.Text)
Try
Dim result As WebResponse = req.GetResponse()
Dim ReceiveStream As Stream =
result.GetResponseStream()
Dim read() as Byte = new Byte(512) {}
Dim bytes As Integer = ReceiveStream.Read(read,
0, 512)
txtHTML.InnerHtml = ""
While (bytes > 0)
Dim encode As Encoding =
System.Text.Encoding.GetEncoding("utf-8")
txtHTML.InnerHtml = txtHTML.InnerHtml &
encode.GetString(read, 0, bytes)
bytes = ReceiveStream.Read(read, 0, 512)
End While
Catch Exc As Exception
txtHTML.InnerHtml = "Error retrieving page"
End Try
Incase u need any futher help please get back to me.
Thanks
Nakul