『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for ColdFusion.
新着順
Hi,The perl script runs fine from the command line but when I execute the same perl script using the coldfusion cfexecute it fails to run. It cannot find the methods/functions used in the perl script like SelectAllEditableRanges, Bookmarks, InsertAfter. The script fails whereever this functions are called in the perl script. How do I run the perl script using cfexecute. Thanks.
I'm working with the AWS Java 2.0 SDK and I'm trying to implement an async multi part upload, but I'm running into some trouble getting things set up, specifically in creating a BiConsumer Interface. Docs: createMultipartUpload(CreateMultipartUploadRequest createMultipartUploadRequest) To start this process I have to call a3AsyncInterface.createMultipartUpload() and so I create a CreateMultipartUploadRequest object and pass that object into my call: oCreateMultipartUploadRequest = createObject( 'java', 'software.amazon.awssdk.services.s3.model.CreateMultipartUploadRequest' ).builder() .bucket( ARGUMENTS.bucket ) .key( ARGUMENTS.key ) .contentType( ARGUMENTS.fileMimeType ) .build(); oCreateMultipartUploadResponse = s3AsyncInterface.createMultipartUpload( oCreateMultipartUploadRequest ); So this all works great so far. My call returns a response object of type CompletableFuture<CreateMultipartUploadResponse>, but here's whe
We got the SOAP WSDL File for PDF Assembling/Bookmark/Commenting and we are trying to consume the web service from SAP ABAP.Details:When calling the Invoke Method of the PDF Assembler, system is giving Conversion Error.The PDF Contents which are attached in the application are passed to the Invoke Method in XSTRING format. Please help on this, if anyone worked on calling the PDF Assembler web services from SAP.
When i output a google map online, my map markers from cfmaps only outputs a maximum of 10 or 11 markers of the 31 persons of whom is have addresses for. I then run the same code in MySQL it outputs all of the addresses with no issues. I there anything I'm doing incorrectly? Thanks in advance for any assistance<!--- Below is the contents of my page: location2.cfm---><cfquery name="foicontact" datasource="master">select FOIID, type, status, squadlt, trim(concat(name.fname, ' ', name.xholy)) as brother, trim(concat(homestreetaddress,' ',homecity,' ',A_state,' ',homezipcode)) as home, homeaddress2 as Unit, photo as photoimg, cellFROM nameWhere homestreetaddress IS NOT NULLAND status = 'a'</cfquery><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><
My company is looking at ways to log and trace our apps which range from Coldfusion, react, and node js applications. We want to log when pages are spent up to actions the end-user performed to errors.My question what are some of the solutions that are a standard way across the board to handle application logging?
We have just upgraded the CF2018. When we installed the new build and are having an access issue. Here is the error message below. Can someone shed a light on this? Many thanks. Message: The getArrClientReportButtonEnabled package method in the D:\Solutions\R_274_8_1-20200610145034.896\Web\Flexible\IpsPhase.cfc component cannotbe accessed from d:\Solutions\R_274_8_1-20200610145034.896\Web\Flexible\IpsPhase.cfm., Template: /Flexible/IpsPhase.cfm, Diagnostics:The getArrClientReportButtonEnabled package method in the D:\Solutions\R_274_8_1-20200610145034.896\Web\Flexible\IpsPhase.cfc component cannot be accessed from d:\Solutions\R_274_8_1-20200610145034.896\Web\Flexible\IpsPhase.cfm. <br>The error occurred on line 233.,Root Cause: coldfusion.runtime.TemplateProxy$InvalidPackageAccessException: The getArrClientReportButtonEnabled package method in theD:\Solutions\R_274_8_1-20200610145034.896\Web\Flexible\IpsPhase.cfc component cannot be accessed from d:\Solutions\R_274_8_
I see previous versions of the JDK posted at the Adobe link below, but I was wondering approximately how long it takes them to make the new version available? Adobe ColdFusion https://www.adobe.com/support/coldfusion/downloads.htmlOracle JDK 11.0.7 https://www.oracle.com/technetwork/java/javase/11-0-7-oracle-relnotes-5972662.htmlRelated security issues fixed https://www.oracle.com/security-alerts/cpuapr2020.html#AppendixJAVA
I am running on linux using Apache httpd-2.4.41, with the latest JDK and Coldfusion 2016. Everything worked great through update 13. However, after applying update 14 and after doing the wsconfig -upgrade, I now have an issue where when a user attempts to connect to a page or directory that does not exist, it displays a 403 error. In addition, I noticed that my .htaccess rules seem to now be completely ignored.When I roll back to version 13, everything works normal again. Has anyone else experienced or am I the only lucky one that is dealing with this.
Hi Team,We have coldfusion enterprise license running in one server. We are planning to migrate to another server. But during the transition time we want to run coldfusion in both servers and shutdown the old one as soon as new server is stable. Please confirm whether this is fine to use same license in both servers for some period (~30 days). Let us know. Thanks.
Hi,I am trying to generate an excel report using ColdFusion 2018 and in the excel file there is a column for email id. Instead of showing email id, it shows "[email protected]" as hyperlinked text. And if i click on the text is says "Cannot open the specified file". Is there a setting where i can see the actual email id. This is happening only in coldfusion 2018, i was not facing this in earlier version. If i generate a web report (Showing html report in table on the screen) using ColdFusion 2018, it works fine. I presume this can be resolved by some security setting and not through code as code is the same for older versions. Please find the attached screenshot, coldfusion code to generate the excel (removed unncessary code and kept only the necessary sections), excel spreadsheet generated. Could someone help me with this. I have been searching for the answer in internet and i couldn't find a single thread for this. regards
Something in CF updates seem to be changing the default behavior of URL encoding/decoding when making cfhttp calls. I first noticed the behavior after applying update 2 but the same breaking behavior exists in update 9 also so any update after update 1 is experiencing the problem. In the example, sender.cfm just makes a cfhttp get call to receiver.cfm where it is processed. Sender.cfm is a Windows 10 dev box running IIS 10 though I have reproduced the issue with the built in web server also. sender.cfm (CF 2018, update 1)<cfhttp method="get" url='http://example.com/receiver.cfm?q=bacon %26 eggs'></cfhttp>receiver.cfm (any version of CF)q = bacon & eggs sender.cfm (CF 2018, update 2 - 9)<cfhttp method="get" url='http://example.com/receiver.cfm?q=bacon %26 eggs'></cfhttp>receiver.cfm (any version of CF)q = bacon %26 eggs I'm trying to identify why this occurred, whether it was a core change in CF or some other library, a CF adm
Hi All,I am using Coldfusion 2016 enterprise on Windows 2012 Sever.We are facing some issue for cfhttp : Cant Connect to SNI enable server using cfhttp We are getting Error like below : I/O Exception: Host name '<ThirdPartDomain>' does not match the certificate subject provided by the peer (CN=<ThirdPartyDomain>, O=XXXXXX, L=XXXXXX, C=XXXX) Please help me.Thanks in Advance.
Hi all. I'm a long tme CF coder, but have never used Fusebox. Now I have a new codebase to maintain that uses Fusebox, and I'm in need of getting up to speed quickly on it. Does anyone know how to tell which version of Fusebox my application is using, so I can get some books for the right version ordered and on the way while I dig in? I see that numerous files in the application begin with fbx_fusebox30... Does that necessarily designate Fusebox 3.0? Thanks!
Hi,We have received a report from our security scanner contractor (SSC) who is testing our application for vulnerabilities with new warning as per subject "Insufficient session expiration". The user logged on to application concurrently two times with the same user credentials. Both sessions are using Chrome and, one of the session is Incognito window. Then, after changing password in one of the sessions (non incognito), the application logged the user out and redirected to login page.The security requiremets as per SSC, all the sessions opened for the user must be logged out.Is it possible? We are using CF2016 on Windows Server 2008 R2.CF is configured to use J2EE session.I tried different methods to invalidate/delete the session and, nothing seem to work for both sessions. Only one session is logged out. Our logout function is using following to delete a session:<CFSET StructClear(SESSION)><cfcookie name="CFID" value="" expires="now"><cfcookie
I'm hoping someone could shed some light. We're testing Redis as session storage. It works just fine, but we're running into an issue where the keys are not properly expired by Redis - they basically just fill up the store. I think the problem is that the keys don't have an expiration? Greatly appreciate any insights. We're on CF2016, SP7.
Considering the following HTML:<!DOCTYPE html><html><head><title>Page Title</title></head><body><ul><li>normal text</li><li style="text-indent: 4em">another text</li><li style="text-indent: 4em">some other text</li></ul></body></html>It renders in my browser (and WYSIWYG editor) like this:But it renders in the PDF produced by both cfdocument and cfhtmltopdf like this:Any ideas for what I can do to get it to render consistently in the PDF? Thanks in advance, Leighton
ı made a form but ı must show all sum nettotal money under of the table.How can ı do it?help please.for exp:the under of nettotal it will be write 100.000 like that.<cfparam name="attributes.keyword" default=""><cfparam name="maxrow" default=20><cfparam name="attributes.start_date" default=""><cfparam name="attributes.finish_date" default=""><cfif isdefined("attributes.form_submitted") and isdefined("form.maxrow")><cfquery name="GET_SALES_EMP" datasource="#DSN#" maxrows="#form.maxrow#">SELECT inv.INVOICE_DATE,inv.INVOICE_NUMBER,inv.TAXTOTAL,inv.OTV_TOTAL,inv.OTHER_MONEY,inv.COMPANY_ID,inv.PARTNER_ID,inv.NETTOTAL,E.EMPLOYEE_NAME,E.EMPLOYEE_SURNAME,sc.IS_ACTIVE,sc.SUBSCRIPTION_HEADFROM [WORKCUBE_TEKNOTEL].[WORKCUBE_TEKNOTEL_2019_1].[INVOICE] AS invleft join [WORKCUBE_TEKNOTEL].[WORKCUBE_TEKNOTEL_1].SUBSCRIPTION_CONTRACT as sc on inv.PARTNER_ID=sc.PARTNER_IDleft join [WORKCUBE_TEKNOTEL].[WORKCUBE_TEKNOTEL].EMPLOYEES as e ON e.EMPLOYEE_ID=inv.SALE_
Hello, all, I've got a weird situation that's got me scratching my head. I've got a form page, which includes an older version of jQuery (1.11.2) at the top of the page. Near the bottom of this page I am CFINCLUDING a .js file. Works great. Tried updating to jQuery 3.5.1, and suddenly this included .js file breaks, stating that "'$' is undefined on line 11." But $ is being used on at least seven lines prior to line 11. $('#thisForm').css({..}); /* THESE lines don't break */ $('#thisForm').attr(...); ... function ums(val){ switch(val){ case 'a': case 'b': case 'c': $('#thisForm').css({...}); /* THIS is the line that breaks */ break; default: break; } ums($('#thisSelect').val()); /* Triggered by this line */ Totally stumped on this one. Ideas? V/r, ^ _ ^
Hello,i'm using SendGatewayMessage to send SMS thru an SMPP provider.All works fine , but with a little problem: i can't send message with "special" character like "è" or "ò" or "ì", because they are not correctly interpretate and received message haven't this character.I've open a ticket to SMPP provider that reply me to verify "DCS" value (it must be equal 0).I've search in gateway config file but i've not found nothing about "characters" or "DCS".Anyone can help me ?Thank's in advance !!
example, I have a table like books and I have a table like authors and a junction table (many yo many).cf 2018 and MSSQL 12I can create form and insert a book in the books table. (no problem here)Question is; How do I add a record or records in the junction table? Also, How do I setup the form to input multiple records for the junction table.<thanks>
Hi all. I'm a new employee at a company whose developers installed CF2018 awhile ago, and I'm trying to install my development CF2018 to match theirs. Unfortunately, they don't remember whether they installed using the Development Profile, the Production Profile, or the Production Profile + Secure Profile. Since I'm seeing notes on the Web that this option cannot be changed once installation is complete, I want to determine what they originally selected. Is there a setting in their cf administrators (or elsewhere) that they could check to find out?
Hi all, My organization is in the process of changing authentication process. Rather than authenticating using data in the "Subject" attribute in the certificate (which I can parse out from cgi.CERT_SUBJECT), they want to authenticate using the "Subject Alternative Name" attribute extension of the certificate. However there is no cgi variable (that I am aware of) that I can get the data from that attribute. I've been researching this for weeks, but am stuck. Anyone have any ideas? I apologize if my terminoligy is used incorrectly above...I'm a pretty good programmer, but SSL/Certs is not my strength. Thank much in advance!
In previous versions of CF, someone had created an add-on that allows you to use the UI to view and manage certificates installed on your server(s). That version doesn't seem to work on CF2018. Does anyone know of an add-on that creates a UI to manage the certs?
Hello, all, I know that there is a way to get, sometimes, the hostname of the client system connecting to an app/site. <cfset inet = createObject("java","java.inet.InetAddress") /> <cfset session.remote_host= inet.getByName(cgi.remote_addr).getHostName() /> However, if you are in an air-gapped development network that does not have internet access, is there a way to do the same? V/r, ^ _ ^
Hi Team, Can you please provide some guidance as to what we could look for or do in order to resolve the following issues? We are currently using ColdFusion 2016. We are seeing issues where the application and exception log files are not getting updated when errors occur on the applications. We also see that the mailsent log files are not getting updated when emails are sent from the application. Thanks Hemanth
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.