Is there an established way a CORBA client API could be invoked part of the Spring-Batch mechanism?
I have a requirement for mass data be processed through the APIs hosted via CORBA from a database. I am considering the API call as an Item Processor or Item Writer.
For Item processor, I may need to just call the API in the processing phase by injecting the necessary CORBA stuff.
For Item Writer, Is there a writer that is suitable? I didn't find one. Maybe I can build a writer generically so that it could be used as any other writer or just write a custom writer and get over it.
Could anyone help by evaluating the approaches and suggest the best possible way? If I could write a generic CorbaItemWriter how can I contribute to the Spring Batch community?
Note: I was able to successfully get the CORBA client configured in Spring and use the ItemProcessor to connect the API.