http://coldfusion.com logo
Join SlackCommunities
Powered by
# adobe
  • s

    Steve

    01/20/2023, 9:54 PM
    Hi Adobe, long time no see. 😁 I've encountered an issue that appears specific to CF-2021 Update 5. I've isolated the issue to this specific line in the fusebox 5 core code, line 250 is the line containing the xmlSearch() instruction:
    Copy code
    <cfset fbCode = xmlParse(fbXML) />
    				
    				<!--- see if we need to re-read based on the encoding being different to our default --->
    				<cfset encodings = xmlSearch(fbCode,"/fusebox/parameters/parameter[@name='characterEncoding']") />
    				<cfif arrayLen(encodings) eq 1 and structKeyExists(encodings[1].xmlAttributes,"value")>
    Here is the error:
    Copy code
    Message:	coldfusion.runtime.CFPage.XmlSearch(Lcoldfusion/xml/XmlNodeList;Ljava/lang/String;)Ljava/lang/Object;
    StackTrace:	java.lang.NoSuchMethodError: coldfusion.runtime.CFPage.XmlSearch(Lcoldfusion/xml/XmlNodeList;Ljava/lang/String;)Ljava/lang/Object; at cffuseboxApplication2ecfc905036032$funcRELOAD.runFunction(C:\fusebox_v5.5.1\fuseboxApplication.cfc:250) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:623) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:553) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:516) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:463) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:438) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:310) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:5011) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4991) at cffuseboxApplication2ecfc905036032$funcINIT.runFunction(C:\fusebox_v5.5.1\fuseboxApplication.cfc:112) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:623) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:553) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:516) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:463) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:438) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:310) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:975) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:696) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:503) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:4254) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:4217) at cfApplication2ecfc49315480$funcLOADFUSEBOX._factor4(C:\fusebox_v5.5.1\Application.cfc:345) at cfApplication2ecfc49315480$funcLOADFUSEBOX.runFunction(C:\fusebox_v5.5.1\Application.cfc:338) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:623) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:516) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:463) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:438) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:310) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:5011) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:4991) at cfApplication2ecfc49315480$funcONAPPLICATIONSTART.runFunction(C:\fusebox_v5.5.1\Application.cfc:85) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:623) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:516) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:463) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:438) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:310) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:975) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:696) at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:503) at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:115) at coldfusion.runtime.AppEventInvoker.onApplicationStart(AppEventInvoker.java:238) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:436) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:162) at coldfusion.filter.IpFilter.invoke(IpFilter.java:45) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:97) at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:81) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:60) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:231) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:311) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:46) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:47) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:377) at org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:463) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.base/java.lang.Thread.run(Thread.java:834)
    If I rollback from Update 5 and return to Update 4, all works as it has for years on various CF versions and updates.
    b
    • 2
    • 10
  • m

    Mark Takata (Adobe)

    01/23/2023, 4:40 PM
    Heads up for Alpha testers and other folks who have an interest in native GraphQL. Alpha 2 release is coming soon which adds GraphQL native querying capability to Fortuna, including subscriptions. If you are interested in testing this capability, please post in this thread. It will be released to the current Alpha testing group, but I will be adding additional people if there is interest. We will be providing a GraphQL endpoint to run queries against, but if you have your own endpoints you want to test, those will be available as well. We will also release a specific "Quickstart Guide" to help testers understand how best to utilize the new capabilities.
    ⭐ 3
    πŸ‘ 4
  • m

    Mark Takata (Adobe)

    01/26/2023, 7:53 PM
    Show of hands here, how many of y'all go to, have gone to, or plan to go to, DevNexus. I realize it is not a CFML event, but as a Java event, I am curious about crossover. 1️⃣ I've never gone and I never will 2️⃣ I've never gone but I will attend this year or in the future 3️⃣ I've gone but am no longer interested 4️⃣ I've gone before and will go again this year or in the future
    1️⃣ 10
    4️⃣ 5
    2️⃣ 2
  • d

    Daniel Mejia

    01/27/2023, 3:45 AM
    I'm fairly new to fusion reactor and I think I finally have an issue I can try to debug using FR. Whats some of the things you'd check why this request is still running?
    c
    d
    +2
    • 5
    • 12
  • r

    ryan

    01/27/2023, 9:02 PM
    I have an issue with cfhttp not working in CF11 when requesting a website as it appears that cloudflare is blocking the request, so we attempted to see what happens in CF18, and CF21. It throws an error in CF21, works in CF18. Would anyone know why this website does and does not work based on the version? I'm asking in hopes to find a solution for making it work in the current CF11 version, and I know CF11 is not supported. Please see the cffiddle below: https://cffiddle.org/app/file?filepath=79fca3da-74f0-4d11-82b0-7abfa15cd718/a56c60f[…]1b0-beab-bf8bd6ee6959/2e42e53c-6444-4c7c-b512-46872b76c187.cfm
    w
    c
    • 3
    • 52
  • m

    Mark Takata (Adobe)

    01/31/2023, 7:13 PM
    CF Summit East Announced! If you're on the east coast of the United States, come join us for a day of talks to learn about the newest features of ColdFusion, what's coming, tips & tricks and more! April 6th is when the magic happens (and we will also be featuring an in-person Adobe Certified Professional: Adobe ColdFusion certification on the 5th, for just $149)! More information coming soon. Register today! https://carahevents.carahsoft.com/Event/Details/341389-adobe
    πŸ‘ 9
    πŸ‘πŸ» 1
  • s

    Slackbot

    02/03/2023, 1:51 PM
    This message was deleted.
  • a

    Adam Cameron

    02/04/2023, 11:11 AM
    All: I deleted a thread on here last night (UK time, about 12hrs ago). The reason was that it related to content in the CF 2023 / Fortuna pre-release, and that programme is under NDA. There are dedicated forums within the PR programme for discussions / bugs / etc. That's the best place for that sort of thing, and discussions there will have the right Adobe-team eyes on them. Cheers.
    🫠 2
  • s

    Sandra M

    02/06/2023, 1:22 PM
    Hello, is there something going on with the adobe tracker? I’m trying to check a couple of issues and it says β€œNo issue found”
    a
    s
    +2
    • 5
    • 20
  • m

    Mark Takata (Adobe)

    02/06/2023, 4:36 PM
    If you are interested in testing the new GraphQL capabilities of Project Fortuna (CF2023) and are NOT currently part of the Alpha Pre-release program, please go here to sign up: https://www.adobeprerelease.com/beta/C0A219A0-A127-417A-D0D3-A7B5B3C5A0AE/participate/C3B4F4DC-8662-4610-D2B1-EE8FAD396648 There is a kickoff meeting happening tomorrow, February 7th at 7:00am PST. Details on the homepage of the pre-release. The meeting includes members of Adobe ColdFusion engineering, support, product and marketing and they will be doing Q&A related to the features we're releasing. NOTE: For folks who received an email already about this event (i.e. current membership of the alpha), we will NOT be discussing GCP again in order to leave enough time for GraphQL, as the subject is wide ranging and complex (and will likely garner a high number of questions). If you are interested in seeing demonstrations of the new GCP features, there is a recording available of the first kickoff (alpha 1) that included demos of FireStore, Pub/Sub and Storage. That video is linked on the main page of the Pre-Release. Please DM me with any questions.
    πŸ‘ 1
    e
    • 2
    • 1
  • m

    Mark Takata (Adobe)

    02/07/2023, 2:54 PM
    Reminder: Alpha2 Kickoff meeting starts in 5 minutes
  • m

    Mark Takata (Adobe)

    02/07/2023, 3:11 PM
    https://my.adobeconnect.com/coldfusionroom
  • m

    Mark Takata (Adobe)

    02/07/2023, 3:11 PM
    Password is on the pre-release home page
  • m

    Mark Takata (Adobe)

    02/07/2023, 3:18 PM
    pre-release is https://www.adobeprerelease.com/
  • m

    Mark Takata (Adobe)

    02/07/2023, 3:18 PM
    log in, go to Fortuna pre-release
  • m

    Mark Takata (Adobe)

    02/07/2023, 7:01 PM
    The video link for this morning's demo is now live on the pre-release site. Links to the documentation and build are coming.
    πŸ‘ 6
  • m

    Mark Berning

    02/07/2023, 8:19 PM
    Anyone interface with a search engines (OpenSearch, Solr, etc) ? We are looking to interface with a search engine. Our CF and SQL Servers are on premise.
    g
    d
    e
    • 4
    • 8
  • s

    salted

    02/08/2023, 4:19 PM
    Is there any inclinations for CF to implement argon2 like Lucee has done? Or do I still need to look to a library or go with bcrypt/scrypt
    l
    b
    • 3
    • 4
  • d

    Daniel Mejia

    02/09/2023, 8:41 PM
    Who knows how to make sure a certificate is recognized by JRE when using cfhttp??? Details in thread.
    g
    b
    • 3
    • 46
  • m

    Mark Berning

    02/10/2023, 2:24 PM
    Anyone run into
    Too many open files
    error on Linux? I could just increase the limit (currently 1024), but should I be worried about some other underlying issue? This happened in our Development environment. So we should not have that much traffic.
    Copy code
    "Error","ajp-nio-161.134.126.4-8310-exec-1","02/10/23","08:34:53",11111111,"'' The specific sequence of files included or processed is: xxxxxxxxxxxxxxxxxxxxx/index.cfm'' "
    "Error","ajp-nio-161.134.126.4-8310-exec-10","02/10/23","08:35:30",1111111111,"'' The specific sequence of files included or processed is: xxxxxxxxxxxxxxxxxxxxxxxx/index.cfm'' "
    "Error","ajp-nio-161.134.126.4-8015-exec-4","02/10/23","08:35:46",222222,"An error occurred when performing a file operation read on file xxxxxxxxxxxxxxxxxxxxxx/password.config.xml.The cause of this exception was: <http://java.io|java.io>.
    FileNotFoundException: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx/password.config.xml (Too many open files). The specific sequence of files included or processed is:xxxxxxxxxxxxxxxxxxxx/login.cfm, line: 74 "
    coldfusion.runtime.CustomException: An error occurred when performing a file operation read on file xxxxxxxxxxxxxxxxxxxxxxxxxxx/password.config.xml.
    e
    j
    p
    • 4
    • 6
  • c

    Chris Tierney

    02/13/2023, 9:13 PM
    Who has knowledge on if a company were to purchase CF 2021 now, would 2023 be offered as a free license key upgrade since it's already in Alpha 2? Or when that cut-in date would be? @Mark Takata (Adobe)
    m
    • 2
    • 1
  • b

    bdw429s

    02/13/2023, 9:23 PM
    Any CFConfig users on Adobe who are using one or call of the following settings β€’ Services > Cloud credentials β€’ Services > Cloud Configuration β€’ Security > IDP Configuration β€’ Security > SP Configuration who want to help smoke test support for these settings in CFConfig for me?
    j
    • 2
    • 104
  • l

    lmajano

    02/15/2023, 9:50 PM
    Ok Folks, we will be in the DC area doing ColdBox training in April right after CFSummit East @Mark Takata (Adobe) (I was able to move my schedule ) https://mvc-cfsummit-east.eventbrite.com/
    ❀️ 2
    πŸ‘ 1
    m
    j
    • 3
    • 3
  • g

    gobwash

    02/16/2023, 3:56 PM
    After applying update 5 for CF2021 to one of our production servers the CFAdmin throws this error upon login: "Error invoking CFC /CFIDE/administrator/updates/download.cfc" Everything SEEMS to be running fine, except the Packages page loads empty. Looking at errors within FusionReactor I can see the error under the hood is: "javax.servlet.ServletException: java.lang.NoSuchMethodError: coldfusion.runtime.CFPage.XmlSearch(Lcoldfusion/xml/XmlNodeList;Ljava/lang/String;)Ljava/lang/Object;" I've seen the SO thread and I've seen a thread on here about the XML updates. This instance does have the recommended jvm argument and the classes have been cleared and rebuilt. I even manually uninstalled/reinstalled the update. I've updated about 10 other instances to update 5 with zero issues and it seems to only be impacting CFAdmin. Has anyone else seen this behavior?
    m
    a
    • 3
    • 3
  • c

    Cavan Vannice

    02/16/2023, 6:03 PM
    Can someone confirm with me that a Redis connection to ACF@2021 can not happen over the SSL port 6379 and has to happen over the NON-SSL port 6380? When I put in port 6380 I get
    Redis Connection Verification Failed. java.net.SocketTimeoutException: Read timed out
    .
    p
    e
    • 3
    • 24
  • a

    Adam Cameron

    02/16/2023, 9:40 PM
    @Mark Takata (Adobe) this might be a dumb question, but why do all emails from the CF bug tracker come from
    <mailto:rlyeps@adobe.com|rlyeps@adobe.com>
    . Is that... a person's email? Does
    rlyeps
    mean something?
    m
    • 2
    • 1
  • a

    Adam Cameron

    02/16/2023, 10:40 PM
    @Mark Takata (Adobe) (and anyone else interested) here's my assessment of that
    runAsync
    bug I found y/day: https://blog.adamcameron.me/2023/02/coldfusion-bug-in-runasync.html
    πŸ™ƒ 1
    g
    m
    • 3
    • 3
  • m

    Mark Berning

    02/17/2023, 7:35 PM
    We are getting "persuaded" to update our Java for CF 2021 Update 5 server. We are currently at JAVA SE 11.0.16.1 (LTS). We attempted a while back to go to JAVA SE 11.0.17 (LTS) but had errors so we went back to JAVA SE 11.0.16.1 (LTS). We just noticed there is JAVA SE 11.0.18 (LTS) available from the adobe DL page: https://helpx.adobe.com/coldfusion/kb/coldfusion-downloads.html#third_party Before we attempt has anyone else updated successfully or had issues? Thanks in advance
    t
    e
    • 3
    • 10
  • h

    hemi345

    02/20/2023, 5:18 PM
    I've been trying to add an additional site to one of our CF2021 / IIS10 webservers without success. This server has the auto lockdwon applied and I went through the lockdown guide a few years ago. I ran wsconfig and added the additional site but even a simple "default.htm" or "index.htm" file results in 500 internal server error. I checked the eventlog and see "The HTTP Filter DLL D:\CF2021\config\wsconfig\1\isapi_redirect.dll failed to load. The data is the error." When I look at the permissions for the wsconfig\1 folder, I see "groups" for each of the existing sites with read/list/read permissions, but the new site is absent. What's interesting is I don't remember creating these groups and they don't exist in Local Users and Groups so I'm assuming the wsconfig or auto lockdown tool created these, but how do I get a group for the new site added? I've tried adding the user I'm using for the IIS AppPool to the folder permissions but without any success.
    e
    j
    • 3
    • 5
  • m

    Mark Berning

    02/22/2023, 1:26 PM
    So looking at Solr that comes with Coldfusion 2021, I installed the package. What should I see at the O/S (linux)? I don't see multicore\template directory - should I right after installing the package. From a thread in #adobe
    m
    e
    • 3
    • 49
1...141516...21Latest