Re: SMS messages

2011-02-11 Thread Chuka Anene

 www.q-sms.org
 They have a very robust sms gateway.

Thanks, I took a look at their pricing page and LOLed when I saw this...

Q-sms offers the cheapest price in Nigeria and one of the most competitive
globally...

The Nigeria mention makes them immediately suspect in my mind, but I suppose
there must be legitimate businesses there too, right?  Hopefully they won't
switch out my messages for offers to transfer millions into the recipients
account... ha!

Have you used them to send to mobile numbers on US carriers?  A few places
I've spoken to have said that we would need to apply for our own short code
to send to US recipients, others have said we can send through theirs but
only to certain carriers.  It all seems to be more confusing than it should
be.


-Justin


Well, believe it or not, i have used them to send messages to the U.S. Their 
delivery was instant. I thought the same way you do, but when i decided to use 
them, i got results and its cool to pay for results, these days. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


SQL / mySQL Datasource

2009-10-31 Thread Chuka Anene

Well i need step by step procedure of creating datasource of any of these two 
databases on my localhost.

Its cracy how i still dont know how... 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327860
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


XML POST with Coldfusion

2009-10-26 Thread Chuka Anene

Okay, this should be a nut-cracker on this Blog.

I need someone to develop a coldfusion script that will communicate to a 
server/service using XML POST.

Parameters are: 

SMS
   authentification
  username/username
  password/password
   /authentification
   message
  sender/sender
  text/text
   /message
   recipients
  gsm messageId=“clientmsgID1“/gsm
  gsm messageId=“clientmsgID2“/gsm
  gsm messageId=“clientmsgID3“/gsm
  gsm messageId=“clientmsgID4“/gsm
   /recipients
/SMS


service url is:: http://www.myserver.com/AddOn/myService/XML/XMLInput.aspx

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327676
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: XML POST with Coldfusion

2009-10-26 Thread Chuka Anene

 Okay, this should be a nut-cracker on this Blog.
 
 I need someone to develop a coldfusion script that will communicate to 
 a server/service using XML POST.
 
 Parameters are: 
 
 SMS
   
 authentification
  
 username/username
  
 password/password
   
 /authentification
   
 message
  
 sender/sender
  
 text/text
   
 /message
   
 recipients
  
 gsm messageId=“clientmsgID1“/gsm
  
 gsm messageId=“clientmsgID2“/gsm
  
 gsm messageId=“clientmsgID3“/gsm
  
 gsm messageId=“clientmsgID4“/gsm
   
 /recipients
 /SMS
 
 
 service url is:: http://www.myserver.com/AddOn/myService/XML/XMLInput.

No replies yet.

Okay let me step this up a little bit.

$20.00 (Taxable) for anyone on cracks this one.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327683
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Sending XML Post via cfhttp

2009-10-19 Thread Chuka Anene

cfset server=http://www.infobip.com/AddOn/SMSService/XML/XMLInput.aspx;

cfxml variable=XML
cfsavecontent variable=c
XML
EngineDocList
DocVersion1.0/DocVersion
EngineDoc
ContentTypeSMS/ContentType

SMS
authentification
usernameQuorium/username
passwordAnene/password
/authentification
message
senderQ-sms Inc./sender
textTesting XMl Post/text
flash1/flash
typelongSMS/type
/message
recipients
gsm messageId=clientmsgID12347032696113/gsm
/recipients
/SMS

/EngineDoc
/EngineDocList
/XML
/cfsavecontent
/cfxml

cfhttp method=post url=#server#
 cfhttpparam type=xml value=#c# name=anything
/cfhttp


This above code gives this error:

An error occured while Parsing an XML document.

Premature end of file.


Does anyone have any ideas? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327311
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Splitting a list...

2009-10-12 Thread Chuka Anene

How do you split this list into equal lengths of 100?

1. make a function to split the list into the first 100 elements and the 
rest.
2. loop on the rest until its length is = 100


could you help me setup a loop on that? mine is not working 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327100
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Splitting a list...

2009-10-10 Thread Chuka Anene

Thanks. I'm not sure if your method is quicker, but it allows me to break my
list wherever I need to. 

 cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz

What would be the most efficient way to split the list into two lists,

Try this :
cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz
CFSET st = REFind (([^\,]*\,){6}, thelist, 1, true) CFSET list1 =
mid(theList, 1, st.len[1]-1) CFSET list2 = mid(theList, st.len[1]+1,
) CFOUTPUT
list1 = #list1#BR
list2 = #list2#BR
/CFOUTPUT 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327083
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Splitting a list...

2009-10-10 Thread Chuka Anene

cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz

What would be the most efficient way to split the list into two lists,

Try this :
cfset thelist =aa,bb,cc,dd,ee,ff,uu,vv,ww,xx,yy,zz
CFSET st = REFind (([^\,]*\,){6}, thelist, 1, true)
CFSET list1 = mid(theList, 1, st.len[1]-1)
CFSET list2 = mid(theList, st.len[1]+1, )
CFOUTPUT
list1 = #list1#BR
list2 = #list2#BR
/CFOUTPUT




I've been looking for this for long now.
What happens when you have a list containing coma-delimited numbers, say 

1,2,3,4,X

Where X is a number below 5000.
How do you split this list into equal lengths of 100? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327084
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Splitting a list of unknown amount

2009-10-10 Thread Chuka Anene

I've been looking for this for long now.
What happens when you have a list containing coma-delimited numbers, say 

1,2,3,4,X

Where X is a number below 5000.
How do you split this list into equal lengths of 100? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327085
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4