Archive for the ‘Featured’ Category

Using symfony sfForms in a Zend Application

By marc • Jun 5th, 2010

Recently I have been experimenting with the Zend Framework to look into it’s potential to be used in my future applications. Having been a symfony junkie for the last couple of years I was reluctant to try and use it, but I see that it has come a long way since last using it. I’m […]



Wishing that PHP had something like JAXB

By marc • May 9th, 2010

Lately I have been doing alot of Java development especially in regards to web service development and consumption. One of the tools that I have relied on heavily is the JAXB project to consume and create XML feeds. This has been a godsend and made my life easy when parsing and creating XML. By just […]



PHP SoapClient and Polymorphic Service Objects

By marc • Apr 2nd, 2010

There may be a time when you need to deal with passing polymorphic objects back and forth between PHP’s SoapClient and a SOAP web service. Things are nice and easy (work as expected) when you are retrieving these objects from a service. But, when it comes time to pass these objects back…well…it’s not as simple […]



Get PHP SoapClient to speak with Java’s JAX-WS

By marc • Mar 29th, 2010

When delving into the magical world of trying to get a PHP SoapClient to consume a Java JAX-WS web service, there may be a few unexpected surprises that pop up. If you have been using SoapClient to communicate with other PHP SoapServer service, things are pretty straightforward. However, things get slightly more complicated when trying […]



Writing Custom PHP Extensions to Speed Up Applications

By marc • Jan 9th, 2010

Sometimes you may come across a situation where a core piece of your PHP is doing some sort of intensive algorithm or something else which is just taking way to long.
Recently I had this problem with an application which I was developing. Essentially I was redesigning an existing application that needed to be able to […]