I am using an SQL adapter to extract data from a Stored Procedure. Ordinarily I use ‘select * from myTable for XML RAW, XMLDATA’ But in this instance the SP was written by someone else and their code uses this syntax ‘select * from myTable for XML EXPLICIT, XMLDATA’
Howver this gives me problems when I try to incorporate it into my Orchestration.
I think the Explicit option is unsupported by the bulit-in SQL Adapter, we needed it a time or two and never got it to work. Maybe you could wrap the stored proc with a C# program?