Re: ColdFusion_10_WWEJ_win64.exe error

2015-02-25 Thread John M Bliss
To be fair, ACF11 might be better...? On Wed, Feb 25, 2015 at 5:49 PM, Russ Michaels r...@michaels.me.uk wrote: I guess the installer still has not improved then, MEH! I haven't really bothered with CF since v9, I am well and truly in the Railo (Lucee) camp now. On Wed, Feb 25, 2015 at

Embedding files in a PDF

2015-02-25 Thread Kevin Parker
Be grateful for a little advice or confirmation please. Putting together a little award nomination system. User submits the nomination via a web form and attaches any supporting documents to the nomination. I then need to produce a PDF of the nomination which in itself is not an issue e.g.

Re: CF11 Migration Tool?

2015-02-23 Thread Jon Clausen
It’s in the CFIDE/administrator under Debugging Logging Code Analyzer On February 23, 2015 at 2:33:59 PM, Robert Glover (sled...@gmail.com) wrote: I was told that there's a Migration Tool for CF11... it supposedly scans your code and tells you of any incompatibilities with CF11. I had

Re: CF11 Migration Tool?

2015-02-23 Thread Wil Genovese
Sounds like the Code Analyzer in the CF Admin. Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. On Feb 23, 2015, at 1:33 PM, Robert Glover sled...@gmail.com wrote: I was told that there's a

CF11 Migration Tool?

