1

2

I'm developing a plugin (not for use on On Demand) which needs to do some stuff which the appdomain won't allow. How can I get around this?

flag

1 Answer

2

Brett's answer from this specific question on a security limitation:

You can run your plugin in full-trust mode:

  1. Copy the plugin dlls to this directory. Create it if necessary: path\to\fogbugz\Website\bin\TrustedPluginBin

  2. Open the Windows registry editor on your Fogbugz server and go to /HKEY_HKEY_LOCAL_MACHINE\SOFTWARE\Fog Creek Software\FogBugz\[YOUR FOGBUGZ INSTALL DIR]

  3. Create a new string value named fRun[YOUR_PLUGIN_ID]InFogBugzAppDomain (replace [YOUR_PLUGIN_ID] with your plugin's ID, e.g. fRunMyPlugin@mycompany.comInFogBugzAppDomain if my plugin's ID is MyPlugin@mycompany.com

  4. Set fRun[YOUR_PLUGIN_ID]InFogBugzAppDomain to "1" without quotes

  5. Install your plugin in FogBugz as you normally would.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.