Detailed ServiceDescription / Proxy from WSDL
I am using the classes ServiceDescription / ServiceDescriptionImporter to dynamically call web services. I'd like to dig a bit deeper into the WSDL description and get 1) Parameter info for each of the web methods 2) The actual types / composition each parameters of all the web methods (ie if a WebMethod takes some complex type as a parameter, I need to know the primitive / other types it is composed of as well, if possible) Here is the code I have for the dynamical call: public static object CallWebService(string webServiceAsmx, string serviceName, string methodName, object[] args = null) {