Creating a Custom Workflow Activity in MS CRM 2011 (Updated)

UPDATE 10-23-2013: Added a link on how to attach an SSRS report to an e-mail! UPDATE 10-03-2013: Added a link on how to send an e-mail to a team! Want to create a custom workflow activity in MS CRM 2011? Just follow Microsoft’s guide here. As an FYI, here are …

Enabling CORS on Apache Tomcat 6

Copy cors-filter-<version>.jar file and java-property-utils-<version>.jar to $CATALINA_HOME/lib. Then, edit the $CATALINA_HOME/conf/web.xml file to include: <filter> <filter-name>CORS</filter-name> <filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class> </filter> <filter-mapping> <filter-name>CORS</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> It’s important to note that simply using the above configuration options in web.xml will enable public CORS access to the server. You may want to limit the cors.allowOrigin …