cancel
Showing results for 
Search instead for 
Did you mean: 

Adapter module for RFC Adapter

Former Member
0 Kudos

Hi XI experts,

I am writing my first module adapter for an RFC adapter. I have followed the guides and have deployed the module using SDM. I have also changed the config in ID to call the bean before the rfc adapter.

For whatever reason, the module is not being called. I have read a lot about mail adapters but I am looking for guidance with the RFC adapter.

Please advise.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi !

First of all, you need to be sure that the module is not called. Maybe you could write a log file in file system inside the module to check if it was called or not. Did you payed attention to the call order in the modules tab in the comm channel?

Regards,

Matias.

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Matias/Ranjeet,

I discovered that the config in ID was not activated. I then started to get a delivery exception. I changed the module name to localejbs/DecryptCard (jndi name) in ID. Now the delivery exception is blank i.e. no object is referenced in the exception message. I don't have access to NWA to view the log but I am working with basis on that.

Former Member
0 Kudos

Thanks Matias and Ranjeet.

I will try that and advise.

Former Member
0 Kudos

Hi Salah,

Add this code is your adapter module and check that in Adapter audit you are getting message from the code.

Message msg = (Message) inputModuleData.getPrincipalData();

AuditMessageKey amk = new AuditMessageKey(msg.getMessageId(),

AuditDirection.INBOUND);

Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,

"AdapterModule: Module called");

Ranjeet Singh.