I have two plugins (one a create pre-handler, the other an update post-handler). I built a plugins DLL from these two files using an snk, moved the dll onto the server bin and registered the two plugins with the registration tool and reset services. For some reason, the plugins are not firing...just to make sure it wasn't erroring out on any of my plugin code, I put the following line as the first piece of code in both plugins:
throw new InvalidPluginExecutionException("1");
Still, neither plugin fires and the create and update simply go through. Does anyone know if I'm missing anything here...