cancel
Showing results for 
Search instead for 
Did you mean: 

JDBC to Web Service Scenario

Former Member
0 Kudos

Hi,

Can anyone send me the document which tells the step by step procedure for developing the JDBC(Sender) to Web Service(Receiver) scenario.

Regards,

Sai.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sai !

I don't know any.

Here you have:

Tips and Tutorial for Sender JDBC Adapter

/people/yining.mao/blog/2006/09/13/tips-and-tutorial-for-sender-jdbc-adapter

RFC -> XI -> WebService - A Complete Walkthrough (Part 1)

/people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1

just use JDBC instead of RFC.

Regards,

Matias.

ps:please award points if useful.

Answers (1)

Answers (1)

Former Member
0 Kudos

got some clues for doing JDBC to Web Service scenario.

Former Member
0 Kudos

Hi Sai !

Please be aware that the JDBC sender adapter by definition is asynchronous, that is, you cannot receive the answer back from the web service and write it to the database.. without BPM.

For this kind of scenario, you will need to use BPM with some steps like these:

1) receive async from JDBC sender

2) transform to web service request format

3) send SYNC request to web service

4) receive SYNC response from web service

5) transform from webservice response format to jdbc format

6) send to JDBC receiver for UPDATE/Insert in database.

Regards,

Matias

ps: please award points if helpful.