[asterisk-users] asterisk + web services

2008-07-15 Thread Paul Belanger
List, We're working on an upcoming job that may require us to access a web service (WS). I'm curious to hear peoples thoughts on the best way to do this with asterisk. We'll be submitting a single number to the WS and it will return a success or error. One solution would be to write a simple pe

Re: [asterisk-users] asterisk + web services

2008-07-15 Thread Fred Posner
On Jul 15, 2008, at 10:08 PM, Paul Belanger wrote: List, We're working on an upcoming job that may require us to access a web service (WS). I'm curious to hear peoples thoughts on the best way to do this with asterisk. We'll be submitting a single number to the WS and it will return a success

Re: [asterisk-users] asterisk + web services

2008-07-15 Thread EdPimentl
Try Adhersion and or Telegraph -E http://mobiquity.ws ___ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- AstriCon 2008 - September 22 - 25 Phoenix, Arizona Register Now: http://www.astricon.net asterisk-users mailing list To UNS

Re: [asterisk-users] asterisk + web services

2008-07-15 Thread Steve Edwards
On Tue, 15 Jul 2008, Paul Belanger wrote: > We're working on an upcoming job that may require us to access a web > service (WS). I'm curious to hear peoples thoughts on the best way to > do this with asterisk. We'll be submitting a single number to the WS > and it will return a success or error.

Re: [asterisk-users] asterisk + web services

2008-07-15 Thread Fred Posner
On Jul 15, 2008, at 10:20 PM, Steve Edwards wrote: curl() doesn't fire up another process. The response is returned as just one big chunk. In my case, it was the HTML to an entire web page :) If you need to do a bunch of parsing, maybe an AGI calling libcurl -- saving a bunch of ugly dialpl

Re: [asterisk-users] asterisk + web services

2008-07-16 Thread Grey Man
On Wed, Jul 16, 2008 at 3:08 AM, Paul Belanger <[EMAIL PROTECTED]> wrote: > List, > > We're working on an upcoming job that may require us to access a web > service (WS). I'm curious to hear peoples thoughts on the best way to > do this with asterisk. We'll be submitting a single number to the WS

Re: [asterisk-users] asterisk + web services

2008-07-16 Thread Alex Balashov
Fred Posner wrote: > On Jul 15, 2008, at 10:20 PM, Steve Edwards wrote: > >> >> curl() doesn't fire up another process. The response is returned as just >> one big chunk. In my case, it was the HTML to an entire web page :) >> >> If you need to do a bunch of parsing, maybe an AGI calling libcurl -