如何确定有效的 SoapAction?

How do you determine a valid SoapAction?(如何确定有效的 SoapAction?)
本文介绍了如何确定有效的 SoapAction?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 NuSoap PHP 库 调用一个 webservice.webservice 似乎使用 .NET;每次我调用它时,都会收到关于使用无效 SoapAction 标头 的错误.发送的标头是一个空字符串.如何找到服务器期望的 SoapAction?

I'm calling a webservice using the NuSoap PHP library. The webservice appears to use .NET; every time I call it I get an error about using an invalid SoapAction header. The header being sent is an empty string. How can I find the SoapAction that the server is expecting?

推荐答案

通过查看服务的 WSDL,您可以看到您正在调用的服务操作期望的 SoapAction.对于 .NET 服务,您可以通过在 Web 浏览器中打开服务的 URL 并在末尾附加 ?wsdl 来访问 WSDL.

You can see the SoapAction that the service operation you're calling expects by looking at the WSDL for the service. For .NET services, you can access the WSDL by opening a web browser to the url of the service and appending ?wsdl on the end.

在 WSDL 文档中,您可以看到在操作"节点下(在绑定"下)定义的 SoapActions.例如:

Inside the WSDL document, you can see the SoapActions defined under the 'Operation' nodes (under 'Bindings'). For example:

<wsdl:operation name="Execute">
  <soap:operation soapAction="http://tempuri.org/Execute" style="document" />

找到您尝试调用的操作的操作节点,您会在那里找到它期望的 Soap Action.

Find the operation node for the operation you're trying to invoke, and you'll find the Soap Action it expects there.

这篇关于如何确定有效的 SoapAction?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Uploading Image from android to PHP server(将图像从android上传到PHP服务器)
Sending file together with form data via ajax post(通过ajax post将文件与表单数据一起发送)
Laravel - validate file size when PHP max upload size limit is exceeded(Laravel - 超过 PHP 最大上传大小限制时验证文件大小)
How to upload file through Jquery/AJAX(如何通过 Jquery/AJAX 上传文件)
PHP: move_uploaded_file() failed to open stream: No such file or directory(PHP:move_uploaded_file() 无法打开流:没有那个文件或目录)
Creating a file progress bar in PHP(在 PHP 中创建文件进度条)