Is this the part of ZF to use to consume web services? http://framework.zend.com/manual/en/zend.rest.client.html
I'm trying to work with this: http://www.webservicex.net/stockquote.asmx/GetQuote?symbol=EBAY Here's my non-working code: require_once 'Zend/Rest/Client.php'; $client = new Zend_Rest_Client( 'http://www.webservicex.net/stockquote.asmx' ); $client->symbol = 'EBAY'; $this->view->result = $client->GetQuote(); Thanks, -- Greg Donald http://destiney.com/
