Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
silverknife #1
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
-
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... -
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... -
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... -
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... -
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... -
silverknife #2
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



Reply With Quote

