[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Really need help to handle "BIG" 40~70kb file to send to webservice.

  • Thread starter Thread starter Marco Mendoza
  • Start date Start date
Status
Not open for further replies.
M

Marco Mendoza

Guest
Some years ago I have a similar error on PUT-STRING. I defined a temp-table DEFINE TEMP-TABLE latablaT NO-UNDO FIELD secuencia-latablaT AS INTEGER FIELD texto-latablaT AS CHAR INDEX primario secuencia-latablaT. And copied the XML on small sections to the temp-table. And later: PUT-STRING(mRequest,1) = vcRequest. Mposicion = 0. Mposicion = LENGTH(vcRequest) + 1. FOR EACH latablaT: PUT-STRING(mRequest,Mposicion) = texto-latablaT. Mposicion = Mposicion + LENGTH(texto-latablaT). END. Im not sure if that can work with your code.

Continue reading...
 
Status
Not open for further replies.
Back
Top