通过 Soap 传递数字数组

发布于 2025-01-06 02:04:35 字数 133 浏览 0 评论 0原文

我对编程相当陌生,需要你的帮助。

我需要使用 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 技术交流群。

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

发布评论

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

评论(1

酒浓于脸红 2025-01-13 02:04:35

有关 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.

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