Author: Jared Meredith
-
So I ran across an interesting mystery a while back that I thought I would share the fix for once I had time to document it. I have a client that uses an embeddable SharePoint page within CRM to allow document uploads right from the front entity screens without having…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
Anyone ever run into the following before? I ran into this regarding a request into the SharePoint Rest API. The length of the URL for this request exceeds the configured maxUrlLength value. This because the IIS default maximum length for an URL is 260 characters. If a URL request is…
+
+
+
+
+
+
+ .Net, CRM, IIS, MVC, Programming, Security, SharePoint, Sitecore, Troubleshooting, Visual Studio, Web, Web Service, Windows+
+
+
+
+
+
+
+
+
+
+
+
-
So as I work to help standardize how the teams I work with estimate effort on their projects I have worked through leveraging JIRA to better help clarify what the priority fieldĀ couldĀ mean. We work in a space where when items go beyond a certain amount of hours that we want…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
First, consult with AWS and get your credentials: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-credentials.html and http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-using-smtp-net.html Secondly, let’s make a more easily updatable emailSettings section (encrypt it later, see here if you need help): [sourcecode] <appSettings> <add key="MailFrom" value="donotreply@youremaildomain.com"/> <add key="MailTo" value="whoareyousendingto@theiremaildomain.com"/> <add key="MailHost" value=" email-smtp.youramazonseshost.com"/> <add key="MailPort" value="587"/> <add key="MailServerUserName" value="awsSESusername"/> <add key="MailServerPassword" value="awsSESpassword"/>…