Accelerate Your Success:
Fuel your data and AI journey with the right services, delivered by our experts.
Learn More
I have a requirement to fetch BLOB image from Oracle table and send the image as parameter fileName (byte array buffer) to a REST API.
For the first part, I am able to fetch image from Table and write to local folder using tLOBDownload.
For the second part I thought of converting the image to Byte array (although I feel it should be possible directly without writing to local folder) and then send it via tRESTClient.
I just tried a simple use case for tRESTClient with POST passing parameters (and without input and output schema).
When I run the code, it gives error :
Exception in thread "main" java.lang.NoClassDefFoundError: javax.xml.bind.PropertyException
I have java1.8 jre path specified in Installed JREs in Talend open studio 7.2 (Windows->Preferences)
Any clue what I am missing here?