Hi Ceki and all,<br>I figured the problem out so there's no need to answer my previous email.<br>FYI:<br>What was missing is the CallerData object that apparently needs to be defined....<br>Here is the code: (in addition to the code in previous message)<br>
<br>CallerData callerData= new CallerData("somefilename.java", "foo", "methodFoo", 123); <br>CallerData[] cda = new CallerData[1];<br>cda[0] = callerData;<br>//then I added the callerData to the event...<br>
event.setCallerInformation(cda);<br><br>This did the trick.<br>I'm happy ;-)<br>Gregory<br>