如何將SOAP AUTH BASIC認證授予WSDL,那麼誰會讀取WSDL知道我需要某個特定方法的操作?如何將SOAP基本認證請求添加到WSDL
1
A
回答
0
據我所知,沒有辦法指定它。
1
使用示例波紋管,我設法將SOAP基本驗證傳遞給另一端的php webservice。 PHP.net/Soapclient有一個簡單的工作示例,但在csharp中,我發現這個鏈接是我的問題的解決方案。
Michaelis.MockService是提取你可以看到如何做到這一點的一個例子,web服務庫: link Mono項目網站。
Michaelis.MockService service = new Michaelis.MockService();
// Create the network credentials and assign
// them to the service credentials
NetworkCredential netCredential = new NetworkCredential(「Inigo.Montoya」, 「Ykmfptd」);
Uri uri = new Uri(service.Url);
ICredentials credentials = netCredential.GetCredential(uri, 「Basic」);
service.Credentials = credentials;
// Be sure to set PreAuthenticate to true or else
// authentication will not be sent.
service.PreAuthenticate = true;
// Make the web service call.
service.Method();
相關問題
- 1. 如何將基本身份驗證添加到Python REST請求?
- 2. 將基本身份驗證添加到SOAP請求的標頭 - WebService
- 3. 將HTTP基本認證添加到servletRequest
- 4. 如何使用JAX-WS將SOAP頭添加到SOAP請求?
- 5. SOAP請求與認證
- 6. 將附件添加到SOAP請求
- 7. 將SOAP頭添加到SOAPpy請求
- 8. 將authHeader添加到Perl SOAP :: Lite請求
- 9. 將SOAP隱式標頭添加到WSDL
- 10. Java的SOAP請求WSDL
- 11. SOAP和PHP和WSDL請求
- 12. java soap asmx基本認證
- 13. 帶有SOAP級別認證和HTTP認證的Onvif SOAP請求
- 14. 如何在WSDL中要求認證Soap Header?
- 15. 發送一個請求到SOAP WSDL
- 16. 如何驗證SOAP請求
- 17. 如何以編程方式(!)驗證soap請求/響應與wsdl?
- 18. 如何將標題添加到SOAP請求?
- 19. 如何將自定義頭添加到cxf soap請求?
- 20. 如何添加基本驗證標題到我的SOAP?
- 21. 添加基本http認證到MockWebServiceClient
- 22. 後續請求的基本HTTP認證
- 23. API(json)請求CakePHP基本認證
- 24. 跨域ajax請求基本認證
- 25. 將版本添加到WSDL
- 26. 在PHP中驗證到WSDL的傳入SOAP請求
- 27. 將單個證書添加到請求
- 28. 如何將屬性添加到這個SOAP WSDL的Android
- 29. Java如何驗證對WSDL的請求?
- 30. 如何將returnURL添加到SAML請求?
我還沒有找到我真正想要的,但找到了解決方案。 因爲在php中使用csharp客戶端,soapclient網站上的例子很簡單。 [鏈接](http://www.intellitechture.com/Calling-web-services-using-basic-authentication/) – 2011-02-10 15:47:00