 | News Feed |
Sections
Community Events
|
| feed this: |  |
IBM developerWorks: The future of PHP
posted Friday May 09, 2008 @ 07:55:54
voice your opinion now!
BY CHRIS CORNUTT
In a new post on the IBM developerWorks page, Nathan Good 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.
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.
New features he mentions 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.
tagged with: future namespace unicode language xml soap registerglobals magicquotes
PHPBuilder.com.au: Powerful Web Services with PHP and SOAP
posted Wednesday April 30, 2008 @ 08:43:28
voice your opinion now!
BY CHRIS CORNUTT
In a new article from PHPBuilder.com.au today, they talk about the "powerhouse of web services", SOAP, and how to get started working with it in PHP.
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.
They opt to go with the NuSOAP method 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.
tagged with: soap tutorial nusoap client server pear package
Marco Tabini's Blog: 5 PHP 5 features you can't afford to ignore
posted Tuesday April 29, 2008 @ 17:06:45
voice your opinion now!
BY CHRIS CORNUTT
Marco Tabini has posted his list of what he considers five features of PHP5 that you "can't afford to ignore" when doing your development work:
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.
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.
tagged with: php5 feature list ignore simplexml json soap pdo spl sqlite
Zend Developer Zone: The value of Web services for PHP
posted Tuesday March 11, 2008 @ 08:07:14
voice your opinion now!
BY CHRIS CORNUTT
Korynn Bohn has posted a new tutorial/article on the Zend Developer Zone website that talks about (and advocates for) web services.
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.
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 showing how to create an RSS reader of sorts using dashes of PEAR, XML, C#, XSLT, Ajax and Flex.
tagged with: webservice flex rss xml rest soap client server tutorial
Andrew Johnstone's Blog: Soap, XmlRpc and Rest with the Zend Framework
posted Monday February 25, 2008 @ 11:07:00
voice your opinion now!
BY CHRIS CORNUTT
Andrew Johnstone has a new post today with a look at a project he'd worked on - an implementation of a web service with the Zend Framework functionality.
I was recently working on a project to expose our trading systems via XmlRpc, Rest and SOAP. It was quite an interesting project, which took two of us three weeks to develop (Amongst other things).
He talks about 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.
tagged with: zendframework soap xmlrpc rest webservice project
PHP Web Services Blog: What is Missing in PHP SOAP Extension?
posted Thursday January 24, 2008 @ 11:22:00
voice your opinion now!
BY CHRIS CORNUTT
On the PHP Web Services blog today, Sami asks "what's missing from PHP's SOAP extension" that needs to be added or corrected.
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.
He talks about 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.
tagged with: soap extension native wsdl security binary file transfer
|