Tagged Questions
-2
votes
1answer
27 views
How can I show the column names in my JSON file format? (Through ColdFusion)
Through the following ColdFusion .cfm file, I am able to get a .json string, which shows me the requested data:
json1.cfm
<cfsetting showdebugoutput="no">
<cfheader name="Content-Type" ...
1
vote
0answers
67 views
How can I get this kind of JSON file format from a SQL query? [closed]
You see, this is my issue:
I need to get a .json file from a SQL query. In order to do that, I use the following ColdFusion .cfm file:
<cfsetting showdebugoutput="no">
<cfheader ...
0
votes
1answer
75 views
Populating a second dropdown using ColdFusion, jQuery, and Ajax
I have one dropdown that has 14 values. Depending on the value chosen, it'll query a SQL Server database and return some clients to display in a second dropdown.
I want that 2nd dropdown to use the ...
2
votes
2answers
103 views
How do I ensure SerializeJSON keeps trailing/leading zeroes?
EDIT 3 Problem below exists for Coldfusion 9.0, updating to 9.0.1 does indeed fix this
I have an application that is using SerializeJSON to encode query results:
#SerializeJSON('Ok works fine')#
...
2
votes
1answer
163 views
Data gets truncated while inserting JSON data
I have a SQL table which has 'text' as a datatype. I am trying to insert JSON data using CfQueryparam with cf_sql_longvarchar, which I have in a ColdFusion variable.
However, when I checked the value ...
0
votes
2answers
67 views
Using JSON Data with Coldfusion
I've worked with JSON data in the past - mainly 'fudging' my way to a solution, and not really understanding why or how things work. I've come across an issue where the data being returned looks ...
2
votes
1answer
137 views
ColdFusion 10 REST API: Change JSON response after serialization
When using ColdFusion 10's new REST API, how can I pipe into the response pipeline so that I can change the JSON response after it's been serialized by ColdFusion 10's REST API?
For example, let's ...
0
votes
1answer
116 views
Parse JSON into coldfusion
I have a jquery third party application that has nested lists that serialize to an output like below. The list will always only have 2 levels, but I am having trouble trying to figure out how to ...
0
votes
1answer
67 views
JSON data error in ColdFusion 9
My JSON Data in ColdFusion 9 is giving an error on this line
Internationally renowned for its coverage of major events.
Now if I remove the word 'its' then it works all right.
I pasted the JSON ...
1
vote
2answers
147 views
dhtmlx ColdFusion query to XML or JSON
I was hoping to get pushed into the right direction for this great product.
What I would like to do is run a query or stored procedure, get the resulting data set and then have the results formatted ...
2
votes
1answer
131 views
Coldfusion 10 returnformat=“JSON” adding characters
I have an app that I'm working on converting from CF8 to CF10 and some of my remote CFCs where the data coming back should be JSON are now failing because there seems to be a "//" pre-pended to the ...
0
votes
1answer
92 views
Why deserializing does not convert a JSON string to struct or array in Coldfusion?
I'm trying to deserialize a JSON string in Coldfusion8. It seems to work (no errors), but I'm not able to work with the data I'm getting.
My JSON string looks like this:
...
2
votes
0answers
100 views
CF9 & Solr: CFSEARCH vs CFHTTP
I've been reading posts here for a long time, but only just now created an account so I could post.
I am working in a CF Server 9 environment with Solr collections. I have seven of them that I'm ...
0
votes
2answers
68 views
How to use jsonutil with coldfusion7 and jquery ajax?
I'm trying to understand how to use JSONutil to serialize/deserialize JSON between jquery and coldfusion. I am stuck with coldfusion 7 so I can't use the returnformat='json' attribute in my cfc.
...
0
votes
2answers
290 views
Generate excel or html with coldfusion from JSON format
I need to generate a report with data in JSON format.
Here is the action file that receives parameters and displays either html table with data or excel. I need help with parsing JSON data I am ...
1
vote
1answer
86 views
Coldfusion - modifying the output prior to SerializeJSon?
Firstly, apologies for the phrasing in the question - I couldn't come up with anything better, sorry!
Here's the scenario - I'm working with a JS Front-end that I have little control over, and a ...
2
votes
2answers
95 views
Converting string to an array in ColdFusion MX7
I have a cookie value like:
"[{"index":"1","name":"TimePeriod","hidden":false},{"index":"2","name":"Enquiries","hidden":false},{"index":"3","name":"Online","hidden":false}]"
I would like to use ...
5
votes
3answers
247 views
ColdFusion: QUERY to JSON
I have an query, which I want to convert to a JSON object.
Within my Query, there is a String (for example "0000" or "0001"). Unfortunately, after calling SerializeJSON, the String is a number (0, 1, ...
1
vote
1answer
100 views
Can I return back a gzipped JSON string inside an object I'm returning to the browser?
I'm struggling to find a way to send back JSON inside an object I'm returning (' running Coldfusion8' ) Currently I'm sending back this on Ajax request:
{
"SUCCESS":true,
"DATA": "JSON someData",
...
0
votes
3answers
277 views
Coldfusion 8 JSON - convert return string to query object
I'm relatively new interacting with other systems using JSON functions and maybe I'm just brain farting on a basic problem.
I access an API function that returns a query as a JSON string. The return ...
0
votes
1answer
111 views
Regular Expression for removing quotes from around numeric values in a string in ColdFusion 9
By a numeric value I mean a value in the following JSON that should not be contained within double quotes. I've written a one-off workaround for this but a generic REReplace() that can be re-used ...
0
votes
1answer
118 views
Using objective-c to get coldfusion generated JSON
By going to a url test.com/test.cfm I am able to output the following:
...
-2
votes
1answer
97 views
Array from Structure
I have a query which returns
{
"i-22beb65b": {
"columns": ["time_stamp","stats_value"],
"data":[
[42296,2310],
[42297,2380],
[42298,2356],
[42299,1972],
...
2
votes
2answers
662 views
WCF Rest Client sending incorrect content-type
I am trying to send a request using a wcf client to a ColdFusion 9 service using json. However, the content-type of the request is for xml.
Here is the service contract. As you can see we specificy ...
3
votes
2answers
122 views
xml comment in output of cfscript tag
I am trying to output a query object as JSON. I found some code that suggested using the ColdFusion cfscript tag along with the serializeJSON function:
<cfscript>
theJSON = ...
0
votes
1answer
85 views
Coldfusion - Using CFIF with JSON Data
I'm working with a web API, which is returning the following data (this is a cfdump of the cfhttp.filecontent);
{"id":"xxx","service1":["xxx"],"service2":["xxx"]}
I need to be able to read this and ...
4
votes
3answers
790 views
JSON value with apostrophe
I have an element with a rel attribute that contains a JSON string, something like:
rel='{"id":"#id#","name":"#name#"}'
Then, in my javascript code, I use $.parseJSON to parse this data. This works ...
0
votes
2answers
1k views
Post parameters from AJAX request undefined in form scope in ColdFusion
I am working on a ColdFusion 8 training application where I'm making some AJAX requests (without any libraries such as jQuery) to support a very basic CRUD application.
The high level architecture ...
2
votes
1answer
203 views
Coldfusion 9 JSON parsing error
I have a function that essentially does this
<cffunction name="foo" access="remote" returnformat="JSON" >
<cfreturn ["000", "001", "002"]>
<cffunction>
I am retrieving this ...
0
votes
1answer
90 views
Key in JSON not defined when passed to a CFC
I am passing a CFC a JSON, and there is a key that may or may not exist. So, I am checking it with isDefined, but for whatever reason, coldfusion doesn't think it exists, when, from what I'm seeing ...
0
votes
2answers
418 views
Coldfusion SerializeJSON creating blank values
I'm trying to use SerializeJSON() to turn an instance of CFC into a string, whcih I can store in a database and then pull back out again later on.
The problem I'm having is using the following code:
...
-3
votes
2answers
105 views
JSON conversion issue
I am trying (in Javascript an Coldfusion) to convert:
{"val1":"member","val2":"book","val3":"journal","val4":"new_member","val5":"cds"},
Into this:
{ member,book,journal,new_member,cds}
Notice ...
1
vote
1answer
189 views
Multiple tables same column data structure CFC JSON
I am trying to get back a list of types from a cfc, and return it as a JSON. The issue is how to create the structure of the JSON. I have been racking my brain, trying to get this in a json format, ...
3
votes
3answers
421 views
format JSON response with \
I'm trying to format a json response as such:
[
{
"id": "23029",
"label": "F:\path\to\file\filename.txt",
"value": "filename.txt"
},
{
"id": "23030",
"label": ...
1
vote
2answers
481 views
Formatting JSON Data with ColdFusion for HighCharts
So I'm working on a pie chart using HighSlide and ColdFusion.
To make this simple, for the data it expects a string like this:
data: [{name: 'Jane',y: 13}, {name: 'John',y: 23}, {name: 'Joe',y: 19}]
...
3
votes
2answers
132 views
What causes a JavaScript structure to fail in a live version but work in testing?
I am using ColdFusion 8 on two servers, both with the exact same ColdFusion version and the same settings.
We are creating a structure in a CFC and passing it to the browser using the toScript() ...
2
votes
3answers
514 views
How to format a json feed from coldfusion to jquery fullcalendar?
I am trying to get a json feed working for the jquery Full Calendar plugin but I am not having much luck. The data I get back from coldfusion is not formatted correctly (at least that is my guess). ...
1
vote
2answers
585 views
Displaying ColdFusion JSON response with jQuery
I'm have trouble grabbing the response JSON data that's returned via AJAX call. Here is what I’m getting back in firebug.
{"COLUMNS":["ID","NAME","REGION","EMAIL"],"DATA":[["1234","John ...
1
vote
1answer
548 views
Using a Coldfusion cfc how do you format return data for jqgrid dependent selects in the edit form?
I am trying to figure out how to set up dynamic dependent selects. This is an edit of my original post to try to make it more readable and clear. I have included my whole grid in case it helps but it ...
0
votes
2answers
324 views
Coldfusion's SerializeJSON does not get along with MS SQL 2008
I'm on Adobe Coldfusion 9.0.1 and Microsoft SQL Server 2008 R2 and confirm the following on 2008 Express. I have two tables which I JOIN and serialize the result to a JavaScript Variable using ...
0
votes
2answers
116 views
EXT JS transforming alphanumerics
Hi I have an ext js datagrid that is used to sort and filter that has been working fine but a user has spotted a bug and I cannot work out what it is?
one of the itemID(products) looks like this = ...
0
votes
1answer
496 views
Easiest way to utilize coldfusion returned json object (from query)
I've got a CFC thats returning a query object in JSON format, looks like this:
{
"COLUMNS":["CMADDR","CMBILL","CMCRLIMIT","CMCRREVIEW","CMCRTERMS","CMCRUPDATE","CMCURR"],
...
2
votes
4answers
3k views
How to POST JSON Data to Remote API Using Coldfusion CFHTTP
I'm sure that I'm completely botching this up but I got this far with the help of fellow StackOverflow users, so thanks thus far.
I need to POST JSON data to a remote API. Obviously I can't use ...
0
votes
1answer
337 views
How to POST a JSON to a remote url using Coldfusion 9?
We are trying to communicate with a remote API which requires JSON formatted data. We tried to submit this using JQuery as follows, but were getting SOP errors:
<script type="text/javascript">
...
0
votes
3answers
192 views
ColdFusion Serialize Client Variables
Im looking to convert session to client variables so that I can migrate to a clustered environment.
I'm wondering if there is any clever way of doing this. I figured I could write some standard ...
3
votes
2answers
1k views
JSON response using cfscript function
I have this code as a cffunction that works fine:
<cfcomponent extends="core.core">
<cffunction name="loadService" access="remote" returnformat="JSON">
<cfscript>
...
1
vote
4answers
532 views
Coldfusion JSON serialization inconsistency
I wrote the following component:
<cfcomponent>
<cffunction name="test" returntype="struct" access="remote" returnformat="json">
<cfset local.str = structNew()>
<cfset ...
1
vote
2answers
1k views
Passing javascript array to coldfusion CFC via Json
i use this javascript to capture all checkboxes checked in a flexigrid and try to send this array of row ids to an CFC
function removeCertidao(){
var allVals = [];
...
1
vote
1answer
610 views
extJS4 difference between Ext.Ajax and Ext.data.proxy.Ajax
I am new to the extJS framework and after looking at these two classes I am curious when it is better to use one or the other. Is one better for submitting and one for getting? In my current situation ...
3
votes
1answer
188 views
How can I send javascript object to a remote CFC Component
I have created a javascript object
var spanglist = {
one: q1,
two:q2,
three:q3,
four: q4};
I create the ajax jquery object to send the data to the CFC:
$.ajax({
...

