Guest User

Untitled

a guest
Jun 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <configuration>
  2. <configSections>
  3. <section name="zencoder" type="Zencoder.ZencoderSettings, Zencoder"/>
  4. </configSections>
  5. <system.web>
  6. <httpHandlers>
  7. <add path="zencoder.ashx" verb="POST" type="Zencoder.NotificationHandler, Zencoder"/>
  8. </httpHandlers>
  9. </system.web>
  10. <system.webServer>
  11. <handlers>
  12. <add name="zencoder.ashx" path="zencoder.ashx" verb="POST" type="Zencoder.NotificationHandler, Zencoder" preCondition="managedHandler"/>
  13. </handlers>
  14. </system.webServer>
  15. <zencoder>
  16. <!-- You could also skip this part of the configuration and add your receivers to
  17. Zencoder.NotificationHandler.Receivers programatically. -->
  18. <notifications>
  19. <!-- Each notification receiver should implement Zencoder.INotificationReceiver -->
  20. <add name="MyReceiver" value="MyAssembly.MyReceiver, MyAssembly"/>
  21. <add name="MyOtherReceiver" value="MyAssembly.MyOtherReceiver, MyAssembly"/>
  22. </notifications>
  23. </zencoder>
  24. </configuration>
Add Comment
Please, Sign In to add comment