Re: Work Around for SSLv3 Vulnerability?

2014-11-18 Thread Michael Grant
I finally have an update here. After much back and forth and having to REALLY make a case for why I was able to convince Newtek to update their CF servers to run Java 1.7 instead of 1.6. This had an immediate positive result and the SSL handshake was able to proceed properly with TLS. Thanks to

Re: Work Around for SSLv3 Vulnerability?

2014-11-18 Thread Russ Michaels
did you check if SOLR still works after the upgrade ? On Tue, Nov 18, 2014 at 3:00 PM, Michael Grant mgr...@modus.bz wrote: I finally have an update here. After much back and forth and having to REALLY make a case for why I was able to convince Newtek to update their CF servers to run Java

Re: Work Around for SSLv3 Vulnerability?

2014-11-18 Thread Dave Watts
did you check if SOLR still works after the upgrade ? Doesn't Solr use a separate JVM? Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Service-Disabled Veteran-Owned Small Business (SDVOSB) on GSA Schedule, and

Re:_Work_Around_for_SSLv3_Vulnerability?

2014-11-18 Thread russ
no it uses the one that comes with cf. I have tried switching solr to 1.7 as well, same issue Sent from Windows Mail From: Dave Watts Sent: ‎Tuesday‎, ‎18‎ ‎November‎ ‎2014 ‎22‎:‎02 To: cf-talk did you check if SOLR still works after the upgrade ? Doesn't

incoming tabular data stream error?

2014-11-18 Thread Les Mizzell
Running a page that reads a text file into an array - then writes the array to the database. I get the following error:* Detail:* [Macromedia][SQLServer JDBC Driver][SQLServer]The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Too many parameters

Sending SMS

2014-11-18 Thread Rick Sanders
Hey guys, Does anyone know a service I can use for sending sms messages from cold fusion? I want to make an app that notifies someone by sms when their product is ready. Kind Regards, Rick Sanders Canada: USA: 171 Main St

Re: Sending SMS

2014-11-18 Thread Bryan Stevenson
Hey Rick, I'd say the answer depends on your situation. A big determining factor is what carrier are the folks on that you would be sending to? I ask because if only one carrier you can go low cost and failry easy. If multiple carriers, you may want to consider using an SMS aggregator as

Re: Sending SMS

2014-11-18 Thread Phillip Vector
I worked on a system that had to do this. All I did was find out how each system handled Email to SMS and used that. On Tue, Nov 18, 2014 at 3:09 PM, Rick Sanders r...@webenergy.ca wrote: Hey guys, Does anyone know a service I can use for sending sms messages from cold fusion? I want to

Re: incoming tabular data stream error?

2014-11-18 Thread Dave Watts
Running a page that reads a text file into an array - then writes the array to the database. I get the following error:* Detail:* [Macromedia][SQLServer JDBC Driver][SQLServer]The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Too many

Re: Sending SMS

2014-11-18 Thread John M Bliss
http://smsgateway.riaforge.org On Tue, Nov 18, 2014 at 6:09 PM, Rick Sanders r...@webenergy.ca wrote: Hey guys, Does anyone know a service I can use for sending sms messages from cold fusion? I want to make an app that notifies someone by sms when their product is ready. Kind Regards,

Re: incoming tabular data stream error?

2014-11-18 Thread Les Mizzell
You can either remove your CFQUERYPARAMs (which might be ok if your data isn't coming from an untrusted source), or you can limit your batch size so you don't exceed 2100 parameters per CFQUERY tag. Might try this first. It's from inside a client admin system, and there's a specifically

Re: Sending SMS

2014-11-18 Thread Bryan Stevenson
you need more than the gateway John ;-) *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS^(TM) phone: 250.480.0642 cell: 250.920.8830 e-mail: br...@electricedgesystems.com mailto:br...@electricedgesystems.com web: www.electricedgesystems.com

RE: Sending SMS

2014-11-18 Thread Rick Sanders
Thanks Bryan, So it's like online payment. You need a gateway then a payment processor. -Original Message- From: Bryan Stevenson [mailto:br...@electricedgesystems.com] Sent: Tuesday, November 18, 2014 7:32 PM To: cf-talk Subject: Re: Sending SMS Hey Rick, I'd say the answer depends

Re: Sending SMS

2014-11-18 Thread Russ Michaels
You can do this with most any sms service, they all provide an API. I use clickatel, very simple api, can be called with a simple http post or get. On Tue, Nov 18, 2014 at 23:50 PM, Rick Sanders r...@webenergy.ca wrote: Thanks Bryan, So it's like online payment. You need a gateway then a

Re: Sending SMS

2014-11-18 Thread Bryan Stevenson
In the grand scheme of things - yes it can be - if you need an aggregator and can use the gateway ...and the CF gateway only works with certain APIs - depending on the SMS aggregator - just getting an account to use that API with them can take some doing as it has the capability to mass SPAM

Re: Work Around for SSLv3 Vulnerability?

2014-11-18 Thread Michael Grant
Hi Russ, I don't use SOLR so this isn't an issue for my use case. On Tue, Nov 18, 2014 at 11:57 AM, Russ Michaels r...@michaels.me.uk wrote: did you check if SOLR still works after the upgrade ? On Tue, Nov 18, 2014 at 3:00 PM, Michael Grant mgr...@modus.bz wrote: I finally have an

Re: Sending SMS

2014-11-18 Thread richpaul7 .
I added SMS support using email. for example, for Verizon, it's the phonenum...@vtext.com I googled it and found eahc carriers domain for email-to-text and then added a dropdown list for the carriers when my users enter their phone number to receive texts. I don't use any service at all, it's a

RE: Sending SMS

2014-11-18 Thread Rick Sanders
That's great but what about sending to different carriers? I'm guessing you have to know what carrier the customer you're sending a sms is on right? Kind Regards, Rick Sanders Canada: USA: 171 Main St 1205 N. Second Ave

Re: incoming tabular data stream error?

2014-11-18 Thread Dave Watts
or you could make sure your loop doesn't exceed 350 records (2100 divided by 6) by having an outer loop and an inner loop. Could this be a job for cfthread? Split a large list up into 4 or 5 threads and just let them run (as soon as I get my head around the math... heh)? Seems that would

Re: Sending SMS

2014-11-18 Thread Mike K
That's great but what about sending to different carriers? I'm guessing you have to know what carrier the customer you're sending a sms is on right? No. Its your carrier not theirs. Just like you dont need to know what carrier someone is using to call them. Best is to use an aggregator

Re: incoming tabular data stream error?

2014-11-18 Thread Les Mizzell
You can either remove your CFQUERYPARAMs (which might be ok if your data isn't coming from an untrusted source) This works. Tried it with a list of roughly 1000 records. Will try my 15,000 record sheet later this evening and see what happens. Added 4 threads to split all list up as well.