使用vbscript通过身份验证调用Web Service

时间:2009-02-18 08:37:11

标签: web-services authentication vbscript

当我使用如下的vbscript代码时,如何在Web服务中获取用户名和密码。

call oXMLHTTP.open("POST","http://localhost:11883/ServiceCall.asmx/GetEmloyee,false,testUser,testPasword)

2 个答案:

答案 0 :(得分:2)

您的代码示例是正确的。

来自MSDN Reference

oXMLHttpRequest.open(bstrMethod, bstrUrl, varAsync, bstrUser, bstrPassword);

答案 1 :(得分:2)

调用send后,您还必须调用open方法。