19CEE
Hi there -
Here is the issue I am facing
I need to send my text with a base 64 encoding via webservice. I see valid values for example
"TEXT" is encoded to "VEVYVA==" which works
However, based on documentation if I were to usee the UTL_ENCODING options, I get numeric values
select utl_encode.base64_encode(utl_raw.cast_to_raw('TEXT')) from dual
Similarly I need to decode it back when I get the value via webservice. Can someone guide me on how to get this conversion right.
TEXT should be converted to VEVYVA== as an example
thanks!