<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Thu, 15 May 2008 22:05:28 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[IBM developerWorks: The future of PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/10148</guid>
      <link>http://www.phpdeveloper.org/news/10148</link>
      <description><![CDATA[<p>
In a <a href="http://www.ibm.com/developerworks/opensource/library/os-php-future/index.html?ca=drs-tp1908">new post</a> on the IBM developerWorks page, <i>Nathan Good</i> takes a look at some of the features of the up and coming versions of the PHP language including things like namespaces, changes in the XML handling and a few things taken out.
</p>
<blockquote>
PHP's next edition, V6, includes new features and syntax improvements that will make it easier to use from an object-oriented standpoint. Other important features, such as Unicode support in many of the core functions, mean that PHP V6 is positioned for better international support and robustness.
</blockquote>
<p>
New features <a href="http://www.ibm.com/developerworks/opensource/library/os-php-future/index.html?ca=drs-tp1908">he mentions</a> include namespace support, improvements to the native Unicode support as well as a few of the things that will be permanently retired like the php.ini settings for magic_quotes and register_globals.
</p>]]></description>
      <pubDate>Fri, 09 May 2008 07:55:54 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com.au: Powerful Web Services with PHP and SOAP]]></title>
      <guid>http://www.phpdeveloper.org/news/10075</guid>
      <link>http://www.phpdeveloper.org/news/10075</link>
      <description><![CDATA[<p>
In <a href="http://www.builderau.com.au/program/php/soa/Powerful-Web-Services-with-PHP-and-SOAP/0,339028448,339288552,00.htm?feed=rss">a new article</a> from PHPBuilder.com.au today, they talk about the "powerhouse of web services", SOAP, and how to get started working with it in PHP.
</p>
<blockquote>
You've tried your hand at building mashups, experimented with a few RESTful Web services, maybe even started your own. Sure, you've got data sharing working. But how do you make your Web applications really talk to each other? In this tutorial, I'll show you how to take your Web applications to the next level with SOAP.
</blockquote>
<p>
They opt to go with the <a href="http://sourceforge.net/projects/nusoap">NuSOAP method</a> to consume another service and create your own simple one. They include a few code examples for either side and a (very) brief look at doing some debugging with what NuSOAP has to offer. One thing to note - if you have PHP5's SOAP extension compiled in and working, NuSOAP will throw an error about redeclaring a class name. This is because of a conflict between the naming of the SOAP extension's methods and NuSOAP.
</p>]]></description>
      <pubDate>Wed, 30 Apr 2008 08:43:28 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Marco Tabini's Blog: 5 PHP 5 features you can't afford to ignore]]></title>
      <guid>http://www.phpdeveloper.org/news/10071</guid>
      <link>http://www.phpdeveloper.org/news/10071</link>
      <description><![CDATA[<p>
<i>Marco Tabini</i> has <a href="http://mtabini.blogspot.com/2008/04/5-php-5-features-you-cant-afford-to.html">posted his list</a> of what he considers five features of PHP5 that you "can't afford to ignore" when doing your development work:
</p>
<blockquote>
Despite the fact that you may not have a choice in the matter, upgrading comes with a number of bonus new features that can help you write better code and gain access to new functionality that required a fair amount of hacking in previous version. Here's a quick list of 5 personal favourites.
</blockquote>
<p>
The feature to make his list are SimpleXML, JSON/SOAP, PDO, the Standard PHP Library and SQLite. Each has their own bonus feature(s) included too for a little extra incentive to check them out.
</p>]]></description>
      <pubDate>Tue, 29 Apr 2008 17:06:45 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Eirik Hoem's Blog: Setting xsi:type for objects sent over SOAP (inheritance)]]></title>
      <guid>http://www.phpdeveloper.org/news/9822</guid>
      <link>http://www.phpdeveloper.org/news/9822</link>
      <description><![CDATA[<p>
<i>Eirik Hoem</i> has <a href="http://blog.eirikhoem.net/index.php/2008/03/17/setting-xsitype-for-objects-sent-over-soap-inheritance/">posted a tip</a> for all of the PHP SOAP developers out there - a method for setting the xsi:type correctly for objects sent in the message.
</p>
<blockquote>
I spent quite some time looking for info on how to specify the xsi:type for the objects, and I finally came across <a href="http://no.php.net/manual/en/function.soap-soapvar-construct.php">SoapVar</a>. I created a base class which the SOAP classes extended. A method called pack is responsible for setting xsi:type.
</blockquote>
<p>
In <a href="http://blog.eirikhoem.net/index.php/2008/03/17/setting-xsitype-for-objects-sent-over-soap-inheritance/">his example</a>, he creates a BaseClass to work from and builds a createCustomer class on top of it, defining a setCustomer function inside. When the new Person is created, a new Customer is too complete with the correctly formatted type on the object.
</p>]]></description>
      <pubDate>Wed, 19 Mar 2008 10:26:27 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Eirik Hoem's Blog: Array problems with SOAP and PHP - Updated]]></title>
      <guid>http://www.phpdeveloper.org/news/9790</guid>
      <link>http://www.phpdeveloper.org/news/9790</link>
      <description><![CDATA[<p>
<i>Eirik Hoem</i> has <a href="http://eirikhoem.wordpress.com/2008/03/13/array-problems-with-soap-and-php-updated/">posted an update</a> on a <a href="http://eirikhoem.wordpress.com/2007/05/23/array-problems-with-x-fire-soap-and-php">previous problem</a> he was having when working with SOAP in PHP and its handling of arrays.
</p>
<blockquote>
The scenario was that when an array with only one object was returned over SOAP the array was discarded and pointed straight to the single object.
</blockquote>
<p>
Come to find out, this behavior wasn't a bug, it was <a href="http://bugs.php.net/bug.php?id=36226">a feature</a> - the fix is to add another parameter to the initialization of the SoapClient to add the SOAP_SINGLE_ELEMENT_ARRAYS feature.
</p>]]></description>
      <pubDate>Thu, 13 Mar 2008 10:22:19 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: The value of Web services for PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/9773</guid>
      <link>http://www.phpdeveloper.org/news/9773</link>
      <description><![CDATA[<p>
<i>Korynn Bohn</i> has posted <a href="http://devzone.zend.com/article/3246-The-value-of-Web-services-for-PHP">a new tutorial/article</a> on the Zend Developer Zone website that talks about (and advocates for) web services.
</p>
<blockquote>
Web services are the coolest technology I know of that ends up turning everyone off. I don't know about you, but when I go to a lecture on Web services, invariably tons of acronyms come out [...] and then I start to nod off and dream about a land where free Krispy Kreme donuts grow on trees.
</blockquote>
<p>
He reframes the web services world away from the acronyms and strict standards to more towards using it as a method of communication between apps, letting them engage in some friendly conversation. He uses the rest of the tutorial <a href="http://devzone.zend.com/article/3246-The-value-of-Web-services-for-PHP">showing how</a> to create an RSS reader of sorts using dashes of PEAR, XML, C#, XSLT, Ajax and Flex.
</p>]]></description>
      <pubDate>Tue, 11 Mar 2008 08:07:14 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Andrew Johnstone's Blog: Soap, XmlRpc and Rest with the Zend Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/9698</guid>
      <link>http://www.phpdeveloper.org/news/9698</link>
      <description><![CDATA[<p>
<i>Andrew Johnstone</i> has a <a href="http://www.ajohnstone.com/archives/soap-xmlrpc-and-rest-with-the-zend-framework/">new post</a> today with a look at a project he'd worked on - an implementation of a web service with the Zend Framework functionality.
</p>
<blockquote>
I was recently working on a project to expose <a href="http://corporate.bullbearings.co.uk/">our trading</a> systems via <a href="http://framework.zend.com/manual/en/zend.xmlrpc.html">XmlRpc</a>, <a href="http://framework.zend.com/manual/en/zend.rest.html">Rest</a> and <a href="http://uk3.php.net/soap">SOAP</a>. It was quite an interesting project, which took two of us three weeks to develop (Amongst other things).
</blockquote>
<p>
He <a href="http://www.ajohnstone.com/archives/soap-xmlrpc-and-rest-with-the-zend-framework/">talks about</a> some of the issues they worked through (like the ZF's "not quite ready" in the web services department) and problems they found with how the web services functionality was implemented in the framework's components. They also came across two strange bugs - one with accepting raw input and the other with a wrong return type from a method call.
</p>]]></description>
      <pubDate>Mon, 25 Feb 2008 11:07:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP Web Services Blog: Payload the Way You Want with PHP5 built-in SOAP]]></title>
      <guid>http://www.phpdeveloper.org/news/9531</guid>
      <link>http://www.phpdeveloper.org/news/9531</link>
      <description><![CDATA[<p>
The PHP Web Services blog has a <a href="http://phpwebservices.blogspot.com/2008/01/payload-way-you-want-with-php5-built-in.html">helpful hint</a> on getting a custom SOAP request all ready to go:
</p>
<blockquote>
How do you get this [custom] XML to be output by the SoapClient?
</blockquote>
<p>
Using the SoapVar method and a few newly created objects, making a custom structure is simple. It's just a matter of encoding the object and setting it with the base() method in the <a href="http://www.php.net/soap">PHP SOAP extension</a>. Check out <a href="http://phpwebservices.blogspot.com/2008/01/payload-way-you-want-with-php5-built-in.html">the blog post</a> for an example of both the custom XML and the code to produce it.
</p>]]></description>
      <pubDate>Wed, 30 Jan 2008 15:00:31 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP Web Services Blog: What is Missing in PHP SOAP Extension?]]></title>
      <guid>http://www.phpdeveloper.org/news/9487</guid>
      <link>http://www.phpdeveloper.org/news/9487</link>
      <description><![CDATA[<p>
On the PHP Web Services blog today, <i>Sami</i> <a href="http://phpwebservices.blogspot.com/2008/01/what-is-missing-in-php-soap-extension.html">asks</a> "what's missing from PHP's SOAP extension" that needs to be added or corrected.
</p>
<blockquote>
PHP SOAP extension is good to get started, to play around with. However, it falls much short in meeting the enterprise demands in the SOA era.
</blockquote>
<p>
He <a href="http://phpwebservices.blogspot.com/2008/01/what-is-missing-in-php-soap-extension.html">talks about</a> things missing (like binary file features and lots of security features). He also notes something that most PHP developers love about the extension - the WSDL parsing that makes it so easy to simply call a remote service without having to go through the pain of hacking through it yourself.
</p>]]></description>
      <pubDate>Thu, 24 Jan 2008 11:22:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Training Class for SOAP/WS-Security in the Enterprise]]></title>
      <guid>http://www.phpdeveloper.org/news/9381</guid>
      <link>http://www.phpdeveloper.org/news/9381</link>
      <description><![CDATA[<p>
As the PHP Web Services blog <a href="http://phpwebservices.blogspot.com/2008/01/php-web-services-training.html">points out</a> today, there's some <a href="http://wso2.com/training/course-catalog/ophp001/">training offered</a> for developers looking to get into working with web services (using SOAP and WS-Security specifically).
</p>
<p>Here's the description of the course</p>
<blockquote>
This training helps you create secure Web services and clients using SOAP, and WS-Security, which are inter-operable with Java and .NET systems. It also teaches you how to work with WSDL and binary attachments when using Web services in PHP.
</blockquote>
<p>
The class lasts for three hours and requires that you have some level of experience with web services (enough to know XML and the concepts behind passing it as messages back and forth). The cost for the event is $199 USD and the next session for it is coming up on January 16th starting at 9am (PST). You can get additional details on it from <a href="http://wso2.com/training/course-catalog/ophp001/">the detail page</a> on the wso2.com website.
</p>]]></description>
      <pubDate>Wed, 09 Jan 2008 08:47:00 -0600</pubDate>
    </item>
  </channel>
</rss>
