When I use SOAP, can I have complex datatypes as returnvalues or parameters
example:
@WebMethod(operationName = "getMyDataType")
public MyDataType getMyDataType(@WebParam(name = "username") String username, @WebParam(name = "password") String password) { return new MyDatatype(bla)}
and if yes, how can the client work with the "unknown" types?
my server is in Java and the Client in c#