I need to send two parameters as a complex data type to the server in a SOAP request. I am new to web services. I am able to send simple parameters. I don't know how to send complex types. The server code is a third party code and I don't have access to it. I do know that it is .NET. Please help me with the client code on accessing the service. Thanks a lot!
Here is the WSDL
======== excerpt 2 ===============
======== excerpt 2 ===============
================ This is my client code ============
Map parameters = new HashMap();
parameters.put("InstallationID", "1234");
parameters.put("LicenseNumber", "123");
Vector params = new Vector();
params.addElement(new Parameter("parameters", Map.class, parameters, null));
call.setParams(params);
==================================================