Re: HttpSocket with proxy server

2009-12-15 Thread fr3nch13
://api.yahoo.com/' )); This is how powerful CakePHP is :D On Dec 15, 8:48 am, fr3nch13 fr3nc...@gmail.com wrote: Has anyone tried using a proxy server with HttpSocket? I have been looking all over via the normal channels (google, api, bakery, book, etc.) to no avail. If so, could you please

Re: HttpSocket with proxy server

2009-12-15 Thread fr3nch13
(); $request = $HttpSocket-request(array(    'host'='proxy server address:proxy server port',    'uri'='http://api.yahoo.com/' )); This is how powerful CakePHP is :D On Dec 15, 8:48 am, fr3nch13 fr3nc...@gmail.com wrote: Has anyone tried using a proxy server with HttpSocket? I

Re: HttpSocket with proxy server

2009-12-15 Thread fr3nch13
= new HttpSocket(); $request = $HttpSocket-request(array(    'host'='proxy server address:proxy server port',    'uri'='http://api.yahoo.com/' )); This is how powerful CakePHP is :D On Dec 15, 8:48 am, fr3nch13 fr3nc...@gmail.com wrote: Has anyone tried using a proxy server

Re: HttpSocket with proxy server

2009-12-15 Thread fr3nch13
powerful CakePHP is :D On Dec 15, 8:48 am, fr3nch13 fr3nc...@gmail.com wrote: Has anyone tried using a proxy server with HttpSocket? I have been looking all over via the normal channels (google, api, bakery, book, etc.) to no avail. If so, could you please point me

Re: HttpSocket with proxy server

2009-12-15 Thread fr3nch13
I just tried it with cake 1.2.5 stable, and it's still not working like how gainpaulo was describing above. Is this indeed the way it's supposed to be working? Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this

HttpSocket with proxy server

2009-12-14 Thread fr3nch13
Has anyone tried using a proxy server with HttpSocket? I have been looking all over via the normal channels (google, api, bakery, book, etc.) to no avail. If so, could you please point me in the right direction? Check out the new CakePHP Questions site http://cakeqs.org and help others

Re: HttpSocket with proxy server

2009-12-14 Thread gianpaulo
Try this: $HttpSocket = new HttpSocket(); $request = $HttpSocket-request(array( 'host'='proxy server address:proxy server port', 'uri'='http://api.yahoo.com/' )); This is how powerful CakePHP is :D On Dec 15, 8:48 am, fr3nch13 fr3nc...@gmail.com wrote: Has anyone tried using a proxy

HttpSocket with proxy

2008-09-23 Thread Fahad
hi, i m working on a API service with cake. the project is heavily depended upon API calls. the server is located in Asia, and most of the time the HTTP request fails. is there any feature in HttpSocket class that will let me do the API calls via a proxy? thanks