Cannot send multiple SMS on two client simulators

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Cannot send multiple SMS on two client simulators

    Hi there, i am trying to run the example on the help file on how to send
    multiple sms (using 'submitMulti'). It is supposed to echo back the message
    recieved from the originator back to itself and a specified client simulators,
    it is not doing it. I have already configured my own CFC in the Event Gateway
    instance (which is the 'SMS Menu App - 5551212'). Attached is my code. Please
    Help.

    <cfcomponent displayname="multisend" hint="Sample multisend.cfc">
    <cffunction name = "onIncomingMessage" output="no">
    <cfargument name = "CFEvent" type="struct" required="yes">
    <cfscript>
    data = CFEvent.DATA;
    message = data.message;
    msg = structNew();
    msg.command = "submitMulti";
    msg.destAddress = ArrayNew(1);
    msg.destAddress[1] = Arguments.CFEvent.originatorid;
    msg.destAddress[2] = "555-1235";
    msg.shortMessage = message;
    ret = SendGatewayMessage("SMS Menu App - 5551212", msg);
    </cfscript>
    <cfreturn ret >
    </cffunction>
    </cfcomponent>

    silverknife Guest

  2. Similar Questions and Discussions

    1. Difficulties to send multiple object in multiple objectwith SOAP (WebService)
      Hi, I have a problem similar to this one: http://bugs.adobe.com/jira/browse/SDK-12891 I manage to send complex object from flex to web services...
    2. How to send files to client
      Hi, Does anyone know how to send a file to the client from Flex. My scenario is this: 1) Pass some parameters to java layer 2) Java layer...
    3. How to actively 'send' web pages to client browser
      Does anyone know if a way to deliver web pages to an end-client using a push method that can be controlled from your PC (by clicking on a page menu...
    4. HOWTO: Send Secure Data To Client Using SSL
      I've sent private data back to the IIS by implementing the web page reference to HTTPS, but how can secure data be sent to the client computer over...
    5. send page to client when session expires
      A client-side timer fires and does the page redirect - you can't do it from global.asa since there is no page request context to redirect.with when...
  3. #2

    Default Re: Cannot send multiple SMS on two client simulators

    Correction on the code:
    ************************************************** ******************************
    ****** <cfcomponent displayname='multisend' hint='Sample multisend.cfc'>
    <cffunction name = 'onIncomingMessage' output='no'> <cfargument name =
    'CFEvent' type='struct' required='yes'> <cfscript> data = CFEvent.DATA;
    message = data.message; msg = structNew();
    msg.command = 'submitMulti'; msg.destAddress = ArrayNew(1);
    msg.destAddress[1] = Arguments.CFEvent.originatorid; msg.destAddress[2] =
    '555-1235'; msg.shortMessage = message; ret = SendGatewayMessage('SMS Menu
    App - 5551212', msg); </cfscript> </cffunction> </cfcomponent>

    silverknife Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139