[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 OctavioOlguin
  • Start date Start date
Status
Not open for further replies.
O

OctavioOlguin

Guest
Apparently.. changing to this, make me more closer to solution DEFINE TEMP-TABLE quick_stamp NO-UNDO NAMESPACE-URI " facturacion.finkok.com/stamp" FIELD xml AS clob FIELD username AS CHARACTER FIELD password AS CHARACTER . DEFINE DATASET quick_stampDset NAMESPACE-URI " facturacion.finkok.com/stamp" XML-NODE-TYPE "HIDDEN" FOR quick_stamp. COPY-LOB FROM FILE NomArchXMLTemp TO OBJECT memptrRawData. CREATE quick_stamp. COPY-LOB memptrRawData TO quick_stamp.xml. ASSIGN username = wsUser password = wsPassword. //xml = lcRAWdata. RUN quick_Stamp IN hApplication (INPUT DATASET quick_stampDset, OUTPUT lcXMLcfdi ) . The field was changed to CLOB.

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