I’d been having a problem where I was yo-yoing backwards and forwards between CocoaPods and Xcode, each presenting a warning which once remedied would cause the other to raise a warning. The issue is around embedding Swift Libraries when working on a Swift based project. There are two settings, one deprecated EMBEDDED_CONTENT_CONTAINS_SWIFT and one more […]
Read moreJSP / JSTL: Always declare your beans where they are read / written
JSP errors within WebSphere Commerce applications at the best of times are hard to debug, at the worst of times it is a gruelling experience searching through JSPs to find flow control structures that best match errors spat out in your logs to try and localise the problem. To prevent these issues we have to use a bit of additional thought… One tip is to always declare your beans locally.
Read moreUsing Highland streams for event handling
Streams enable you to effectively develop scalable and responsive systems. Rather than using typical event handler / listener functions we can instead model events as a stream, this allows us to apply transformations and work with events (and multiple event occurrences) at a higher level.
Read moreReplacing WebSphere JSP / JSTL Data Layer and Display Logic with Beans
One of the projects I am currently working on is an eCommerce site based on WebSphere 7.0. Although I can’t go into too much detail about the project, we have been using beans (among other things) to tame the data layer, which can easily become unkept if not turn into a complete mess of code spaghetti! JSP […]
Read moreNull values in ColdFusion
ColdFusion doesn’t really have a concept of null values, ColdFusion has JavaCast( “null”, “” ) for when you want to pass a null into a Java object but what happens when your Java object returns a null?
Read moreCustom Java Libraries in ColdFusion/Railo
I have been experimenting with Java libraries in CF8 and Railo to see how easy it is to load up a custom Java class in each…
Read more