I'm using xml-rpc.net to access an e-commerce site (php) from an c# application. The code:
String[] fooResourcesReturn = FoobarProxy.resources(fooLoginReturn);
returns the following XmlRpcTypeMismatchException:
response contains struct value where string expected (as type String) [response : array mapped to type String[] : element 0]
The problem is that the method resources returns an array but I cannot figure out its type. I've used string[] but obviously that's not correct. Here's the def for resources:
[XmlRpcMethod("resources")]
String[] resources(String sessionId);