Crappy Mappings, ie, Crappings
So correct me if I'm wrong. I have a file structure that looks like this: models> framework>> alpha.cfcapplication.cfc I am executing from application.cfc. In it, I have created a mapping...
View ArticleRe: Crappy Mappings, ie, Crappings
Well, status update. Even after doing an: applicationStop() and for all practical puposes, killing the application, it seems ColdFusion, the service, holds onto those mappings and caches them. I...
View Articlecfcompile
Cfcompile trashes my templates, using the syntax of in a DOS window: c:/coldfusion9/bin>cfcompile -deploy C:\coldfusion9\wwwroot C:\ColdFusion9\wwwroot\filestocompile...
View ArticleMySQL query or CF code to “Flag” a group of query results based on a common...
I have the following query that looks up customer accounts:SELECT ACCOUNT_ID, SUBSCRIBER_ID, PKG_CODE FROM Accounts WHERE ACCOUNT_DESC LIKE'%Eye%' GROUPBY ACCOUNT_IDWhich gives me the...
View ArticleSend data complext to Net Webservice
Hello, I need to send array of array to Net webservice (rest) but the webservide respond the error: {"Exception":"Object reference not set to an instance of an object.","StackTrace":" I have an sample...
View ArticleRe: binary data in a form field gets changed
Another suggestion. Could it also be that the form fields are coming in as before, but what you use to open or view them has changed? Again, that might be the application converting Hex 00...
View ArticleRe: binary data in a form field gets changed
All we basically do is to write the contents of the form field to a file.I already tried FileWrite() with different encodings (i.e. ISO-8859-1, UTF-8 and several others, as well as no encoding at all...
View ArticleRe: binary data in a form field gets changed
DonPedroElBuenoI wrote: That's why I installed a hex-editor to make sure this is not the case.I scrolled back up and was duly reminded. You've done a good job at excluding the cases. So, it's time for...
View ArticleRe: Send data complext to Net Webservice
The different platforms, .NET, PHP and ColdFusion have different interpretations of what an array is. There are complications in interpretation even in ColdFusion itself. For example, although the...
View ArticleRe: MySQL query or CF code to “Flag” a group of query results based on a...
You are on the right track. I actually expected something like SELECT ACCOUNT_ID, SUBSCRIBER_ID, PKG_CODE, IF(PKG_CODE = 'Y', 1, 0) AS FLAG
View ArticleRe: I need my services available from...well... everywhere
Thanks, Aegis! You paint the picture clearly. I share your preference for OO and 'information hiding'. Like you, I have found that combining ColdFusion's native rules of thumb with those of OO can be...
View ArticleRe: cfcompile
First things first. I am on ColdFusion 10, whose directory structure differs from that of ColdFusion 9. However, when I open the file cfcompile.bat in a text edtor, I can see that it requires the...
View ArticleRe: binary data in a form field gets changed
Umhum, I don't really understand what the purpose of that file upload is (which may just be due to the fact that I'm far away from being a CF-expert).Anyway, when I tried it, I got the error "CF: The...
View ArticleRe: Crappy Mappings, ie, Crappings
You are right: it should work as you expect! Since it fails, this might be an indication that expandPath( '/models/framework' ) and c:\path\to\webroot\models\framework\ are not the same. To verify, I...
View ArticleRe: MySQL query or CF code to “Flag” a group of query results based on a...
Updated.. but it still is not working right..I need it to also check the SUBSCRIBER_ID" column value.. Here is what I get now using the code: IF(PKG_CODE = 'Y', 1, 0) AS FLAG- Notice that lines 7 &...
View ArticleCF8 Enterprise migration to another hosting provider. Help with migration...
Hi there! We are running a CF8 Enterpsise on an older root Server (virtuozzo VM) and we need to switch to another provider (vmWare VM).We will probably need more then one month for the migration and I...
View ArticleMake Hyperlinks from URL
Request you to please help me with the Script "Make hyperlinks from URL". When I run this script its converting the URL to Hyperlink, but its changing the original URL text present in the Indesign...
View ArticleRe: binary data in a form field gets changed
Interesting observation: CF apparently doesn't consider the content of my form field as being binary. When I try the function BinaryEncode() on the form field, I get the error "Parameter 1 of the...
View ArticleRe: Make Hyperlinks from URL
What "script" are you referring to? And does this have anything to do with ColdFusion? Please clarify.-Carl V.
View ArticleMultiple Hard Drive Mess!
Ok, so for the past 20 years I have been storing all my code and graphic files in three places:My Working Files & Folders on a local drive - mostly current projects.An Archive of all my code files,...
View Article