WebService使用Visual Basic发送SOAP请求和接收响应

时间:2015-08-21 08:57:09

标签: vb.net

我的客户给我一个WebService url = https://public-ws-stage.dpd.com/services/LoginService/V2_0,他告诉我,如果我发送这个xml文本:

enter image description here

但是,如果我使用此代码,这是不对的:

SupportMapFragment
不回复我的客户告诉我的,我不明白网址不是真的,我写错了代码,请帮帮我。

1 个答案:

答案 0 :(得分:1)

尝试更改网址而不使用"?wsdl"从这个:

Request = WebRequest.Create("https://public-ws-stage.dpd.com/services/LoginService/V2_0/?wsdl")

到此:

Request = WebRequest.Create("https://public-ws-stage.dpd.com/services/LoginService/V2_0/")