通过 Soap 传递数字数组
我对编程相当陌生,需要你的帮助。
我需要使用 C# 和 Soap 将包含数字的数组传递给 Web 服务。并将这些数字的总和返回到控制台应用程序。
我知道 Soap Web 服务中的数组不能很好地工作,但我需要一个解决方案
I’m fairly new to programming and I’m in need your help.
I need to pass an array containing numbers to a Web Service using C# and Soap. And have the Sum of these numbers returned to the console application.
I understand that Array within Soap web services do not work well but I need a solution
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关 Web 服务的一般信息:MSDN Web 服务
有关如何在 C# 中创建 SOAP Web 服务的简单示例:WebServices c#
只需更改第二个示例并返回一个数组即可。
“通过soap”您将只发送一个XML文档,但是如果您用c#编写服务器和客户端,那么所有这些都是由Visual Studio提供的,您甚至不知道您正在发送XML,似乎您正在发送对象。
General info about Webservice: MSDN Web Services
Simple example about how to create SOAP Web services in c#: WebServices c#
Just change the second example and return an array.
"Via soap" you'll send just an XML document, but if you code the server and the client in c# it's all provided with Visual Studio, you won't even know that you are sending XML, it seems that you are sending objects.