Controllers are an important part of Laravel MVC (Model, View, CONTROLLER). They are useful for organizing request-handling logic and help to keep the entire code structured and maintainable. This post is a brief primer on Laravel controllers.
Programming
Service Oriented Architecture – A High Level Overview
If you love platform-neutral approaches to programming like we do, you will love Service Oriented Architecture (SOA). This article is a high level overview of SOA. We discuss SOA principles, pros and cons, and components needed for SOA infrastructure.
Javadoc {@link} versus @see
Javadoc is used to generate API documentation in HTML format using Java code. Developers are sometimes confused about which type of link annotation ({@link} or @see) to use within their API documentation. This article clarifies this.
File Manipulation In Python: Open, Read, Create, Write, Append
A key feature of OOP languages like Python, Java, and C# is the ability to manipulate files. This article focuses on Python and provides an introductory look at how file handling (open, read, create, write, append) is done in this popular language.
How To Modify InfoPath XSN Files To Fix Errors
When working with InfoPath, there are many scenarios where you may need to modify InfoPath XSN files. These include: fixing errors, changing web service urls, tweaking file names or SQL connection strings, removing/editing some value(s), etc. Thankfully, since InfoPath XSN files are just containers (cabinet or .cab files) of many other files, we can use built-in windows tools to break them open, make our changes, and then repackage them. This article explains the full process with an example.
Sending Emails From SharePoint Servers
My previous four-part series described how to set up a SharePoint development farm. Now, what if we want to take things a step further and configure our SharePoint farm to allow sending of outgoing emails? This article discusses everything you need to do to make this possible – from installing and configuring the SMTP service, to defining outgoing email settings in SharePoint Central Administration. I provide code examples as well.