that seems to be a SOAP service, not REST:
http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=19
- Jeff
On 25-Apr-08, at 3:25 PM, Greg Donald wrote:
On Wed, Apr 23, 2008 at 3:04 PM, Greg Donald <[EMAIL PROTECTED]>
wrote:
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();
Anyone have any insight into this issue? At least let me know if I'm
headed in the right direction?
Thanks,
--
Greg Donald
http://destiney.com/