I am working on a SOAP Client in C#, consuming a service I've exposed in PHP using NuSoap. My web service is working great from a consumption standpoint, but the trouble I'm running into has to do with passing a complex type as an argument.
Working with a complex type returned by a method is no trouble, but I can't seem to figure out how to actually manipulate my complex type in C#.
Unless someone actually requests it, I'll spare the lengthy WSDL for now. But the complex type I'm trying to work with is a list of another complex type. What I need to do in my C# app is add and remove items from the list, but I can't seem to figure out how.
Could anyone point me in the right direction? More information can be provided upon request.