[cb4 production] runEvent

I’m having an issue getting runEvent to fire. I write runEvent around a dump/abort and returns null every time.

any ideas what i could be doing wrong?

here is my handler…

function index(event,rc,prc){

writedump(runEvent(“testModule.testHandler.index”));abort;

What’s in testModule.testHandler.index? Handler functions typically return void, which means that dumping them would give you a null.

If you’re not seeing an error thrown, runEvent() is firing.

Any around handlers?

I figured it out - i wasn’t calling module : handler . view - I was doing module.handler.view which didn’t work.

thanks!