Hello
I want to send an XML (itself) as Base64 to a Web Service
Added to that I want to send a BLOB with that XML
I understand first I would need to convert the BLOB to CLOB to be sent as base64 using " to_clob(utl_raw.cast_to_varchar2(utl_encode.base64_encode(buffer)))
" etc
Here I understand I get CLOB which conform to base64
After that shall I convert the other part of XML as base64, append to the above CLOB (Base64) and then send as input to Web Service?
Or
there is any mechanism with which I can send entire XML alongwith BLOB with some trick?
Kind Regards
Orapratap