displaying top 100 results
Portal Topic TLS 1.2 for ColdFusion 9 and Older
TLS 1.2 for ColdFusion 9 and Older
Portal Topic Updating ColdFusion 9 For TLS 1.2 Usage
Updating ColdFusion 9 For TLS 1.2 Usage
Comment on Updating ColdFusion 9 For TLS 1.2 Usage by gabrieleb5037809
Comment on Updating ColdFusion 9 For TLS 1.2 Usage by gabrieleb5037809
Comment on Updating ColdFusion 9 For TLS 1.2 Usage by Charlie Arehart
Comment on Updating ColdFusion 9 For TLS 1.2 Usage by Charlie Arehart
Tracker Issue Decision operator inconsistency
2608166 CF-4173695 Language Mike Begin Decision operator inconsistency Problem Description:
Certain values yield inconsistent results when compared using EQ/NEQ/GT/LT operators.
Steps to Reproduce:
writedump('1,2' eq '1,2,16')
writedump('1,2' lt '1,2,16')
writedump('1,2' gt '1,2,16')
writedump
Comment on CFB2016_HF2: Version number should be 3.1.2 by Deepraj J.
6124820 CF-4205055 Piyush K. Aaron,
I checked your test code with 2018 HF5. They all seem to be looping 4 times. Am I missing something here.
Here's the output I get with the slightly modified code I've attached:
1 2 3 4
1| 2| 3| 4|
1|2|3|4|
1|2|3|4|
1|2|3|4|
------------------------- 1| 2| 3| 4|
1|2
Tracker Comment Comment on Decision operator inconsistency by Milan C.
2608166 CF-4173695 Milan C. String provided in the example are possible CF date types:
1,2 gets converted to 1,2,2016
and 1,2,16 is the same date which is why they are equal.
similarly try for other date formats like 1,2,15 and compare, you will get correct results.
Tracker Comment Comment on list iteration & member functions all need to expect both a "delimiters" and a "includeEmptyValues" argument. by External U.
2609888 CF-3750734 External U. This isn't fixed in CF11 Update 3 (as of build 11,0,03,291742). The code in the example returns 7 (instead of ,,,,7,,,,). Example:
writeOutput(listFilter("1,,2,,3", function(){return true;}, ",", true));//returns 1,2,3 (bad - should return 1,,2,,3)
write
2608191 CF-4167008 External U. yes, isapi_redirect.dll
file version: 1.2.41.0
product version: 1.2.41
2608789 CF-3996225 Nitin K. PDFs are getting generated from DOC file using OO4.1.2 .
Can you upgrade OO to 4.1.2 and try again ?
Tracker Comment Comment on == doesn't compile if in a string by Nimit S.
2596827 CF-3616590 Nimit S. If you want to print "1 == 2" along with the pound sign, then you should use escape character like "##1 == 2##".
2613836 CF-3158283 Dattanand M. WebLogic has fixed this issue in 12.1.2. Can you confirm if this works on 12.1.2. We were able to upload the file successfully.
Tracker Issue CFB2016_HF2: Version number should be 3.1.2
CFB2016_HF2: Version number should be 3.1.2
Comment on HTML CFGrid (bind) can't be sorted even after hotfix1+2 by External U.
2682173 CFB-4167887 Subir J. Bug verified in 3.1.2.201606131102
Portal Comment Comment on ColdFusion 9.01 by Wil Genovese
Wil Genovese ColdFusion 9.0.n will not handle TLS 1.2 when running on Java 1.7 and older. ColdFusion 9.0.n is NOT certified to work on Java 1.8 and there are known issues on Java 1.8. Additionally the Operating system plays a role here as well. Windows Server 2003 will NEVER handle TLS 1.2. End
Tracker Comment Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Tracker Comment Comment on CF10 CreateDateTime failure by External U.
2608887 CF-3971009 External U. BTW, createdatetime(2015,11,1,2,0,0) works even with the theory of that time not existing
Tracker Comment Comment on Additional CF Administrator users unable to view Settings Summary by External U.
2609006 CF-3948798 External U. Additional note - Tested this in Update 1, 2 & 4 for CF 11 with the same result
Tracker Comment Comment on IsValid("integer") does not exclude some none-numeric characters by External U.
2597048 CF-3169196 External U. isValid("integer", "1,2,3,4") = true
This is just silly
Tracker Comment Comment on == doesn't compile if in a string by External U.
2596827 CF-3616590 External U. IE:
If this works fine:
writeOutput("#1 EQ 2#");
Where "works" is "outputs FALSE, because 1 != 2, so the expression is false.
Then THIS should also work fine:
writeOutput("#1 == 2#");
Because it's the same logic, just a different operator.
Do you get it
Portal Comment Comment on USPS Shipping API Ending TLS 1.1 and TLS 1.0 Support, is your ColdFusion Server Ready? by Wil Genovese
Wil Genovese Not really. Older Linux versions that are not updated may not work with TLS 1.2. Additionally Java 1.7 with any ColdFusion version is not going to work with TLS 1.2.
Tracker Comment Comment on The parser / compiler falsely identifies methods as operators. by John W.
2672562 CF-4187705 John W. Another example if it's useful that should be valid:
function eq(a, b) {
return a == b;
}
writeDump(eq(1, 2));
writeDump(1 eq 2);
Tracker Comment Comment on list iteration & member functions all need to expect both a "delimiters" and a "includeEmptyValues" argument. by External U.
2609888 CF-3750734 External U. Verified this is fixed in CF11 Update 3 (11,0,03,292245(PreRelease)).
writeOutput(listFilter("1,,2,,3", function(){return true;}, ",", true));//returns 1,,2,,3
Thanks!,
-Aaron
).
This ER is for SerializeJSON(query, "row|column") to preserve column type.
Repro case:
q = queryNew("col1,col2,col3", "varchar,double,integer", [[1,1.0,1],[2,2.0,2]]);
writeDump(getMetadata(q));//metadata includes "TypeName" (good)
j = q.toJSON("column", false);//also try "row"
write
Tracker Comment Comment on Bug 76175:(Watson Migration Closure)Summary: upgrade CF's regex engine by External U.
2601404 CF-3037998 External U. +1+1+1+1+1+1+1*2+1+1+1+1+1
4285272 CF-4202294 Language [ANeff] Bug for: invalid data types should not be allowed as valid array types Issue: invalid data types should not be allowed as valid array types
Repro:
values = [
{label:'createDate(2018,1,2)',value:createDate(2018,1,2)},
{label:'createTime(3,4,5)',value
Tracker Issue Replace() fails if one of the strings is a number
(attributes.stringtosoundex);
stclength = len(stringtoconvert);
leader = left(stringtoconvert, 1);
leadervalue = leader;
body = right(stringtoconvert, stclength - 1);
body = replacelist(body, "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z", "0,1,2,3,0,1,2,0,0,2,2,4,5,5,0,1,2,6,2,3,0,1,0,2,0,2");
leadervalue
2598543 CF-3041217 Language : CFSCRIPT Elliott Sprehn Bug 82517:[ES] Nested implicit structs ignore numeric keys Problem:
[ES] Nested implicit structs ignore numeric keys. {z={"1" = 2}} has z with no keys.
Method:
x = {z={"1" = 2}};two = x.z["1"]; // This should work, but the key "1" is missing
Portal Comment Comment on USPS Shipping API Ending TLS 1.1 and TLS 1.0 Support, is your ColdFusion Server Ready? by Wil Genovese
Wil Genovese Everyone that wants/needs to be PCI compliant will be disable older TLS and SSL. It's a TLS 1.2+ world!
Portal Comment Comment on USPS Shipping API Ending TLS 1.1 and TLS 1.0 Support, is your ColdFusion Server Ready? by Mark Gregory
Mark Gregory Netsuite just turned off sub-1.2 as well.
2923599 CF-4198401 Language Mosh Teitelbaum "
#i#
{code}
Actual Result:
theList
Expected Result:
1
2
3
Any Workarounds:
Surround the variable name with hashes/pound signs as in:
Tracker Comment Comment on 1 extra empty request hit CF with IIS URL Rewrite rule (worked fine in CF10) by External U.
2608151 CF-4181254 External U. ColdFusion 10 Update 18
isapi_redirect.dll file version 1.2.32.0
Thx
Tracker Comment Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Tracker Comment Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by External U.
Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by External U.
Tracker Comment Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Tracker Comment Comment on [AF] - API Manager - Only supports a very old version of swagger by Mayur J.
2673662 CF-4119097 Mayur J. Hi Aaron,
API Manager supports import from swagger for both Swagger 1.2 and Swagger 2.0 documents.
Reagard
Mayur Jain
Tracker Comment Comment on When internal memory is used, caching fails after certain limit of number of cached objects is reached by External U.
2608504 CF-4074050 External U. Also noticed both issues (1 & 2), so will await fix.
Thanks!,
-Aaron
2608578 CF-4060624 External U. To be clear, macromedia_drivers.jar 5.1.3 is the version that has the leak, and 4.1.2 is the version I rolled back to that fixed the issue.
2608789 CF-3996225 Nitin K. It is working in OO4.1.2 .
Have verified on RHEL7 & RHEL6.5
Closing the bug . In case you find this issue again ,please get back to us .
Tracker Comment Comment on .duplicate() member function by Milan C.
2609424 CF-3849074 Milan C. Correction: serializeJSON member function is implemented as toJSON()
correct way to use:
arr = [1,2,3,4,5];
x = arr.duplicate();
writeOutput(x.toJSON());
Tracker Comment Comment on CFPDF Thumbnail Action need to generate thumbnail with black background by Uday O.
2609690 CF-3802166 Uday O. For higher resolution images we need to increase jvm's xmx memory as jpedal internally creates objects for each pixel. Increase you memory by atleast 1.2 GB and check the results
Comment on Faulting module name mod_jk.so version 1.2.37.0 by External U.
Tracker Comment Comment on Having one single quote in a multi-line style comment in a script based query breaks params. by External U.
2609792 CF-3769705 External U. I think it is worth noting that this works as expected in Railo 4.1.2.005 final
2611489 CF-3617509 External U. Even simple addition causes the number to be output as a float. For example,
r["z"] = 1 + 2 will output a value of 3.0
Comment on Tomcat connector, isapi_redirector 1.2.32 issues by Immanuel N.
Tracker Comment Comment on Server Non-responseive when receiving a POST with a type XML param by External U.
2613568 CF-3222748 External U. It looks like this might be relevant:
https://issues.apache.org/bugzilla/show_bug.cgi?id=51767
The suggestion in the post is to use version 1.2.35.
Tracker Comment Comment on documentation of cfschedule's result attribute and result struct by External U.
2613660 CF-3194049 External U. I just realized Prabhuram's comment was from over 2 years ago.
However, this ticket was just -now- marked Closed/Fixed.
Adobe: Were both parts (1 & 2) fixed?
Thanks!,
-Aaron
Tracker Comment Comment on documentation of cfschedule's result attribute and result struct by External U.
2613660 CF-3194049 External U. Verified both parts (1 & 2) were fixed.
Once CF-3194042 is completely fixed, then the underscores will need removed from the variable names.
Thanks!,
-Aaron
Comment on HTML CFGrid (bind) can't be sorted even after hotfix1+2 by Adobe D.
Comment on HTML CFGrid (bind) can't be sorted even after hotfix1+2 by External U.
2682194 CFB-4160064 Dattanand M. @David Belanger I am able to repro this issue in 3.1.0 and 3.1.1, but this is been fixed and will be available in the next hotfix i,e 3.1.2.
Tracker Comment Comment on 404 - File or directory not found (Tomcat/ISAPI/isapi_redirector/1.2.46) by Vamseekrishna N.
Comment on 404 - File or directory not found (Tomcat/ISAPI/isapi_redirector/1.2.46) by Vamseekrishna N.
Wil Genovese Update: I had a reason today to test this workaround on ColdFusion 10. It didn't work. I setup a FTP server on one of our servers with TLS 1.2 and setup the proper TLS certificate. I even imported the public certificate in the CF10 Java keystore. All methods failed to make a secure
",key2="2E3",key3="1.2",key4="myString"};
myStructSerialized=serializeJson(myStruct);
writeDump(myStructSerialized);
Actual Result:
The output is
{"KEY2":2E3,"KEY1":true,"KEY4":"myString","KEY3":1.2}
Observe how the values 2E3, true and 1.2 are numerical or boolean
Expected Result:
A JSON result
Tracker Issue [ANeff] ER for: DeserializeJSON() support for .toJSON()'s serializeQueryByColumns="struct"
,double,integer", [[1,1.0,1],[2,2.0,2]]);
j = q.toJSON("struct", false);//returns [{"COL1":"1","COL2":1.0,"COL3":1},{"COL1":"2","COL2":2.0,"COL3":2}]
q2 = deserializeJSON(j, false);
writeDump(q2);
Actual Result: an array of structs (understandable.. but.. we need a way to force an array-of-structs to query
Tracker Issue [ANeff] Bug for: Pre-CF2018 vs CF2018 w.r.t. Array Case/NoCase searching of simple values
ToList(rowToAdd[needle.type]);
}
}
result.addRow(rowToAdd);
}
writeDump(result);
Actual and Expected Result on CF2016:
With 1st haystack enabled:
query
acfBuild acfFunction booleanFalse booleanTrue numberOne numberZero stringFalse stringTrue
1 2016,0,01,298513 arrayFind() 4 1 1 4 4 1
2 2016,0,01,298513 array
Tracker Comment Comment on Form Fields with the same name are converted to arrays when Fusebox 5.5 is used. by External U.
2608796 CF-3991872 External U. I can confirm the issue with an application after moving from a fusebox application.cfm configuration to a application.cfc.
The TestCase.zip actually shows the issue in my case.
I am using cf11 u6.
The page displays:
Text Fields
array
1 1
2 1
3 1
Checkboxes
3983112 CFB-4198280 Editor Features : Syntax Checking [ANeff] Bug for: False syntax errors if 'setting' or 'param' only have 1 parameter Issue: CFB displays false syntax errors if 'setting' or 'param' only have 1 parameter.
Repro:
This works (no syntax errors):
1|
2| setting requestTimeout=300
Tracker Issue Multiple order by statements add column to result
=monokai
Actual Result:
col1 col2 col4
1 col1 1 col2 1 1
2 col1 2 col2 2 2
3 col1 3 col2 3 3
4 col1 4 col2 4 4
5 col1 5 col2 5 5
6 col1 6 col2 6 6
7 col1 7 col2 7 7
8 col1 8 col2 8 8
9 col1 9 col2 9 9
10 col1 10 col2 10 10
Expected Result:
col1 col2
1 col1 1 col2 1
2
arrayLen(ListToArray(" ")) returns 0This is a bug since the list element is NOT emtpy and whitespaces should be treated as an element..This causes errors when migrating from CF8 to CF9, if for example a list is used like this:E.g. list = "1, ,2,3"ListToArray(list)CF8 will return an array len 4: [1] = "1"[2
Tracker Comment Comment on CFClient does not support arrayEach() / arrayFilter() / arraySort() / arrayMap() / arrayReduce() by External U.
2609897 CF-3748332 External U. Here's the repro code I used (had to comment-out the cfclient tags in order to run the arraySort()/myArray.sort() section:
myArray = listToArray("1,,2,,3");
arrayEach(myArray, function(a){writeOutput(a&'a');});//displays 1a2a3a
writeOutput('');
my
Tracker Issue Bug 82516:(Watson Migration Closure)[ES] Comparison operators cannot be used in string expressions in cfscript
2598544 CF-3041216 Language : CFSCRIPT Elliott Sprehn Bug 82516:(Watson Migration Closure)[ES] Comparison operators cannot be used in string expressions in cfscript Problem:
[ES] Comparison operators cannot be used in string expressions in cfscript. ex."#1
x = 10;
y = 10;
writeoutput("#1 + 2
Tracker Comment Comment on ArrayFindAllNoCase by External U.
2613560 CF-3228672 External U. Hi Sagar,
Please try this:
array = ["STRING","string"];
indices = arrayFindAllNoCase(array,function(s) { if(s == "string") return true; return false;});
writeDump(indices);
Actual Result: empty array
Expected result: [1,2]
Bug: arrayFindAllNoCase() is broken
Wil Genovese Authorize.NET Temporarily Ending TLS 1.1 and TLS 1.0 Support At CF Webtools we have been preparing for this inevitable day for the past few years. We’ve been upgrading our clients servers and services to handle TLS 1.2 calls to Authorize.Net and other third party processors for a while
Tracker Comment Comment on IsValid("integer") does not exclude some none-numeric characters by External U.
2597048 CF-3169196 External U.
#isValid("integer", "100.00")#
#isValid("integer", "$1,000")#
#isValid("integer", "$,1,2,$,2352345,$")#
#isValid("integer", "$1,000.00")#
Result: NO,YES,YES,NO
If isValid() is to validate currency values, then how about an isValid("money")? But is
Tracker Comment Comment on Error when creating CF data source for viaSQL connection (works in previous versions of CF) by External U.
2608788 CF-3996917 External U. Summary is html attached in the zip file.
The database is an IBM mainframe and has been working in our CF9 environment for years. I will forward on more information once I retrieve it from our mainframe folks.
Driver version is 2.1.2p2
2608416 CF-4100088 Piyush K. Aaron,
I think the method is supposed to return an object with added time units, not modify the object passed as the argument.
Can you pls try the following and share the result:
_dt = createDateTime(2016,1,3,1,2,3);
_dt_millis = dateAdd("l", 456, _dt);
write
Tracker Issue Allow cfproperty default to be a CFML expression
property name='myString' default='[1,2,3]' type='string';
// This will actually be an array
property name='myArray' default='#[1,2,3]#' type='array';
/**
* This will actually be a struct
* @default #{ foo : 'bar' }#
*/
property name='myStruct' type
Tracker Issue [ANeff] Bug for: myList.filter() not implemented
2609864 CF-3755346 Language Aaron Neff [ANeff] Bug for: myList.filter() not implemented Duplicate ID: CF-3752316
The filter() member function has not been implemented for lists.
Steps to Reproduce:
myVar = "1,2,3";
writeOutput(listFilter(myVar, function(){return true;}));//returns "1,2
Tracker Comment Comment on All CFM requests logged as /jakarta/isapi_redirect.dll in IIS 10.0 by Michael T.
Tomcat 8.5.23 and the 1.2.42 Connector.
Any chance you can simulate this combination of versions in your environment to see if it resolves the issue?
In my CF 16 with Update 5, it is using Tomcat 8.5.11 and using a connector with a version of 1.2.41.
Tracker Comment Comment on Jakarta isapi_redirector Intermittent Service Temporary Unavailable Errors by External U.
2612108 CF-3556864 External U. We are experiencing the same issue. Based on the isapi_redirect.log we have tracked it down to the connector (1.2.32). Adobe needs to update the tomcat connector.
I checked the change log and the bug was fixed in 1.2.35.
http
2613515 CF-3300889 External U. I had the same problem and finally found a resolution - my staging/productions servers both had a different version of isapi_redirect.dll than my development server.
Once I updated the isapi_redirect.dll on staging and production (v.1.2.32.0) with a copy from my dev
Tracker Comment Comment on Submitting form with file and CFGRID - Exception in The submitted cfgrid form field is corrupt by External U.
4U[1]2[1]2[1]Another Piece[1]Another Piece[1]11[1]5U[1]5[1]5[1]Pretty[1]Pretty[1]12[1]3U[1]8[1]8[1]Ugly[1]Ugly[1]15[1]2U[1]8[1]8[1]Ugly[1]Ugly[1]18[1]4
If I remove the primary key from cfgridcolumn, then the following error occurs:
Primary key(s) artid not found.
The cfgridupdate tag cannot
2608582 CF-4058810 Piyush K. Thanks Neil for the confirmation.
Just to add, you can pass a range as well as the comma delimited values for datatype.
So ["NUMERIC:1,2,3;STRING"] can also be specified as ["NUMERIC:1-3;STRING"]
closing this.
Portal Topic Wow 25 years – and still growing
Fusion. Blog,Success Story,1.2,blog,success story
Tracker Comment Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Comment on application crash: faulting module name: isapi_redirect.dll, version: 1.2.40.0 by Immanuel N.
Tracker Comment Comment on CF10 CreateDateTime failure by External U.
2608887 CF-3971009 External U. ok, I restarted CF and it didn't throw an error with AZ. But still does not explain this being valid however createdatetime(2015,11,1,2,0,0) that's when DST ends this year.
Tracker Comment Comment on .serializeJson() method not implemented by Milan C.
2609091 CF-3933619 Milan C. Added toJSON as member function. will behave similar to serializeJSON(str) function.
So now you can use it like this:
arr = [1,2,3,4,5];
writeOutput(x.toJSON());
toJSON is not
Tracker Comment Comment on .duplicate() member function by Milan C.
2609424 CF-3849074 Milan C. Added duplicate and serialilzeJSON as member functions. will be evaluating if others can added too.
So now you can use them like this:
arr = [1,2,3,4,5];
x = arr.duplicate();
writeOutput(x.serializeJSON());
Comment on Faulting module name mod_jk.so version 1.2.37.0 by Immanuel N.
2610154 CF-3724983 External U. Verified this is fixed in CF11 Update 3. The following no longer throws an error:
Code 1:
Result 1: 2
Question: Why the id="2.0"? Especially since the following outputs id="2":
Code 2:
Result 2: 2
Thanks!,
-Aaron
2610304 CF-3712125 External U. And hopefully it goes without saying... if the result of calling a member function is a different type, and that new type usually has its own member functions, they should be chainable too:
"1,2,3".listToArray().each(function(){}) ... and so on.
Tracker Comment Comment on The function gethttpRequestData() fails when form posted with encType="multipart/form-data" by External U.
2610470 CF-3700164 External U. I ran the same code on Railo 4.1.2.005 and got the expected result! For details, follow this link to the ColdFusion forum: http://forums.adobe.com/message/6060019#6060019
Tracker Comment Comment on The function gethttpRequestData() fails when form posted with encType="multipart/form-data" by External U.
2610471 CF-3700163 External U. I ran the same code on Railo 4.1.2.005 and got the expected result! For details, follow this link to the ColdFusion forum: http://forums.adobe.com/message/6060019#6060019
2611003 CF-3653076 External U. I confirm this issue. As an addition: mod_jk.so dumps shared memory files every second into /wsconfig/1 directory. The latest version of mod_jk.so 1.2.37 won't compile on Mavericks as well.
Tracker Comment Comment on Multiple Form Elements With the same name turned into array - missing empty elements by External U.
2612070 CF-3560964 External U. Why would you say a form field shouldn't be empty? It is empty. That's it. See the *multiple* comments where if you have items 1, 2, and 3 and if the user leaves 2 blank, we can't tell that because the feature is collapsing the array.
Tracker Comment Comment on IIS 404 custom error handler URLs that are .cfm files do not consistently return entire document by External U.
2612631 CF-3488063 External U. amendment: you need to both 1 & 2 to get both cases to work aka, gzip off fixes > 1400 byte payload, keepalive fixes < 1400 payload.
note: they also make your webserver somewhat slower for browsers.
Tracker Comment Comment on IIS 404 custom error handler URLs that are .cfm files do not consistently return entire document by External U.
2612631 CF-3488063 External U. Update 14 was applied and caused every redirect to hang. I went back to using the isapi_redirect.dll file listed as version 1.2.32.
2613182 CF-3340564 External U. I believe this is the related Tomcat connector bug-
https://issues.apache.org/bugzilla/show_bug.cgi?id=47679
According to that, it was fixed in 1.2.32?? We are still experiencing this issue.
Comment on Tomcat connector, isapi_redirector 1.2.32 issues by External U.
Comment on Tomcat connector, isapi_redirector 1.2.32 issues by Immanuel N.
Comment on HTML CFGrid (bind) can't be sorted even after hotfix1+2 by Adobe D.
Comment on HTML CFGrid (bind) can't be sorted even after hotfix1+2 by External U.
2614305 CF-3117894 External U. Running Apache 2.2.13 (32 Bit)
JRun/4.0
mod_jk.1.2.32
Perhaps my localhost was still pointing to my CF9 instance rather than CF10 ?
Tracker Comment Comment on [ANeff] Bug for: coldfusion.sql.QueryColumn coersion broken for function argument by Aaron N.
4166478 CF-4201825 Aaron N.
q = queryNew("id", "integer", [[1],[2]]);
//writeDump(arrayToList(q["id"]));//returns 1,2 (good)
r = q["id"];
writeDump(r.getClass().getName());//returns coldfusion.sql.QueryColumn (good)
writeDump(arrayToList(r));//throws "coldfusion
Tracker Comment Comment on [ANeff] Bug for: some cross-applied member functions throw incorrect parameter check exception by James M.
4478243 CF-4202935 James M. IMHO, just about every string member function should work on a numeric even if the result would be identical.
I pointed this type of issue 1 1/2 year ago. https://tracker.adobe.com/#/view/CF-4198258