使用VB.net要如何访问这个地址:http://172.16.10.12:8080/MES/services/HjEqpWebService?wsdl , 并接收其返回的数据 , 不要使用服务引用
时间: 2024-01-19 17:02:14 浏览: 74
使用VB访问数据库
您可以使用 `WebClient` 类来访问该地址,并获取返回的数据。以下是一个示例代码:
```vb.net
Dim url As String = "http://172.16.10.12:8080/MES/services/HjEqpWebService?wsdl"
Dim client As New WebClient()
Dim response As String = client.DownloadString(url)
```
此代码将使用 `WebClient` 下载指定 URL 的内容,并将其作为字符串返回。您可以根据需要进一步处理 `response` 变量中的数据。
阅读全文