P
Peter Judge
Guest
Because of this CASE statement /* Change extension per the Response's ContentType */ CASE oResponse:ContentType: WHEN 'application/json' THEN COPY-LOB lcHTML TO FILE 'temp/entity.json'. WHEN 'text/html' THEN COPY-LOB lcHTML TO FILE 'temp/entity.html'. OTHERWISE COPY-LOB lcHTML TO FILE 'temp/entity.txt'. END CASE. There's no check for XML. Add a WHEN with the appropriate XML and you should be good.
Continue reading...
Continue reading...