cancel
Showing results for 
Search instead for 
Did you mean: 

how to monitor modules

Former Member
0 Kudos

Hi,

i am trying to run a message using a module that i deployed to the WAS.

the message paases the incoming adaptor (it is green in the adaptor monitoring) , however then it fails probably , i cant see in the message monitoring any feedback.

SO i guess the module fails.

My question is how can i monitor the module , where can i see if there is a java exception etc....

Udi

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

hi Udi,

Have u written any Audit log statements in your module, if so then check the Message Monitoring. You just check Error log also in Message Monitoring.If u don't know how to use Auditlog see the example here. Just do slight modification depending on whether u r using it on inbound side or Outbound side. Just change to AuditDirection.Outbound .

obj = inputModuleData.getPrincipalData();

msg = (Message) obj;

amk = new AuditMessageKey(msg.getMessageId(), AuditDirection.INBOUND);

Audit.addAuditLogEntry(amk,AuditLogStatus.SUCCESS,"CreatePdfBean is called");

Regards,

Gowtham K.

MichalKrawczyk
Active Contributor
0 Kudos

Hi Udi,

you can monitor every java application

from Visual Administrator

have a look at my weblog:

/people/michal.krawczyk2/blog/2005/09/07/xi-why-dont-start-searching-for-all-errors-from-one-place

have a look at the applications log but you may also see some other

Regards,

michal

MichalKrawczyk
Active Contributor
0 Kudos

But:)

there's also another possibility:

you can try writing Adapter modules audit logs :

page 14 of this document:

https://websmp103.sap-ag.de/~sapdownload/011000358700003237612005E/HowToCreateAdapterModules.pdf

then you'll be able to see the logs inside message monitoring

Regards,

michal