I noticed that there are a lot of questions about consuming a SOAP service from a PHP Server with a .Net client created by Visual Studio, so I decided to put some light on the subject. It looks like Visual Studio has moved some parts of the menu, and MS deprecated the SOAP endpoints in favor to Windows Communication Foundation.… Read more →
As the title said, I had to create a SOAP Server on a Kohana3 (KO3) Framework recently, and I decided to share my experience. Up until now I was always using NuSoap or just generating the wsdl file by hand, to avoid any problems, but this time I decided to experiment with Zend AutoDiscovery class. This class came a long… Read more →
In a recent project I have to show and use the next user_id as username ( I know it is a bad decision, but this is how the client wants it). I would usually use $wpdb->insert_id but that works only if you already inserted a row before. So I had to use MySQL SHOW TABLE STATUS : // Get the… Read more →
After wasting hours in the new Kohana 3 (KO3) documentation, I decided to spend the time to create a “plug&play” version of KO3, which I can use as a start up version of my KO3 based projects. I’ve set up the auth module, the ORM and one controller, along with the login views and templates. Also I am pulling results… Read more →