当前位置:   article > 正文

SAP PI/PO 服务的 .Net C# SOAP Web Service 客户端示例代码_sap po endpoint

sap po endpoint

我正在帮助一位朋友从 .Net 连接到 PO Web 服务。它不够简单,我还没有找到一个很好的例子,所以我决定与你分享代码。 为简单起见,它是一个控制台应用程序。

特点是:

使用 SOAP 1.1
基于 HTTP 的基本身份验证
指定端点

首先,我们添加一个服务引用

SAP PI/PO 服务的 .Net C# SOAP Web Service 客户端示例代码

 我们可以给出一个 Web URL 或文件路径:

SAP PI/PO 服务的 .Net C# SOAP Web Service 客户端示例代码

 将您的 C# 命名空间添加到主类。

using ConsoleApplication4.ServiceReference2;

以及示例代码块:

  1. static void Main(string[] args)
  2. {
  3. BasicHttpBinding binding = new BasicHttpBinding();
  4. binding.Security.Mode = BasicHttpSecurityMode.TransportCredentialOnly;
  5. binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;
  6. EndpointAddress endpoint = new EndpointAddress("http://hostname:port/XISOAPAdapter/MessageServlet?senderParty=&senderService=BC_SENDER_SYSTEM0&receiverParty=&receiverService=&interface=SI_SEND_ORG_DATA&interfaceNamespace=http://example.com/HR/OrganisationData");
  7. SI_SEND_ORG_DATAClient client = new SI_SEND_ORG_DATAClient(binding, endpoint);
  8. client.ClientCredentials.UserName.UserName = "Username";
  9. client.ClientCredentials.UserName.Password = "Password";
  10. ZHRS_SEND_ORG_LINE[] result = client.SI_SEND_ORG_DATA("1234");
  11. System.Console.WriteLine(result[0].VORNA);
  12. System.Console.ReadLine();
  13. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/540002
推荐阅读
相关标签
  

闽ICP备14008679号