Category: .Net
-
You may have ran into an issue during deployments when trying to publish in the past where you have seen this message: “An item name cannot contain any of the following characters: \/:?”<>\-|[] (controlled by the setting InvalidItemNameChars)” In order to help move forward on this you need to disable…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
So I had a .Net application that needed to leverage the Network Service application identity instead of the OOB ApplicationPoolIdentity that comes with a default shipped EBS windows server with IIS. The solution? An ebextenion of course! 0) We’re going to have a step 0 assuming you already have a…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
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+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
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): Then, include the reference: Finally, write your method: Great! Now you can call it and send an email You can always…