cancel
Showing results for 
Search instead for 
Did you mean: 

whether EJB is required for J2EE web application to integrate in SAP XI

GabrielSagaya
Active Contributor
0 Kudos

can any one explain whether EJB is required for J2EE web application to integrate in SAP XI

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

can any one explain whether EJB is required for J2EE web application to integrate in SAP XI

/people/alessandro.guarneri/blog/2006/10/13/get-rid-of-recordset-node

Best Regards,

Srikanth

Reward the useful answers and you will get one point yourself

Answers (1)

Answers (1)

Former Member
0 Kudos

it depends which way the J2EE web application has to integrate with SAP XI.

1. if the web app has to receive response from XI and render the same to the end user , then you probably must use EJBs which would be the client Java proxies in XI and your web app would be acting as a client to this EJB.

2. if based on the user interaction , the web app has just to trigger a background job then you have n number of options like

  1. creating a file which XI will pick up

  2. creating a JMS message and sending it to a Queue with which XI is connected using JMS adapter...

and so on...

3. You could also use the option of sending a HTTP or SOAP request directly to integration pipeline and then receive response.

all in all...everything will depend purely on the way your web app wants to communicate / integrate with XI.