Hi, guys
I'm using a dll to get a xml string from a Web Service. I don't know what size has this string, but I need to store it in a cobol variable or in a file, to parse it later.
I don't want to use something like:this:
77 XML-STRING pic x(5000000)
My code:
CREATE "@Manager"
NAMESPACE IS "Manager"
CLASS-NAME IS "ManagerHelper"
CONSTRUCTOR IS CONSTRUCTOR1 (
M-URL,
M-PROPERTY,
M-USER-ID,
M-USER-PW
)
HANDLE IS API-M.
MODIFY API-M "GetPendingData" (M-PROPERTY)
GIVING XML-STRING.
The method 'GetPendingData' returns the xml string that I need to store.
Can you help me!!!!
Thanks



