Re: SMS Apps

2011-10-04 Thread Bryan Stevenson
Thanks again Paul! So if I read between the lines of your response.I was right in that I don't need the menu framework?? I'll dabble today/tomorrowmay be back to the well depending on the results ;-) Cheers On Tue, 2011-10-04 at 09:15 +0700, Paul Hastings wrote: On 10/4/2011 2:26

Re: SMS Apps

2011-10-04 Thread Paul Hastings
On 10/4/2011 11:23 PM, Bryan Stevenson wrote: So if I read between the lines of your response.I was right in that I don't need the menu framework?? was that what you were asking? sorry. no you don't. if that demo is an obstacle, just try starting over w/a new onIncomingMessage.

Re: SMS Apps

2011-10-04 Thread Bryan Stevenson
On Wed, 2011-10-05 at 00:07 +0700, Paul Hastings wrote: if that demo is an obstacle, just try starting over w/a new onIncomingMessage. My thoughts exactlydemo is full of stuff I don't need...start fresh ;-) Cheers -- Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: SMS Apps

2011-10-03 Thread Bryan Stevenson
Hi All, I'm having a bit of a disconnect and wondering if anyone can help?? The SMS Gateway sample app that comes in CF Admin is a menu based app where the user enters a key and hits Send...then the next level of the menu is shown and the user can once again enter the letter that corresponds

Re: SMS Apps

2011-10-03 Thread Paul Hastings
On 10/4/2011 2:26 AM, Bryan Stevenson wrote: What I'm hoping I can do is bypass all of that and simply start the session by texting Please enter your name and then when the user types to send Please enter your name to the test handset, use the global sendgateway() method. provide it the name

Re: SMS Apps

2011-09-29 Thread Bryan Stevenson
Thanks again Pauland yes it is time I RTFM ;-) (no offence takenI know I should) Diving into the code today...so it's time!! Cheers On Thu, 2011-09-29 at 08:36 +0700, Paul Hastings wrote: On 9/29/2011 1:28 AM, Bryan Stevenson wrote: So I suppose I could just re-point the existing

Re: SMS Apps

2011-09-28 Thread Bryan Stevenson
Hey All, I'm wondering if anyone knows how to go about using the SMS Gateway phone emulator in the CF example apps for your own testing purposes (the one that comes up when you fire up SMSClient.bat)? So I don't want to go get a carrier aggregator service and all that is required to make this

Re: SMS Apps

2011-09-28 Thread Paul Hastings
On 9/29/2011 12:47 AM, Bryan Stevenson wrote: I'm wondering if anyone knows how to go about using the SMS Gateway phone emulator in the CF example apps for your own testing purposes (the one that comes up when you fire up SMSClient.bat)? create CFC pointing at the test gateway. fire up the

Re: SMS Apps

2011-09-28 Thread Bryan Stevenson
Thanks for that Paul...so simple when someone types it out loud ;-) So I suppose I could just re-point the existing SMS Gateway (the runs the demo app) to point at my CFCs? Which leads me to ask about how to interact with a specific Gateway if more than one is entered into CF Admin? I assume

Re: SMS Apps

2011-09-28 Thread Paul Hastings
On 9/29/2011 1:28 AM, Bryan Stevenson wrote: So I suppose I could just re-point the existing SMS Gateway (the runs the demo app) to point at my CFCs? yes. Which leads me to ask about how to interact with a specific Gateway if more than one is entered into CF Admin? I assume by some sort of

SMS Apps

2011-09-21 Thread Bryan Stevenson
Hey All, I'm heading into my first SMS app and it is going to follow a simple question and response format... For example... Q: What is your first name? A: Bryan Q: Thanks, now what is your last name? A: Stevenson and so on What I don't know is how CF keeps all that together as a

Re: SMS Apps

2011-09-21 Thread Russ Michaels
everytime you send and receive a message you get a messageID, this will identify a thread and message number. give it try and it should all make sense once you see it in action :-) On Wed, Sep 21, 2011 at 4:56 PM, Bryan Stevenson br...@electricedgesystems.com wrote: Hey All, I'm heading

Re: SMS Apps

2011-09-21 Thread Bryan Stevenson
Thanks Russnice and simple explanationI like those! ;-) Cheers On Wed, 2011-09-21 at 17:28 +0100, Russ Michaels wrote: everytime you send and receive a message you get a messageID, this will identify a thread and message number. give it try and it should all make sense once you