2015-02-23 Thread Robert Glover
I was told that there's a Migration Tool for CF11... it supposedly scans your code and tells you of any incompatibilities with CF11. I had never heard of it; if it exists, how do you run it? I've googled for it and nothing comes up at all. Thanks! Rob

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-21 Thread Rob Voyle
Hi Les Since CF11 is run on Tomcat, even for the Windows version, file includes such as background-image: url(../images/bluefade.jpg); have become case sensitive. That wasted a couple of days as well... Rob On 20 Feb 2015 at 18:55, Les Mizzell wrote: Wow - I've spent almost 2 full days

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread lesm...@bellsouth.net lesm...@bellsouth.net
I've created two test documents that can be viewed publicly so everybody can see what I'm talking about. 1st, a Coldfusion only version of the file: http://www.internationalhelpers.co.gg/test/coldfusion.cfm The styling will be just a little off, because the CSS is specific for the PDF doc. The

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Les Mizzell
On 2/20/2015 5:21 PM, Jon Clausen wrote: Your background image uses a relative URL: background: url(img/pdfCARD.gif) left top no-repeat; Have you tried it with an absolute URL? or, alternately, using CSS box shadow: .PDFCARD{ box-shadow: 3px 3px 2px #33; } Switched to the

Re: Threaded cfhttp example

2015-02-20 Thread Matt Robertson
Here try this. I snipped it out of something I use to build static pages with CFHTTP. It builds thousands of them based on query output. I wanted it to run multiple threads at once but not so many it fried CF. So the code keeps track of how many threads are running and limits their number to

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
Your background image uses a relative URL: background: url(img/pdfCARD.gif) left top no-repeat; Have you tried it with an absolute URL? or, alternately, using CSS box shadow: .PDFCARD{ box-shadow: 3px 3px 2px #33; } On February 20, 2015 at 4:19:25 PM, lesm...@bellsouth.net

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
My pleasure.  Glad I could help. On February 20, 2015 at 6:55:29 PM, Les Mizzell (lesm...@bellsouth.net) wrote: Wow - I've spent almost 2 full days trying to figure this out and have never found one thing anywhere saying .gif files were no longer supported! Thanks Adobe!! Wonder why the

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Les Mizzell
Wow - I've spent almost 2 full days trying to figure this out and have never found one thing anywhere saying .gif files were no longer supported! Thanks Adobe!! Wonder why the heck not??? Bet I'm not the only one with a legacy application that this change broke!! Swapped it out for a .png and

Re: Issue with Changes (?) to CFDocument and a background image.

2015-02-20 Thread Jon Clausen
Ah! It’s the image type.  Apparently CF11 doesn’t support .GIF images.   If you convert the image to a JPEG it will work.  Just tested it locally and it went through with a JPG, but not with a GIF. Jon On February 20, 2015 at 5:45:42 PM, Les Mizzell (lesm...@bellsouth.net) wrote: On

Re: CF 404 handler non being invoked on IIS

2015-02-19 Thread Russ Michaels
Do you have iis6 compatibility mode installed? Rgis can cause odd behaviour. If so remove all connectors, then remove iis6 mode then recreate connectors On Wed, Feb 18, 2015 at 5:06 AM, Mark Spence markpence...@gmail.com wrote: I'm trying to make do with using a custom 404 handler in IIS but

Issue with Changes (?) to CFDocument and a background image.

2015-02-19 Thread Les Mizzell
Afternoon, Have an older application that's using cfdocument to push a pdf to the user. Last time I checked the app, it was working great, but it's been awhile and since then the server has been upgraded to CF 10. The pdf is basically a collection of business cards. A card consist of a

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
Miguel, Thanks for the article. It was a little confusing as it seemed to reference onMissingTemplate as the setting in administrator rather than the function in Application.cfc. And that is what I am trying to invoke, the function in Apllication.cfc. Is that no longer possible? I seem to

RE: CF 404 handler non being invoked on IIS

2015-02-18 Thread Fernandez, Miguel
Yes you can use the onMissingTemplate handler in Application.cfc if you wish, it just overrides the ColdFusion admin setting. I think you missed the gist of that article that I referenced. Basically there are three scenarios; use IIS custom error page, use ColdFusion missing template handler

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
Sorry for the misunderstanding, but he 404 is for pages the are ses product pages. So I need the content to be returned to the user. An example would be thus: http://www.mysite.com/productpages/category/product-103/index.cfm I am pulling productpages to see that it is a product page and 103

RE: CF 404 handler non being invoked on IIS

2015-02-18 Thread Fernandez, Miguel
I'm not sure if this has already been mentioned but Adobe just posted a blog article about custom error handling with ColdFusion and IIS. Once you get over how it was written they do give you three different scenarios for configuring your error handling. It's nice to finally get confirmation

Re: Speech to text

2015-02-18 Thread John Allen
The Google speech to text is a no go (sadly). Short clips only and it seems that they are not really 'behind' it now. Can't even see the service in the developers panel when you get your API key. I've been messing around with this: http://voce.sourceforge.net/ Haven't gotten to far with it yet.

Re: CF 404 handler non being invoked on IIS

2015-02-18 Thread Mark Spence
GOT IT! It was a setting under IIS: Under Handler Mappings, double-click on the handler for .cfm. Then click the Request Restrictions... button. It should open to the mappings tab. The Invoke handler only if request is mapped to: checkbox should NOT be checked. On Wed, Feb 18, 2015 at 2:12 PM,

Re: CF 404 handler non being invoked on IIS

2015-02-17 Thread Mark Spence
I'm trying to make do with using a custom 404 handler in IIS but the requested template variable in CF resolves to to 404 handler rather than the url of the requested page. This is getting complicated as this is only a work around for local development and I don't want to change to much and

Re: coldfusion 9 developer edition with verity download

2015-02-17 Thread Gerald Guido
Try this https://www.copy.com/s/nhIbHZYZnmPN/ColdFusion%20Repo/9.0.0 HTH G! *Gerald Anthony Guido* Nullius in verba http://en.wikipedia.org/wiki/Nullius_in_verba -- Horace learn.geraldguido.com Twitter https://twitter.com/CozmoTrouble Facebook https://www.facebook.com/gerald.guido.9 On Tue,

Re: How to get emails unblacklisted by Cisco Senderbase

2015-02-17 Thread Ricardo Russon
What is the error they are returning when blocking your mail? There will usually be something in the mail logs on how to rectify the situation. Or at least an error code to help with further diagnosis. I've run some searches on their site of known spam domains and they seem to just be

Re: coldfusion 9 developer edition with verity download

2015-02-17 Thread Max Nyman
Have a look at: http://www.carehart.org/blog/client/index.cfm/2012/5/31/getting-coldfusion-89-downloads-with-verity-ways-that-may-work-even-after-today and/or http://web.archive.org/web/20110511025225/http://www.adobe.com/support/coldfusion/downloads_updates.html

Re: How to get emails unblacklisted by Cisco Senderbase

2015-02-17 Thread Mike K
G'day Ricardo, thanks for your help.The actual error message is: [quote] Failed Recipient: mghawkra...@iinet.net.auemail address Reason: Remote host said: 554 icp-osb-irony-in9.iinet.net.au Your access to this mail system from 199.115.219.138 has been rejected due to the sending MTA's

coldfusion 9 developer edition with verity download

2015-02-16 Thread Mark Spence
Anyone know where I can safely download coldfusion 9? I would like it for development purposes as the live site uses a verity product search that I need to work on. Thanks. ~| Order the Adobe Coldfusion Anthology now!

Threaded cfhttp example

2015-02-16 Thread Michael Christensen
Hello Experts! I have been trying to create a multi-threaded cfhttp request script, but I have so far failed miserably. I want to run 10 concurrent threads that call URLS using cfhttp and I want to store the results (basically cfhttp.filecontent) in an array or a similar structure that I can

Re: Threaded cfhttp example

2015-02-16 Thread Byron Mann
This should get you started. The cfthread join waits the specific timeout for the threads in the name list to finish. If not all threads are complete, things continue on, so you may want to perform checks against the threads returned in cfthread to ensure the values exists, etc. cfthread

Re: coldfusion 9 developer edition with verity download

2015-02-16 Thread Patrick at A7
I know that you can set up a shared host for $5 a month running CF 9 at Hostek.com, which is what I would do. Patrick Patrick Shannon A7 ADVERTISING www.A7.net 386-453-1464 On Feb 16, 2015, at 11:40 PM, Mark Spence markpence...@gmail.com wrote: Anyone know where I can safely download

Coldfusion Developer Raleigh, NC

2015-02-13 Thread Stephanie Plue
Coldfusion Developer Raleigh, NC 6 Month Contract to Hire We are seeking a candidate will be responsible for performing complex development tasks involving a large Oracle database and supporting dependent applications and maintenance efforts. Must be very detailed oriented with strong

Re: CF 404 handler non being invoked on IIS

2015-02-13 Thread Matt Robertson
sorry for my lack of attention on this. If you are in fact using IIS Rewrite then that clouds the picture a little. However if I can pull myself together and write something up you should be able to do all of your 404 handling in your ... 404 handler. I don't use IIS rewrites for much and

Re: (ot) FarCry upgrade to 7.x

2015-02-12 Thread Jon Clausen
Any reason you’re not looking at Mura or ContentBox?  There are great responsive options for both and both are exceptionally fast once content caching is turned on in production.   Joomla is powerful, but overbuilt, bulky and can be tricky to customize without forking the core.

Re: (ot) FarCry upgrade to 7.x

2015-02-12 Thread Matthew Williams
It's gotten MUCH better with the transition to 7.x (I'm sure the Daemonites are off for the day). The front end templates are now responsive, the dreaded site tree is now completely revamped. The entire admin interface got a much needed redesign. If you're already invested in it I'd go with

RE: Loading a java jar outside of the webroot and not in a standard CF/Railo jar directory.

2015-02-12 Thread DURETTE, STEVEN J
Thanks to you and Dave. I'll be trying this with Railo today to see if it works for both. Thanks again Steve -Original Message- From: Byron Mann [mailto:byronos...@gmail.com] Sent: Wednesday, February 11, 2015 11:23 PM To: cf-talk Subject: Re: Loading a java jar outside of the

Re: CF 404 handler non being invoked on IIS

2015-02-12 Thread Mark Spence
After playing with it a bit more I added this: httpErrors existingResponse=PassThrough/ Now I just get a blank page. Am I successfully passing it through to cf? Hard to tell. I was hoping to have made a bit of progress. On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com

(ot) FarCry upgrade to 7.x

2015-02-12 Thread Uwe Degenhardt
Hi everybody, I know that there a are some guys out here on the list using FarCry. We used FarCry 6.0.6 for quite a while. Now we want most likely upgrade to 7.x since I have the hope it comes with responsive webdesign serving the site to some customers having mobile phones and/or tablet

Re: (ot) FarCry upgrade to 7.x

2015-02-12 Thread Russ Michaels
Unless farcry has some specific features that WP doesn't or you want to customise it heavily in CFML then i'd go with WP. Joomla is a more powerful CMS, but it is a clunky, unfriendly, hard to use monster. On Thu, Feb 12, 2015 at 5:24 PM, Uwe Degenhardt cf-t...@sdsolutions.de wrote: Hi

Re: Speech to text

2015-02-11 Thread Patrick at A7
I want this, too: Automatic translation of mp4 files to text. It seems to me that if we have Speech Recognition on phones, we could certainly have this on a site. But I have been unable to find it. Patrick On Feb 10, 2015, at 12:10 PM, John Allen johnfal...@gmail.com wrote: I was thinking

Re: Speech to text

2015-02-11 Thread Gerald Guido
Curious as well I poked around and found this http://www.x2q.net/2013/09/16/how-to-use-google-speech-api/ G! *Gerald Anthony Guido* Nullius in verba http://en.wikipedia.org/wiki/Nullius_in_verba -- Horace learn.geraldguido.com Twitter https://twitter.com/CozmoTrouble Facebook

Re: Speech to text

2015-02-11 Thread Michael van Leest
A quick search on google gave me these options. - ATT API: http://developer.att.com/apis/speech (no mp3 though, ogg and other general telecom filetypes) - http://www.ispeech.org/ Not sure what your use case is, but using an api for this seems to me to be the best option. Good

Loading a java jar outside of the webroot and not in a standard CF/Railo jar directory.

2015-02-11 Thread DURETTE, STEVEN J
Hi all, My brain isn't working well today and this one has me stumped even after googling for hours. I need to be able to load some jar files in both CF9 and Railo 4.2. Because of rules imposed on me, I cannot put them in the standard jar directories (they would break cf/railo

Re: Speech to text

2015-02-11 Thread Patrick at A7
Excellent. Thank you both. The purpose is converting online teachings/seminars to searchable text. Thanks again, Patrick On Feb 11, 2015, at 1:45 PM, Gerald Guido gerald.gu...@gmail.com wrote: Curious as well I poked around and found this

Re: Loading a java jar outside of the webroot and not in a standard CF/Railo jar directory

2015-02-11 Thread Dave Watts
My brain isn’t working well today and this one has me stumped even after googling for hours. I need to be able to load some jar files in both CF9 and Railo 4.2. Because of rules imposed on me, I cannot put them in the standard jar directories (they would break cf/railo

Re: Speech to text

2015-02-11 Thread Michael van Leest
I think most of the speech to text apis are just for short (max 3 minute) audio files. You might want to google for auto transcribe api of some sort, like YouTube does in some cases for automatic (translated) subtitles. 1 api I found is: http://www.video2text.net On Wednesday, February 11,

Loading a java jar outside of the webroot and not in a standard CF/Railo jar directory

2015-02-11 Thread Steve Durette
Hi all, Trying this from the web interface since an email to the list failed with: cf-talk@houseoffusion.com: 451 All MX servers are unavailable for domain houseoffusion.com My brain isn’t working well today and this one has me stumped even after googling for hours. I need to be able to

Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence
Thank you, I would appreciate that. On Mon, Feb 9, 2015 at 6:38 PM, Matt Robertson websitema...@gmail.com wrote: Mark, those two threads aren't exactly a linear set of to do steps. I'll try to put that together tomorrow when I am in front of a desktop.

Re: CF 404 handler non being invoked on IIS

2015-02-11 Thread Mark Spence
Have you tried a very simple rule to test of that is working ok ? The url rewrite is just pointing to serve the site from a subdirectory. It is working ok because the home page is being served correctly. Thanks, On Mon, Feb 9, 2015 at 3:09 PM, Russ Michaels r...@michaels.me.uk wrote: I

Re: Speech to text

2015-02-11 Thread John Allen
I was thinking more of an application where you feed it an MP3 file and then it spits out the text. Still haven't found a good application for it. Sphinx seems cool interesting and I'm trying to get it up and running using CF as a wrapper for the Java stuff. On Fri, Feb 6, 2015 at 5:31 PM,

Re: Loading a java jar outside of the webroot and not in a standard CF/Railo jar directory.

2015-02-11 Thread Byron Mann
Found these links that may be of help. https://github.com/markmandel/JavaLoader/wiki/Class-Loading http://www.bennadel.com/blog/424-loading-java-classes-with-coldfusion-runtime-java-javaproxy.htm Cf10, added a similar feature.

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
It would seem that your url rewriting is not working if you are getting 404 on the original url., otherwise you get error on the rewritten url at least. On Sun, Feb 8, 2015 at 17:35 PM, Mark Spence markpence...@gmail.com wrote: This is working on the live hosted site, but on my local install

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Mark, those two threads aren't exactly a linear set of to do steps. I'll try to put that together tomorrow when I am in front of a desktop. -- --m@Robertson-- Janitor, The Robertson Team mysecretbase.com -- --m@Robertson-- Janitor, The Robertson Team mysecretbase.com

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Url rewrite in IIS may not even be involved here, and need not be. Prior to win2k8 the standard way to handle Cf 404 and 'fakeURL' 404's was to tell IIS not to 'check to see if file exists' in the .cfm mapping. From there CF server's 404 handler did whatever you wanted it to. To retain the

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
ok I thought I saw him say earlier on he was using url rewrite, maybe I was mistaken On Tue, Feb 10, 2015 at 1:30 AM, Matt Robertson websitema...@gmail.com wrote: Url rewrite in IIS may not even be involved here, and need not be. Prior to win2k8 the standard way to handle Cf 404 and

changing coldfusion 9 standard license

2015-02-09 Thread Chris h
0 down vote favorite I understand Coldfusion 9 is not supported, but being used for some systems till we migrate to Coldfusion 10. We were using a hosting provider who was providing us the Coldfusion 9 standard license and charging us for it. We found a unused license key(for

Re: changing coldfusion 9 standard license

2015-02-09 Thread Patrick at A7
I sure recommend Hostek.com for CF hosting. $5/mo. for resellers (10 or more sites, i think) and your CHOICE of which version of CF and which platform! (windows, linux) Patrick Patrick Shannon A7 ADVERTISING www.A7.net 386-453-1464 On Feb 9, 2015, at 12:26 PM, Chris h h_chris...@yahoo.com

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Mark Spence
Matt, Thank you for the link. I am working through the first step below: *Step 1:* Configure a Missing Template Handler in CF Administrator. Mine is global to the server and kept in the ColdFusion webroot - which is separate from the IIS web root and whose default location is

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Russ Michaels
I deal with many sites that have non existent pages which use URL REWRITE to redirect them. The usual reason is that the url rewrite rules are not working, or even that the url rewrite module is not installed. Have you tried a very simple rule to test of that is working ok ? On Mon, Feb 9, 2015

Re: CF 404 handler non being invoked on IIS

2015-02-09 Thread Matt Robertson
Formerly, in IIS you could check a box that told IIS to not check first if a page exists on the .cfm extension, which would defeat IIS handling .cfm 404 errors. From there your CF 404 error template would take over. This behavior changed as IIS was upgraded. So Item 1: If you are using an

Re: CF10 setting comparable to CF9 maximum JRun threads?

2015-02-09 Thread george.e...@ssa.gov george.e...@ssa.gov
Thanks. I figured since JRun is gone the maximum threads setting would have been replaced by something in Tomcat to which we also do not have access. Do not believe this is a setting any longer. There are only options to set the template, flash, web service and CFC requests. Believe the

Re: problem getting coldfusion and iis running together

2015-02-08 Thread Russ Michaels
You need to make sure that the handler path on your site giving the error is added to cgi restrictions and set to allow. On Sat, Feb 7, 2015 at 23:04 PM, Mark Spence markpence...@gmail.com wrote: Thank you for the reply. I googled the error code and found this thread:

CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence
This is working on the live hosted site, but on my local install of iis and cf it isn't. I have ses urls like this: http://mysitedotcom/item-section/item-name-1034/index.cfm The directories item-section and item-name-1034 do not exist, so it should invoke the Application.cfc onMissingTemplate

Re: problem getting coldfusion and iis running together

2015-02-08 Thread Russ Michaels
I assume you actuaLLY CHECKED the cfm handler to make sure that is the actual path ? use the web config tool to enable and disable CF again on all sites, this should also fix the cgi rescriptions. On Sun, Feb 8, 2015 at 2:24 PM, Mark Spence markpence...@gmail.com wrote: Under the top level

Re: problem getting coldfusion and iis running together

2015-02-08 Thread Mark Spence
Under the top level of IIS manager, under ISAPI and CGI restrictions, there was what I thought to be the proper entry. I went to the website in question and removed the inherited entry and added an explicit entry for C:\ColdFusion11\config\wsconfig\1\isapi_redirect.dllbut it still does not

Re: problem getting coldfusion and iis running together

2015-02-08 Thread Mark Spence
Hello, Russ. I tried the web server configuration tool. After doing so I got an error about a duplicate configuration pointing me to the web config file. I removed the entry and it seems to work now. I want to say I REALLY appreciate all your help. Thank you so much. Cheers.

Re: CF 404 handler non being invoked on IIS

2015-02-08 Thread Brian Cain
You will need to change a setting in IIS for the 404 page not found and point it to a CF page designed to process those requests. Thanks, Brian On Feb 8, 2015, at 11:35 AM, Mark Spence markpence...@gmail.com wrote: This is working on the live hosted site, but on my local install of iis

Re: CF 404 handler non being invoked on IIS

2015-02-08 Thread Mark Spence
I have added the following for a custom error page: Execute a url on this site /404.cfm I still get the standard iis 404 error page. I have restarted the server. Is there something else I need to do? Thanks. ~| Order the

problem getting coldfusion and iis running together

2015-02-07 Thread Mark Spence
Sorry, this is both a IIS and ColdFusion question, so I wasn't sure where to ask. Hopefully someone here can help me. I am just getting started with CF and am helping someone with a site so please bear with me. I am trying to get my local dev environment set up. I had IIS and ColdFusion

Re: problem getting coldfusion and iis running together

2015-02-07 Thread Russ Michaels
firstly you do not want to allow unspecified modules, you simply need to allow the ColdFusion handler. have you tried enabling detailed errors so you can actually see what is causing the 500 internal server ? On Sat, Feb 7, 2015 at 7:46 PM, Mark Spence markpence...@gmail.com wrote: Sorry,

Re: problem getting coldfusion and iis running together

2015-02-07 Thread Mark Spence
Thank you for the reply. I googled the error code and found this thread: http://forums.iis.net/t/1150673.aspx?Am+getting+the+error+0x800704ec+in+webpage+while+calling+the+perl+script I looked in the ISAPI and CGI restrictions and there is an entry under tomcat_Default Web Site with the path

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Thanks Nathan, that's good to know. I will definitely have to look deeper into that. I have been using ColdSpring in a common way for so long that I have not looked over the documentation in a couple years. I may have had the ability all along and not known it. Thanks again! On Fri, Feb 6, 2015

Re: Passing arguments into base class

2015-02-06 Thread Jason Durham
I tried to answer this twice but neither of my previous emails went through. I'm trying from another account. Byron's last example passing the value from the child object to the parent definitely works. I'm not sure what's in your Util class, but the name of it seems to imply using it as a

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Byron, This is pretty much what I was thinking that I had to do, but was hoping to not have to explicitly call the super.init() method for every class that extends the base class. I'm just not sure if what I am trying to do is even possible. On Fri, Feb 6, 2015 at 2:23 PM, Byron Mann

Re: Passing arguments into base class

2015-02-06 Thread Nathan Strutz
You're using ColdSpring and you say CS is not autowiring the field on a base class? It's supposed to, FYI, it just is. If it does not, you can do it explicitly in your xml file (if you use the DefaultXMLBeanFactory.cfc). Also, make sure the autowire option is on, at least for this object if not

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Hi Jon, No, the utility class is not dependent on the base class. The base class has some universal methods that handle things like performing common preInsert and preUpdate ORM methods across all my persistent objects. My utility class has some common methods that I use for such things as

Re: Passing arguments into base class

2015-02-06 Thread Nathan Strutz
Dean, Byron's suggestion is a good one, and the right way to go unless you use an IoC container. It's an object-oriented programming idea where, when you come to the point of not wanting to instantiate all your objects. You invert the control of creating away from what normally creates them into

RE: Speech to text

2015-02-06 Thread Robert Harrison
Yes. Dragon software seems to integrate rather well... but really it's not a CF issue, it more of an HTML issue. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: John Allen

Re: Passing arguments into base class

2015-02-06 Thread Byron Mann
This might work, if I'm understanding. component name='baseClass' { variables.utilClass = ''; public any function init(utilClass utilClass){ variables.utilClass = arguments.utilClass; } } In your derived class you can do this. component extends='baseClass'{ public any function

Re: Passing arguments into base class

2015-02-06 Thread Jon Clausen
Dean, Is your utility class dependent on the the base class (e.g. - does it use “this” or the variables scope)?  If so, then you have a couple of different ways you can go: 1) use it as a mixin inside your component{} , and forego the class wrapper for the Utility methods entirely:

Re: CF10 setting comparable to CF9 maximum JRun threads?

2015-02-06 Thread Byron Mann
Do not believe this is a setting any longer. There are only options to set the template, flash, web service and CFC requests. Believe the defaults are 20,5,5,10 respectively. ~| Order the Adobe Coldfusion Anthology now!

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Thanks Nathan, I am familiar with IoC and am using ColdSpring for this very purpose. However, it doesn't really work in this situation because the base class is never called directly though the beanfactory. The bean that is extending the base class may, but not the baseclass itself. This is my

Speech to text

2015-02-06 Thread John Allen
Hey List, Anyone done any Speech to text stuff with CF? Thanks list. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Solr Suggestions

2015-02-06 Thread Mary Jo Sminkey
I can't get it to accept more than 4 custom fields, and it won't let me use the new CF10 custom field syntax for custom fields either (where you can do something like catalogid_i versus custom1). Just to follow up on this, I did figure out that the problem with the dynamic custom fields

Re: Speech to text

2015-02-06 Thread John Allen
Have you run Dragon as a service/headless app accessible via CF? Do tell. Don't understand the HTML issue part. Thanks Robert. On Fri, Feb 6, 2015 at 4:16 PM, Robert Harrison rharri...@aimg.com wrote: Yes. Dragon software seems to integrate rather well... but really it's not a CF issue,

RE: Speech to text

2015-02-06 Thread Robert Harrison
What are you going to do with it? If you going to voice drive your websites it's an HTML issue. You can speak and it will record in test fields, etc. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com

CF10 setting comparable to CF9 maximum JRun threads?

2015-02-06 Thread george.e...@ssa.gov george.e...@ssa.gov
We do not have access to our CF10 CFAdmin. CFAdmin in CF9 has a 'Maximum number of running JRun threads' setting which is supposed to be set at least to the total of the Template, Flash, Web Service and CFC requests. Since CF10 no longer uses JRun does CF10 have a similar setting, and if it

Coldfusion 7 on Apache 2.2 Linux

2015-02-06 Thread Dan LeGate
I know, I know... it's OLD, but we have to deal with it. Been trying to get CF7 working on Linux with Apache 2.2 and having trouble. Keep reading there was an updated wsconfig.jar available at one point, but not surprisingly, can't find it at Adobe.com Anyone still have the patch, or know a

Passing arguments into base class

2015-02-06 Thread Dean Lawrence
All of my classes in my app are derived from a base class. I've been using this successfully for the last couple of years. However, within the base class, I need the use of a utility class as well. I am currently calling it from the application scope, but I want to better encapsulate the base

Re: Passing arguments into base class

2015-02-06 Thread Byron Mann
Think you might want something like this in your base cfc? I think you'd not want the UtilClass to inherit the base class however, or this would lead to a circular reference and probably kill the app. component name='baseClass' { variables.utilClass = new UtilClass(); } On Fri, Feb 6, 2015

Re: Solr Suggestions

2015-02-06 Thread Mary Jo Sminkey
The one I'm frustrated with though is the status fields. They are supposed to include a keywords struct and keywordScore when the suggestions criteria is met Just to follow up more on this, I continue to be frustrated trying to work with the Solr on our CF10 install, it's almost like we

Re: Passing arguments into base class

2015-02-06 Thread Dean Lawrence
Thanks Byron, I wasn't wanting my utility class to inherit my base class, I am wanting to inject the utility class into the base class. I'm trying to get away from explicitly defining the utility class from within the base class. Since the base class is not called directly, I don't know how to

RE: PATH_INFO missing in CF 11

2015-02-05 Thread Robert Harrison
Is that ColdFusion or IIS? Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234  ext.118 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Alex DeMarco [mailto:alex.dema...@suny.edu] Sent: Wednesday, February 04, 2015 2:23 PM To:

Re: Solr Suggestions

2015-02-05 Thread Mary Jo Sminkey
one thing to bear in mind, if you are using shared hositng. If any customer on the server deletes their collection (i.e. deletes the files or folders) this completely breaks SOLR for everyone else. for this reason I would avoid using SOLR unless it will be running on dedicated hosting. Yes, this

Re: Solr Suggestions

2015-02-05 Thread Russ Michaels
one thing to bear in mind, if you are using shared hositng. If any customer on the server deletes their collection (i.e. deletes the files or folders) this completely breaks SOLR for everyone else. for this reason I would avoid using SOLR unless it will be running on dedicated hosting. On Wed,

Please post our Web Developer Position

2015-02-04 Thread Chris Atkinson
https://careers-megapath.icims.com/jobs/2851/web-developer-4/job Web Developer - Seattle, WA 98101 Position Description and Responsibilities: As a member of the Marketing Web Production team at MegaPath, the Web Developer has a critical role in helping us achieve lead-acquisition and

PATH_INFO missing in CF 11

2015-02-04 Thread Alex DeMarco
Has anyone run into and issue with IIS7.5 CF11 Update 3 with a dump of cgi missing the path_info? I have 2 4 servers all showing the same behavior... Anyone seen this? I know it was an issue in early CF 10 but not 11. ~|

Solr Suggestions

2015-02-04 Thread Mary Jo Sminkey
I'm working on an integration with Solr specifically to use it to help lookup word suggestions for our searches. However, the cfsearch docs are definitely driving me nuts. First, the type attribute doesn't seem to work at all in CF10, even though it's clearly included in the documentation for

Solr Suggestions

2015-02-04 Thread Mary Jo Sminkey
I'm working on an integration with Solr specifically to use it to help lookup word suggestions for our searches. However, the cfsearch docs are definitely driving me nuts. First, the type attribute doesn't seem to work at all in CF10, even though it's clearly included in the documentation for

Web Developer (Cold Fusion/Railo) Seattle

2015-02-04 Thread chris atkinson
MegaPath has an immediate opening for a web developer whose responsibilities are primary related to back-end development of web applications. You must have strong proficiency in writing and debugging ColdFusion Components (CFCs) and custom CFML functions hosted on Adobe ColdFusion servers

PATH_INFO missing in CF 11

2015-02-04 Thread Alex DeMarco
Has anyone noticed that cgi.PATH_INFO is missing in CF 11. We are working to upgrade from 9 to 11 and use PATH_INFO in various places.. Is this a known issue? Any ideas on how to remedy it? thanks! ~| Order the Adobe

<    1   2   3   4   5   6   7   8   9   10   >