Hi my name is pablo and i need some help with a problem in AX
i consume a service developed in .net and one of its methos receive a list of objects(class developed in .net)
example:
service.createtransfer(string,string,list of clas, string)
the problem is, simple list in dynamics ax not apply for this purpose.
the class i need send by this methos is
AXHISService.AXHIS.ArticuloERP articulo = new AXHISService.AXHIS.ArticuloERP();
i try this:
System.Type listType = System.Type::GetType('System.Collections.Generic.List`1[AXHISService.AXHIS.ArticuloERP()]');
CLRObject list = System.Activator::CreateInstance(listType);
but the listtype is null
can you help me??
please is very important.
best Regards
PABLO
*This post is locked for comments