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