Windows authentication for coldfusion 9 datasources
25 Dec 2010 1 Comment
in Uncategorized Tags: coldfusion, coldfusion9, datasources, sql
Let’s get into the topic right away.
Simple and straight forward steps on how to setup a Coldfusion 9 datasource with SQL Server 2008 in Windows Authentication mode.
Step 1:- Go to Programs –> Microsoft SQL Server 2008 R2 –>Configuration Tools –>SQL Server Configuration Manager.
Step 2: Enable the TCP/IP protocol under SQL Server Configuration Manager > SQL Server Network Configurations > Protocols for SQLEXPRESS
Step 3: Now double-click the TCP/IP protocol to view the properties. Click on the IP Addresses tab and make sure that the TCP Port is set to 1433 for every IP type.
Step 4: Log in to CF9 Administrator and create a new datasource. While setting up the datasource give the Database name and datasource name the same. Give the server name as “localhost” and the port as your TCP/IP port.
Congratulations. You just created a datasource that connects to a SQL Database with Windows Authentication.
Command Line API in Firebug
08 Nov 2010 2 Comments
in Browser, javascript Tags: firebug, javascript
Long time since I have made a post. This time it is on one of my fav web development tool Firebug. It has got a cool command line API console for writing JavaScript commands that can be executed on the fly. This is particularly important when we debug large JavaScript code. We need to reload the js file each time after making any changes – which can be quite time consuming. Here is where command lines can be of great help.
There are two type of Command lines API:-
- One Line Command Line – This is the default command line. We can write a single line of JavaScript code here. Also it supports auto complete feature (i.e by hitting the tab key you can complete your js code just like other well known editors). After writing your code press enter. The code gets executed and you can see the execution details under the console window. See highlighted area below.
2. Multi Lines Command Line – Here we can write and excute multipe lines of code on the fly. Write your js code and click Run button. The code gets excuted and you can see the execution details under the console window. Firebug also provides a list of APIs to access the DOM element as well as to monitor and profile the javascript code that is getting executed. Typing these in the command line and executing helps us to see what is the value of an HTML element,whether a function has been executed or not etc.
Firebug as always Roxx.. :-)
CF Admin glitch while Updating Scheduled tasks?
14 May 2010 Leave a Comment
in cold fusion Tags: coldfusion
I faced an issue while working with scheduled tasks long back but though of blogging this now. If the interval specified while creating the task was more than 24 hours then we will not be able to update the task from Coldfusion Administrator.
So here we are creating the schedule task through code. Take a note of the interval.
The interval 360000 is like 100 hours.
Now log into the CF Administrator and try to update the task by changing the frequency to One Time.
The Admin throws error message saying that the interval must be less than one day.
The only way i see to update this schedule task is through code.
Is this a glitch of CF admin? I don’t know.
Security update for ColdFusion versions 9, 8.0.1, and 8 and a word of caution
12 May 2010 2 Comments
in cold fusion Tags: coldfusion, coldfusion8, coldfusion9
A new security update for ColdFusion versions 9, 8.0.1, and 8 is available now. Important vulnerabilities have been identified for these versions that could lead to cross-site scripting and information disclosure. So an update is highly recommended.
http://www.adobe.com/support/security/bulletins/apsb10-11.html
But after taking updates it was reported that the update killed the datasources in the CF admin. After deleting shf8010001.jar from {CF_HOME}/lib/updates/ and restarting the ColdFusion service CF is up and running again. We are still waiting for Adobe to resolve this issue.
Google Chrome speed tests
06 May 2010 Leave a Comment
in Browser, Tech Tags: chrome, google, speed
With the release of new Chrome, Google has shown how much importance they are giving for speed and performance. In fact they have gone ahead and compared the browser’s speed with real life objects. - Just to show how fast the web page is being rendered (Yes that’s right - loading at 2,700 frames per second!) . This is what Google has showed off:
FaceBook security hole…
06 May 2010 Leave a Comment
in Tech Tags: facebook, security
Yesterday witnessed a major security flaw in the social networking site facebook that, with just a few mouse clicks, enables any user to view the live chats of their ‘friends’. Using what sounds like a simple trick, a user can also access their friends’ latest pending friend-requests and which friends they share in common. See by yourself how “secure ” are our social sites:-
By the time I have finished this post they would have fixed this bug(they better be!!!).
Customizing Ckeditor and adding a new toolbar button
16 Dec 2009 15 Comments
in javascript Tags: ckeditor, javascript
It’s been a long time since i have put a blog entry. This time i will discuss how to customize a Ckeditor and how to add new plugins(buttons in the toolbar) to the ckeditor. I got little help while googling. Hope this would be helpful.
Step 1: Download and install the Ckeditor js files. This link would get you setup a sample ckeditor in your local machine.
Step 2 : Customizing the toolbar:
We can specify which all toolbar buttons needs to be shown in our ckeditor. You can refer here for the toolbar definition.
Now we need to add a new button with a user defined functionality to our Ckeditor toolbar. In this example we are creating a button that wraps an anchor tag around a selected text inside the Ckeditor(same functionality as existing anchor button in the ckeditor).
Each button in the ckeditor toolbar is a plugin and their definitions are stored in ckeditor\plugins\ folder. In this folder we create a new folder with our plugin name. Here linkbutton. Inside the linkbutton folder we create a plugin.js file which contains the core functionality of the plugin/button.
It will contain the following code:-
Ajax call in ModelGlue without rendering a view
10 Aug 2009 Leave a Comment
in cold fusion, javascript, Model Glue Tags: ajax, coldfusion, ModelGlue
Making an Ajax call is simple and straight forward in ModelGlue. The concept is simple and is given in detail in Doug’s blog. Read the full tutorial.
In ModelGlue(2) to call the Ajax call we need to have a view. i.e a page needs to be created to act as the view. This is in need if we are using the Ajax call to dynamically load HTML content. The Javascript receives the rendered view and does whatever it was told to do with it. But however there are times when we do not want to have a view rendered for our event(i.e our Ajax call). We simply want to return a value from server(it can even be a mere checking..!!) and assign it to a Javascript variable. For this simple purpose we do not want to create a new page/view.
In order to accomplish this we will have to break the ModelGlue architecture (till now..i couldn’t find any other suitable methods). Anyone who is familiar to ModelGlue architecture will find it easy to understand the below code.
My ModelGlue event:
<event-handler name="test.testFunction">
<broadcasts>
<message name="testFunction" />
</broadcasts>
</event-handler>
Please note that i am not using a view in this event.
And my controller function:-
<cffunction name="testFunction" returnType="any" output="true" > <cfargument name="event" type="any" required="true"> <cfset justtest = 1> <CFCONTENT TYPE="text" RESET="Yes"><CFOUTPUT>#serializeJSON(justTest)# <cfset request.modelGlueSuppressDebugging = true /> <cfsetting showdebugoutput="false" /></CFOUTPUT><cfabort> </cffunction>Here we are converting the justtest variable in JSON format and outputting via cfcontent. Here cfcontent acts as the rendered view and returns justtest in JSON format. Here aborting at the end of controller function can be considered as breaking the ModelGlue archi , but this is one way around to solve the problem.
By the way here is my Ajax call:-
new Ajax.Request(root+'test.testFunction',{ method: 'post', parameters: {param1:paramval}, onSuccess: function(response){ alert(response.responseText); var myresult = response.responseText; } });I am making use of prototype library for this.
We will get 1 if we alert the responseText call back from the server.
This is only applicable to ModelGlue2. If you are using ModelGlue3 then you would also need to check out how to use fomats in MG3. Thanks Ray Camdon for sharing this link.
Removing viewstate values in ModelGlue
05 Aug 2009 Leave a Comment
in cold fusion, Model Glue Tags: coldfusion, ModelGlue, viewstate
A quick blog post on removing viewstate values in Model Glue…everyone knows about this, but i didn’t find any useful reference while googling this…also for my reference as well just in case i forget…
Removing a value from the viewstate:
<!--- Here key is the name of the value you want to remove---> viewstate.removeValue('key')








Recent Comments