Questions
Actividad reciente
Most CF coders are familiar with passing parameters to web services via the URL such as:http://mydomain.com/service.cfc?method=login&username=test&password=pw1Concerned about security of using a GET request and unknown to me, one of our third party implementrs managed to get our service working by making a POST to the url:http://mydomain.com/service.cfc?wsdlWith the header:Content-Type: application/x-www-form-urlencodedand inside the POST body this:method=login&username=test&password=pw1To my surprise, the above actually worked fine in CF9. We are now upgrading to CF11 and the vendor tells us that their code is all failing in our integration environment. I tested it and it in fact doesn't work anymore in CF11 via that type of post. I tried using both axis 1 and 2.What can I do to make CF11 act the same as CF9 with this way of passing parameters?
Hi all,upgraded to CF10 from 9 this week and just realised that Flash Remoting is no longer working. Any idea how I enable it within CF10?Thanks
Hi,Coldfusion 11 (Developer)Flex 3Existing Flash Application works with Coldfusion 8Flex Integration is turned on.Running latest updateCentOS 6.1 with latest updatesI have done the following:http://127.0.01/flashservices/gateway ---> Page Not foundhttp://127.0.01/flashservices/gateway/ ---> Page Not foundhttp://forums.adobe.com/message/5621721#5621721Confusion Blog » Apache + Debian + Coldfusion 10 + flex2gateway = Error 404https://groups.google.com/forum/#!topic/railo/6j2i6gl8Ac4\config\wsconfig\1\uriworkermap.properties file to include:/flashservices/gateway/* = cfusion/flashservices/gateway = cfusionI have modified the mod_jk.conf like so:# Select the timestamp log formatJkLogStampFormat "[%a %b %d %H:%M:%S %Y] "# Fix para Flex2gateway<IfModule jk_module> JkMount /*.cfm ajp13 JkMount /*.cfc ajp13 JkMount /*.do ajp13 JkMount /*.jsp ajp13 JkMount /*.cfchart ajp13 &nbs
Sorry to bother everyone again, but I am again needing assistance with converting my CFGRIDS from applets to html formats using CFC and binds.I have been testing the grids one step at a time - first by just adding the format="html" and enclosing the CFGRID within a CFFORM. Looks okay. Then I created the cfc and moved the query, and created the bind. Now I get the grid appearing without any data, and the spinner in the base of the grid.Here is my code: payment.cfc<cfcomponent> <cffunction name="getData" access="remote" output="false"> <cfargument name="page"> <cfargument name="pageSize"> <cfargument name="gridsortcolumn"> <cfargument name="gridsortdirection"> <cfquery name="payment_all" datasource="Tr
For the record I will state that I do not agree with your practices and would like a full uninstall of all this program or know that I am not bound by any law, but will inform you in writing of all complaints, you reserve the right to pick the court. I did not download this program onto my computer. You may remove it. If you do not remove it than you consent to this agreement. I reserve the right to update at any time. You have the obligation to keep yourself informed. Privacy laws and laws governing content are strictly enforced.Billie FernandezFriday, March 3, 2017
Hello I am getting the following error when ever i browser to the Mail section in the ColdFusion Admin Portal when I click onServer Settings > Mail > Undelivered MailApplication ErrorSRVE0777E: Exception thrown by application class 'coldfusion.bootstrap.ClassloaderHelper.initServletClass:129'javax.servlet.ServletException: javax.xml.stream.FactoryConfigurationError: Provider javax.xml.stream.XMLInputFactory could not be instantiated: java.util.ServiceConfigurationError: javax.xml.stream.XMLInputFactory: Provider com.ibm.xml.xlxp2.api.wssec.WSSXMLInputFactory not foundat coldfusion.bootstrap.ClassloaderHelper.initServletClass(ClassloaderHelper.java:129)at coldfusion.bootstrap.BootstrapServlet.init(BootstrapServlet.java:59)at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:332)at [internal classes]at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:
Hi fellows,Anyone know, what is the problem on CF Server, which don't load a new the window to insert a new font on the CF Server?Tks,Fabiano Magno Pechibella
cfspreadsheet is used to read a large Excel (xlsx) file with more than 200,000 records always results in out of memory error "GC overhead limit exceeded The specific sequence of files included or processed""javax.servlet.ServletException: ROOT CAUSE:java.lang.OutOfMemoryError: GC overhead limit exceeded"Is there an alternative way to read large Excel file with ColdFusion? I'm having ColdFusion 10.Thank you.
CFSpreadsheet fails to read atleast one row if the excel file size is big. I am trying to read a excel file of size say 20mb. But it is giving java heap space error when reading the whole file. But when I specify the row attribute, it is not able to read even one row from the big file. Please help me on this issue.
Moving a client to CF 11 server from CF 9 and when testing discovered that CFWIndows all fail if cookies are turned off in the browser. It looks like some sort of security issue because browser console reports security . If cookies are on everything works fine.ReferenceError: reference to undefined property Ext.WindowTypeError: Ext.Window is not a constructorSecurityError: The operation is insecure.<anonymous> /ajax/ext/ext-all.js:18:87372 <anonymous>Once I got an error about trying to access locastorage?Is there any fix for this so that we don't have to replace all cfwindows with a jquery equivalent?Any help appreciatedForrest
We are currently running CF11 Update 6 and are connecting to Oracle 11g. In previous upgrades to CF11, we discovered that use of the most recent macromedia_drivers.jar file has caused significant performance problems on queries. As a result, we had rolled back to a previous version of the drivers file and are running with macromedia.jdbc.oracle.OracleDriver version 4.2.We are now upgrading to oracle 12c and are required to run macromedia.jdbc.oracle.OracleDriver 5.1. However, the peformance is still a problem. I have a sample .cfm file that does a basic query and dumps the query. The execution time on the query on driver 5.1 averages 4000 ms and on driver 4.2 is 200 ms.Sample .cfm Code:<cfset variables.strUsername = "dm_full" /><cfset variables.strPassword = "test" /><cfset variables.strProtId = "5" /><cfquery name="qProtTrack" datasource="asthmanet_dsn" username="#variables.strUsername#" password="#variables.strPassword#"> &nb
We are having intermittent performance problems with a relatively new web application. It seems to be related to the database, but our oracle logs show that the queries are being executed very quickly. I temporarily turned on database logging within the datasource and it looks like the delay is caused by determining if a connection is available or spinning up a new datasource connection. The log is below shows a time jump of seconds. This particular query uses a different datasource than the ones before it, so it does make sense that a new connection would need to be created. However, I've found that usually it only takes 300-400 ms to create a connection. Any suggestions? Our environment:Oracle 12cColdfusion 11 Enterprise Update 9 Redhat Enterprise Linux 7.2Apache 2.4.6Driver: macromedia.jdbc.oracle.OracleDriver 5.1--Here's a small snippet of the log. Prior to this, it executes several queries quickly. spy(ajp-bio-8014-exec-1
Dear All.,My CF website is going down daily at a particular time in evening and the log is detailing that 'Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Invalid object name 'XYZ'.'I can solve this by going to CFADMIN >> Data source >> Edit the Password (or doing any other edits) to the datasource and the site will be back.I am having 10 datasources and this is happening to a particular datasource and not to all.Please let me know what is the reason for this down, particularly for a datasource, and tables inside the datasource came as invalid object name.
I have a client where 3 computers are not having this issue, however 1 computer is and the IT staff is saying that it's my code (Okay). When this users goes to a page where there is cffileupload code, all they see is a large 'X'. Does anyone have an idea where I can go to start troubleshooting this issue for this one computer? There are no error within the browser logs or any js errors.Thanks in advance for any help!
I need to add a dB connection to our new ColdFusion 2016 Enterprise server to an Oracle 12 dB using the service name instead of a SID. If I put the service name into the SID field or leave the SID field blank I get an error. Does anyone know how this is done?ORA-12505Connection refused, the specified SID (XXXXXX) was not recognized by theOracle server.
I just upgraded to 2016 from CF10. I can't get to the administrator page. I get this in the server.log:"Information","localhost-startStop-1","02/28/17","09:39:05","","Starting Monitoring...""Error","localhost-startStop-1","02/28/17","09:39:06","","Unknown tag: Arg""Error","localhost-startStop-1","02/28/17","09:39:06","","Unable to initialise Monitoring service: coldfusion.server.ServiceException: Unknown tag: Arg"Any ideas on how to troubleshoot/fix?(Windows Web Server 2008 R2 - 64 bit)
Hi,We recently upgraded our Cf version 9 to Cf 2016. CFLayout with type= "tab" used to work prior. But stopped working immediately after upgrade.Whenever user clicks on different cflayout tabs, source content is getting disappeared after fraction of seconds. If I validate the page source code using developer tools, these tabs markup (markup generated by the tab sourceurl)already exists in the markup. But something is stopping this markup from appearing in UI. Can anyone please help me solve this issue?Source code:<cflayout type="tab" ><cflayoutarea title="Test1"> <cfinclude template="./grids/test1Grid.cfm"></cflayoutarea><cfif valuationRuns.recordCount gt 0> <cfif StructKeyExists(URL,'ID')> <cfset variables.ID = '&ID='&URL.ID> <cfelse> <cfset variables.ID = ''> </cfif> <cflayoutarea title="Valuation Summary" source="./valuations.cfm?
To automate ColdFusion builds, cf.bat can be used for Windows.Is there a similar script for Linux?[Moved from non-technical Forum Lounge to specific Program forum... Mod][Here is the list of all Adobe forums... https://forums.adobe.com/welcome]
Hi.. I'm new to cold fusion and still in process of the learning cold fusion.I have a problem in create a button for update..i've use all kind of tag such us <a>, <input> and <button> but still it didn't work..this is the result when i run the coding..anyone have a solution?
Hi,Is there a document that provides the detailed steps to update the Cold Fusion 11 java engine?Also, where would one go to obtain the appropriate Java engine for Cold Fusion 11 32 bit?Thanks,Mike
Fixed one issue now another..CF2016 on Mac OS X 10.11.6Get the login page and enter password then get this error.Already saw the point about changing the neocron xml file but that was not the issue..Any other ideas??The error occurred in Application.cfm: line 530Called from Application.cfm: line 189Called from Application.cfm: line 176Called from Application.cfm: line 1-1 : Unable to display error's location in a CFML template.
Hi, when I try to compare AvgRq Time with cfstat / Performance Monitor with avg response time registered in IIS (timetaken), I found distinct averages. So, with cfstat AvgRq Time are growing slowly but never decrease or drecrease very very slowly. I could be a bug?Thanks in advance.
Hi,I have installed Update 11 on a 32 bit Cold Fusion 11. Using IIS 7 on a Windows server.The installation stopped the ColdFusion 11 Application Server.After the installation, the web page displayed the following:Service Temporarily Unavailable!The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Jakarta/ISAPI/isapi_redirector/1.2.40When I tried to restart the ColdFusion 11 Application Server service, the following message appeared:Windows could not start the ColdFusion 11 Application Server on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor and refer to service-specific error code 2.In the coldfusion-error log, the following is in the log file:Feb 27, 20175:31:53 AM org.apache.catalina.loader.WebappClassLoadercheckThreadLocalMapForLeaksSEVERE: Theweb application [/] created a ThreadLocal with key of type[coldfusion.ut
Hello. We're implementing a new server. Our current setup will only allow for CF11. We own a CF11 license purchased from Adobe. We need to purchase a second license. Trying to implement CF 2016 at this stage isn't an option. I need to purchase another CF11 Standard license. I tried going the Adobe support and licensing route. Both avenues refuse to sell me a CF11 license and only try to push me towards 2016. Is there anyway to purchase a CF11 Standard license in 2017?
Hello,We're upgrading from CF8 to CF2016, and as with all big revisions leaps there are certain pain points. My current one is accessing any of our CFCs. Of course they fine work in CF8, but dropped into CF2016 suddenly they can not be found even though they are in the same folder as the web app that is calling them.Here's what I have debugged so far for one web app:1. Yes, the functions in the CFC work. I tested them with CFINVOKE.2. I've played with various paths, from the root to the specific folder. (ie cfc:webroot.next.next.etc.autosuggest)3. I've also moved the CFC around but no success.We're using Windows 2012.Here's the current set up (yes, I know CF is moving away from the autoSuggest with CFINPUT, but work with me, I'm upgrading not updating.)<cfinput onFocus="textHighlight('textedit')" type="text" name="Clinical_Rep_Auto" size="50" maxlength="50" value="" autosuggest="cfc:autosuggest.findClinicalNameWithNetID({cfautosuggestvalue})" autosuggestminlength="2" maxresultsdispl
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.