I am developing a JCA adapter and I have some doubts about my implementation for inbound messaging. The use case is I need to submit some job to EIS and include a URL as a parameter. When EIS completes the job, it invokes the URL as a notification.
The only way I can think of is to open a ServerSocket at one port, pass my server IP + port as URL to EIS. When HTTP request comes in from EIS, parse it to get the parameters.
So I would like to know if it is considered a proper implementation or if there is any better way to do it. Thanks in advance.
Regards,
K.H