Hi Expert,
I have a scenario SOAP to JDBC. So soap can have multiple attachments. I need to all the attachments to a folder and the SOAP payload will map to a stored procedure.
I design it as below...
1) Create a zip file with all the attachments.
2) Delete the separate attachments.
3) Read the zip file and pass it to a BLOB field of the stored procedure.
I am trying to avoid JAVA IO to read the attachment and place those directly to a folder by JAVA program.
Step 1 I have completed and stacked in 2 & 3.
I have check blog http://scn.sap.com/docs/DOC-26528 for zipping (step 1).
I find another similar type blog to pass input file to BLOB http://scn.sap.com/community/pi-and-soa-middleware/blog/2010/03/28/sap-xipi-storing-binaries-images-pdfs-etc-in-the-database-blobs-using-jdbc-adapter
Can you please help me regarding this.
Thanks,
Anirban