rickmason
11/15/2022, 7:38 AMgsr
11/15/2022, 3:58 PMAdam Cameron
sknowlton
11/15/2022, 5:29 PMzackster
11/15/2022, 8:07 PMsalted
11/16/2022, 5:45 PMsalted
11/16/2022, 5:45 PMzackster
11/17/2022, 10:45 AMAngad Yadav
11/17/2022, 2:42 PMAdam Cameron
hugh
11/18/2022, 6:54 PMhugh
11/18/2022, 6:55 PMhugh
11/18/2022, 6:57 PMDaniel Mejia
11/19/2022, 12:59 AMDenis
11/19/2022, 7:06 PMchris-schmitz
11/21/2022, 11:16 AMsuccess: 1
. But the message never arrives at the app (at least the event handler never fires). I also tried Mozilla messaging but it seems it needs an encryption algorithm that isn't available in CF Standard. So I'm kinda stuck and looking for advice on what I could try.zackster
11/21/2022, 1:48 PMJohn F
11/21/2022, 6:50 PMinclude application.urls.404
instead of relocating to another page ala location(url=application.urls.404, addToken=false)
Why is the include the "right" way and the relocate the "wrong" way?Michael Gillespie
11/21/2022, 9:32 PM<cffunction name="hotsearch" access="remote" returntype="array">
<cfargument name="crit" type="string" required="yes">
<cfset var rs=structnew()>
<cfset var ra = arraynew(1)>
<cfset ra[1]="NOT FOUND">
<cfquery name="getinfo" datasource="#variables.dsn#" maxrows="50">
select cust_id,fname,lname,mycompany,company,webmail
from vwSearchCustomer
where
(webmail like <cfqueryparam cfsqltype="cf_sql_varchar" value="%#arguments.crit#%">
or lname like <cfqueryparam cfsqltype="cf_sql_varchar" value="%#arguments.crit#%">
or mycompany like <cfqueryparam cfsqltype="cf_sql_varchar" value="%#arguments.crit#%">
or company like <cfqueryparam cfsqltype="cf_sql_varchar" value="%#arguments.crit#%">
)
group by 1
order by lname,fname,mycompany
</cfquery>
<cfif getinfo.recordcount gt 0><cfset ra[1]="OK"></cfif>
<cfoutput query="getInfo">
<cfset rs=structnew()>
<cfset rs.PERSON=getInfo.cust_id>
<cfset rs.PERSONNAME=getinfo.fname&" "&getinfo.lname>
<cfif len(trim(getinfo.mycompany)) eq 0>
<cfset rs.COMPANY=getinfo.company>
<cfelse>
<cfset rs.COMPANY=getinfo.mycompany>
</cfif>
<cfset rs.E=lcase(getinfo.webmail)>
<cfset arrayappend(ra,rs)>
</cfoutput>
<cfreturn ra>
</cffunction>
satauros
11/22/2022, 12:01 PMblusol
11/22/2022, 5:54 PMCaused by: javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate)
at java.base/sun.security.ssl.HandshakeContext.<init>(Unknown Source)
at java.base/sun.security.ssl.ClientHandshakeContext.<init>(Unknown Source)
at java.base/sun.security.ssl.TransportContext.kickstart(Unknown Source)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)
at com.mysql.jdbc.ExportControlled.transformSocketToSSLSocket(ExportControlled.java:149)
... 212 more
I have googled it and tried passing ssl=false
in the connection string, as well as enabledTLSProtocols=TLSv1.2
with ssl=true
but I'm still unable to get it to connect.
my java version when running box java list
shows
Java 11.0.15 (Eclipse Adoptium)
/usr/local/bin/jre/
This is the Java installation in use by the CLI, it cannot be removed.
openjdk11_jre_x64_mac_hotspot_jdk-11.0.17+8
AdoptOpenJDK
<https://adoptium.net/>
I have tried to connect to my remote mysql server which is version 5.7 and a localhost version which is 8.0.31 and neither will connect. yes, i do have valid credentials, firewall, etc. I'm able to connect to each server via navicat.
any help is greatly appreciated.Michael Gillespie
11/22/2022, 8:52 PMrickmason
11/23/2022, 7:11 AMgsr
11/23/2022, 1:07 PMwebsolete
11/23/2022, 2:46 PMzackster
11/25/2022, 10:24 AMzackster
11/25/2022, 1:01 PMfmdano
11/25/2022, 2:36 PMAdam Cameron
Angad Yadav
11/26/2022, 1:05 PM