在 SAP 中生成 WSDL Web 服务对象
SAP 是否可以生成客户端存根并从 .NET WCF Web 服务提供的 WSDL 传输对象?或者我是否必须手动构建 SOAP XML 请求?
更切中要点。我仍然有 WCF Web 服务和 wsdl。我对SAP一无所知。所以问题是。是否可能以及如何从 WSDL 在 SAP 中创建客户端服务存根和传输对象?
is it possible with SAP to generate client stubs and transfer objects from a WSDL served by a .NET WCF web service? Or do I have to build my SOAP XML requests manually?
To be more on the point. I still have a WCF web service and the wsdl. I have no knowlege in SAP. So the question is. Is it possible and how can I create client service stubs and the transfer objects in SAP from my WSDL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有权访问用于获取 wsdl 文件的 URL 或 wsdl 文件本身,那么为现有 Web 服务创建 ABAP 客户端就很容易。请参阅此
问候
It's easy to create an ABAP client for an existing web service if you have access to the URL for obtaining the wsdl file or the wsdl file itself. See this link for an step by step tutorial wich is basically:
1- Generate proxy from wsdl using assitant
2- Use proxy generated in your ABAP program
Regards
为此,您可以使用 wcf 中的 WSDL。您可以获取
service.svc?wsdl
形式的 WSDL。然而,有时,某些 SOAP 客户端生成器希望在一次调用中获得 SOAP/WSDL 的所有定义。为此,您可能需要查看以下页面:http://weblogs.asp.net/pglavich/archive/2010/03/16/making-wcf-output-a-single-wsdl-file-for-interop- Purposes.aspx
<一个href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/f03b6e78-ef28-4692-8f19-62d2f2d3bc9c" rel="nofollow noreferrer">http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/f03b6e78-ef28-4692-8f19-62d2f2d3bc9c
WCF:如何在没有 WSDL:import 的情况下生成单个 WSDL 文档?
You can use the WSDL from the wcf for this. You can get the WSDL as
service.svc?wsdl
. However at times, some SOAP client generator expect all the definitions of the SOAP/WSDL in a single call. For that you might have to look at the following pages:http://weblogs.asp.net/pglavich/archive/2010/03/16/making-wcf-output-a-single-wsdl-file-for-interop-purposes.aspx
http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/f03b6e78-ef28-4692-8f19-62d2f2d3bc9c
WCF: how to generate a single WSDL document, without WSDL:import?