i am trying to create a java serverside extension, it loads ok and the init and destroy trace info is displayed in the admin trace panel. But i also want to display internal events, and thus i have used this code:
Code: Select all
public void handleInternalEvent(InternalEventObject ieo)
{
// Your code here
// Simply print the name of the event that was received
String evtName = ieo.getEventName();
trace("Event received: " + evtName);
}Olaf[/quote]