Re: ColdFusion 10 & .NET - Verification & Integration
There's absolutely no way to identify which .NET frameworks are installed using the ColdFusion Administrator. There's a HUGE "System Information" section devoted to the Java configuration, but .NET is...
View ArticleRe: ColdFusion 10 & .NET - Verification & Integration
Create a cfm file with the following content.... <cfobject type=".NET" name="seClass" class="System.Environment"> <cfset...
View ArticleHow do I get CF10 to traverse symlinked directories on Apache?
Gentlepersons of Adobe.com,We have an application that uses symlink'ed directories in a CF webroot on Apache. This has worked fine on CF8, and CF9, but is now broken on CF 10. By broken, I mean...
View ArticleRe: SELECT Auto Complete
I use jQuery auto complete, it works, but the font size it too big for my application. I tried to find the property to modify it, notr luck. I use CFQuery for the select output, the dropdown becomes...
View ArticleRe: ColdFusion 10 & .NET - Verification & Integration
I ran your sample code and it indicates that that the proxy object is using 2.0.50727.5472. I ran my script and verified that the following .NET Frameworks are installed via Microsoft's guidelines:2...
View ArticlePurchase Coldfusion 9 standard
Howdy, Is there any place I can still purchase Coldfusion 9 standard still? I want to put together another server and I don't want to go through the entire code space and make changes again to go to...
View ArticleReading from .file and storing data in database
Currently i am reading data which is stored in .file in the format (abc|def|ghi|jkl|....|)using array and display the required data from the array as report data. Data is being appended to the .file...
View ArticlePrinting ZPL code to printer
Recently upgraded from CF8 32bit and was using CFX_print to send ZPL code directly to a printer. Unfortunately 32bit DLLs do not load in 64-bit machines....Does anyone know or have an alternative to...
View ArticleEdit a new list
<cfselect> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option...
View ArticleRe: select value base on previous select value
for some reason I tried to do following code, but it does not work for jQuery Chain. Can you please help me to find out which area I need check or modify? Your help and information is great...
View Articlefill cfselect with jQuery
<cfselect name="MyList" id="MyList"> <cfoutput query="MySP"> <option value="#MySP.MyID#" <cfif (isDefined("form.MyID") AND form.MyID EQ...
View ArticleHow do I modify XML? I know where it is, but cannot figure out how to modify it
I have this XML data, and I know there is a node called <group> that has an attribute of tplID with a value of 'alpha'. There ARE other <group> nodes at the same (and different) hierarchy...
View ArticleRe: FindNoCase
To my knowledge, lists don't have records, just indexes. ie, in the following list "Alpha, Bravo, Charlie, Delta", each word is considered the index, which is separated by the delimeter (in this case,...
View ArticleRe: URL not compiling properly
A URL is external to the application. Even if the resource you link to requires Authentication, none of that matters unless the user clicks on it. This is unlike how img SRC attributes and the like...
View ArticleRe: URL not compiling properly
These are the URL's as entered in my CFM page.<a href="http://newcou.edc.cingular.net/" target="_blank">http://newcou.edc.cingular.net/</a><br> Contact - <a...
View ArticleRe: Cannot set property 'readyState' of undefined cfwebsocketCore.js:54
I had the same issue. The problem turned out to be the default port used by websockets (8575) wasn't open by default. Once this was opened, the readystate error disappeared.
View ArticleRe: How do I modify XML? I know where it is, but cannot figure out how to...
That is correct. It returns an array. The next step is to remove the child nodes you mentioned. Then, you construct those pieces back together as a single XML document....
View ArticleRe: Printing ZPL code to printer
I worked with ZPL not long ago. Your printer must have some kind of API documentation that shows you how to send ZPL to the printer. In my case, the process was straight forward like form submission....
View ArticleRe: Reading from .file and storing data in database
Ben Nadel wrote a function to convert CSV to query. You can consider your file is a CSV with "|" as the qualifier. Create another process (perhaps a scheduled task) to read the query, create INSERT...
View ArticleRe: How do I modify XML? I know where it is, but cannot figure out how to...
Hey p.sim, I've read the documentation on CF's XML Functions, but nothing has come across as a viable solution. I don't think they are capable of doing what I'm looking for while keeping the data as...
View Article