如何将肥皂基本身份验证请求添加到 WSDL

发布于 2024-10-16 19:08:17 字数 74 浏览 3 评论 0原文

我怎样才能对 WSDL 进行 Soap AUTH BASIC 身份验证,以便阅读 WSDL 的人知道我需要针对特定​​方法进行该操作?

How can I had soap AUTH BASIC auth to a WSDL, so who ever reads the WSDL knows I require that operation for a specific method ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蒲公英的约定 2024-10-23 19:08:17

使用下面的示例,我成功地将 SOAP 基本身份验证传递到另一端的 php Web 服务。
PHP.net/Soapclient 有一个简单的工作示例,但在 csharp 中我发现此链接可以解决我的问题。

链接

Michaelis.MockService 是您可能会看到的提取的 Web 服务库有关如何执行此操作的示例:
链接 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();

Using the example bellow I have managed to pass the SOAP basic autentication to the php webservice on the other end.
The PHP.net/Soapclient has a simple working example, but in csharp I found this link to be a solution to my problem.

link

Michaelis.MockService is the Webservice library extracted you may see an example on how to do this in:
link Mono project website.

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();
謌踐踏愛綪 2024-10-23 19:08:17

据我所知,没有办法具体说明这一点。

There is no way to specify this, as far as I know.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文