cancel
Showing results for 
Search instead for 
Did you mean: 

Modules In adapter

praveenreddy_bk
Participant
0 Kudos

Hi frnds, I need some theory about Module in adapter .

How can v write code over there.

V can write in java .

wat is main purpose of module.

Can u giv me example .......

bye..........

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Adapter modules

While dealing with adapter modules,

1. First, create an EJB Module.

2. You create a Stateless session bean.

3. You use the following attributes for the bean,

Remote Interface: com.sap.aii.af.mp.module.ModuleRemote

Home Interface: com.sap.aii.af.mp.module.ModuleHome

Local Interface: com.sap.aii.af.mp.module.ModuleLocal

LocalHome Interface: com.sap.aii.af.mp.module.ModuleLocalHome

4. Your class must implement,

Module.process(ModuleContext, ModuleData).

5. You buiild an EAR archive and an Application Archive and then deploy this on your J2EE engine.

For async sender/receiver adapters, you use modules before the adapter module.

for sync sender/receiver adapters, you can wither use modules before the adapter module (they will affect the request message) or after the adapter module (affecting the response message).

Refer

/people/daniel.graversen/blog/2006/10/05/dynamic-configuration-in-adapter-modules

SAP NetWeaver Exchange Infrastructure - Adapter Module Development - Webinar Powerpoint

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e21106cc-0c01-0010-db95-dbfc0ffd...

SAP Network Blog: XI: Dynamic configuration in adapter modules - one step further

/people/michal.krawczyk2/blog/2006/10/09/xi-dynamic-configuration-in-adapter-modules--one-step-further

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3bdc14e1-0901-0010-b5a9-a01e29d7...

http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/f13341771b4c0de10000000a1550b0/frameset.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/fd/16e140a786702ae10000000a155106/content.htm

/people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi

http://help.sap.com/saphelp_nw2004s/helpdata/en/6a/a12241c20af16fe10000000a1550b0/content.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/e4/6019419efeef6fe10000000a1550b0/content.htm

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/327dc490-0201-0010-d49e-e10f3e6c...

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/34a1e590-0201-0010-2c82-9b6229cf...

Thanks

Swarup

agasthuri_doss
Active Contributor
0 Kudos

Hi,

1) The module processor controls the message flow between the messaging service and the JCA adapters

on the J2EE Enterprise JavaBean application level.

2) The module processor provides all modules with context information (for example, the current ID for the

communication channel) or access to the configuration data of the module

Please go through the link

1) /people/michal.krawczyk2/blog/2006/10/09/xi-dynamic-configuration-in-adapter-modules--one-step-further --by Michal Krawczyk

2) http://help.sap.com/saphelp_nw04/helpdata/en/8b/895e407aa4c44ce10000000a1550b0/content.htm-

Adapter and Module Development

3) http://help.sap.com/saphelp_nw04/helpdata/en/32/43d84072378031e10000000a1550b0/content.htm-

Adapter Framework Module Interfaces

4) http://help.sap.com/saphelp_nw04/helpdata/en/cd/5af7c0c994e24fb0d0088443513de2/content.htm-

Module Processor

Regards,

sangeetha