2
當我使用如下的vbscript代碼時,如何在webservice中獲取用戶名和密碼。使用vbscript使用身份驗證調用Webservice
call oXMLHTTP.open("POST","http://localhost:11883/ServiceCall.asmx/GetEmloyee,false,testUser,testPasword)
當我使用如下的vbscript代碼時,如何在webservice中獲取用戶名和密碼。使用vbscript使用身份驗證調用Webservice
call oXMLHTTP.open("POST","http://localhost:11883/ServiceCall.asmx/GetEmloyee,false,testUser,testPasword)
你的代碼示例是正確的。
oXMLHttpRequest.open(bstrMethod, bstrUrl, varAsync, bstrUser, bstrPassword);
Web服務期望什麼認證方案? NTLM?基本? – Tomalak 2009-02-18 08:57:14