Re: SOLR config in CF10

2015-03-31 Thread James McCullough

If you are using CF10 or CF11 the file is now jetty.lax 

You can find it in this directory {cfusion}\jetty

The line you want to change is around 68 or so. 



The Adobe docs say that in order to configure SOLR (as in upping the memory
available to it) in CF10 one needs to edit the solr.lax file. Problem is, I
don't have a solr.lax file anywhere on the server. Does anyone know the
name/location of the actual file to do configurations?
Thanks in advance,
Les 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360313
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOLR config in CF10

2015-03-31 Thread James McCullough

If you are using CF10 or CF11 the file is now jetty.lax 

You can find it in this directory {cfusion}\jetty

The line you want to change is around 68 or so. 





The Adobe docs say that in order to configure SOLR (as in upping the memory
available to it) in CF10 one needs to edit the solr.lax file. Problem is, I
don't have a solr.lax file anywhere on the server. Does anyone know the
name/location of the actual file to do configurations?
Thanks in advance,
Les 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360314
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cf11 and Tomcat Datasources

2015-01-28 Thread James McCullough

 Is possible to configure a data-source in Tomcat and have it visible 
 to the CF11 instance?  If so how?  I have tried following the Tomcat 
 doc but continue to run into this error:
 DAOException: Naming Exception while looking  up DataSource Connection 
 mydb: 
 Name [mydb] is not bound in this Context. Unable to find [mydb].
 
 Anyone know how to do this?  Thank you in advance! 

You could try this and call the necessary methods such as password ,username, 
etc.

cfset obj = CreateObject(java, 
org.apache.tomcat.jdbc.pool.DataSourceProxy)
 
cfdump var = #obj# 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cf11 and Tomcat Datasources

2015-01-28 Thread James McCullough

This is not the right forum for that question. 

That info is available in the Tomcat documentation. 

 Is possible to configure a data-source in Tomcat and have it visible 

Yes but how do I add the datasource at the Tomcat level first? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:360028
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Hacking?

2013-09-06 Thread James Moberg

 Is anyone familiar with this code:  http://pastebin.com/2v3PMx4M  

I googled the author's name.  It's Too Simple File Manager ($15), but this 
versions is outdated and has been modified to allow commandline execution and 
SQL transactions:
http://www.cftagstore.com/?page=viewTagtagId=290 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:356723
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Weird issue with SOLR and cfindex - it won't index more than 10k rows

2013-02-26 Thread James Mc

The 10k records entry is only for autocommit which means that as soon as your 
collections reaches 10k uncommitted docs it will commit them and then start 
queuing up more. 

What could be happening is that you have more than 10k but less than 20k 
documents which would leave these documents uncommitted. 

Run the following after indexing. 

cfindex action=commit collection=st_items

and see if that commits the remaining documents.   

I did more digging into the Solr config XML for my collection, and found
this in the updateHandler:

autoCommit
  maxDocs1/maxDocs
 !-- maxTime1000/maxTime --
/autoCommit

That seems to allow me to index more documents.

Solr ended up not being able to do what I needed so I've used SQL full-text
indexing instead.

Just wanted to ask again if there's anyone out there who's had experience
with this before





On 25 February 2013 15:19, Edward Chanter firew...@cc.uk.com wrote: 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354703
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Hack - Further Information

2013-02-05 Thread James F

Upon further review of my server I have discovered several files were
compromised, dating back to January 2, 2013.  They appear in various places
in the /CFIDE folder.  Here is a list of the ones I found this morning:

C:\Inetpub\wwwroot\CFIDE\adminapi\customtags\fusebox.cfm

C:\Inetpub\wwwroot\CFIDE\administrator\scheduler\scheduleedit.cfm

C:\Inetpub\wwwroot\CFIDE\administrator\security\cfrdspassword.cfm

C:\Inetpub\wwwroot\CFIDE\componentutils\Application.cfm

C:\Inetpub\wwwroot\CFIDE\componentutils\cfcexplorer.cfc

C:\Inetpub\wwwroot\CFIDE\scripts\ajax\ext\docs\resources\pkg.cfm

If your server was compromised, I suggest you do a search for any files
changed within the past 2 months and you will probably find them.

James F


On Tue, Feb 5, 2013 at 3:54 AM, Russ Michaels r...@michaels.me.uk wrote:


 I have to say I have never once had that in my 12 years of installing cf
 servers, if the cfide dir or  vdir doesn't exist , then cfide or the
 administrator doesn't work, period.
 So there must be some.very special.circumstances for that to happen, it
 certainly doesn't happen on a standard windows install.

 Regards
 Russ Michaels
 www.michaels.me.uk
 www.cfmldeveloper.com - Free CFML hosting for developers
 www.cfsearch.com - CF search engine
 On Feb 5, 2013 12:21 AM, Dave Watts dwa...@figleaf.com wrote:

 
   OK, now that you've done that: CF serves all sorts of pages that don't
   exist. You may read up in this very thread about CFCHART, which relies
   on a URL pattern that doesn't exist. CF relies on servlet mappings,
   which may or may not correspond with actual URLs. Typically, they do,
   but there are some specific URL mappings that are created by default
   when you install CF, and one of them is
 /CFIDE/Administrator/index.cfm.
   Another is /CFIDE/Main/ide.cfm - this is another file that doesn't
 even
   exist by default.
  
   I understand that under special circumstances like CFChart it serves
  pages
   that don't exist. But in the scenario I outlined where CFIDE mappings
  have
   been re-pointed to a folder that does not carry the administrator
 folders
   and the web server provides a Virtual directory to the very same
  duplicated
   CFIDE folder, I fail to see how it would ever serve the content from
 the
   administrator and adminapi folders...
 
  In a nutshell:
  - client requests /CFIDE/Administrator/index.cfm
  - request is immediately passed to CF by the web server - this happens
  before the web server tests for the existence of a file at that URL
  - CF looks at its list of servlet mappings, and finds one for
  /CFIDE/Administrator/index.cfm
  - CF looks on the filesystem for where it expects to find this file,
  based on where these files were placed during the initial install
  - if the file is there, it's executed
 
  So, let's say you install CF without hooking it up to a web server,
  then later hook it up to IIS. In that case, CF will initially use the
  built-in web server, and create the file
  c:\coldfusion9\wwwroot\CFIDE\Administrator\index.cfm. When you hook up
  the web server, the web root might be c:\inetpub\wwwroot, and you may
  have created your own CFIDE directory there without the Administrator
  subdirectory, so that the directory c:\inetpub\wwwroot\CFIDE exists
  but the file c:\inetpub\wwwroot\CFIDE\Administrator\index.cfm does
  not. Nevertheless, CF will execute the file
  c:\coldfusion9\wwwroot\CFIDE\Administrator\index.cfm when you ask it
  for http://your_IIS_web_server/CFIDE/Administrator/index.cfm even
  though a request for http://your_IIS_web_server/CFIDE/Administrator/
  returns a 404 - the second URL doesn't match an explicit servlet
  mapping.
 
  Alternatively, let's say you install CF and hook it up to your default
  IIS server. In that case, CF will create the file
  c:\inetpub\wwwroot\CFIDE\Administrator\index.cfm. Then, you might
  create a new IIS virtual server, and set its web root to
  c:\inetpub\otherserver\. You'd still have the same problem, as CF
  would still be able to resolve to the original location of the file.
 
  We actually go through this in our Administering ColdFusion 9 course
  as it's a fairly common configuration mistake.
 
  http://training.figleaf.com/courses/administering_coldfusion.cfm
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  http://training.figleaf.com/
 
  Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
  GSA Schedule, and provides the highest caliber vendor-authorized
  instruction at our training centers, online, or onsite.
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354315
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Hack - Further Information

2013-02-05 Thread James F

Upon further review of my server I have discovered several files were
compromised, dating back to January 2, 2013.  They appear in various places
in the /CFIDE folder.  Here is a list of the ones I found this morning:

C:\Inetpub\wwwroot\CFIDE\
adminapi\customtags\fusebox.cfm

C:\Inetpub\wwwroot\CFIDE\administrator\scheduler\scheduleedit.cfm

C:\Inetpub\wwwroot\CFIDE\administrator\security\cfrdspassword.cfm

C:\Inetpub\wwwroot\CFIDE\componentutils\Application.cfm

C:\Inetpub\wwwroot\CFIDE\componentutils\cfcexplorer.cfc

C:\Inetpub\wwwroot\CFIDE\scripts\ajax\ext\docs\resources\pkg.cfm

If your server was compromised, I suggest you do a search for any files
changed within the past 2 months and you will probably find them.

James F


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354316
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfftp with SSL (Coldfusion 8)

2012-12-20 Thread James Davis

Neither CF8 or CF9 support SFTP using CFFTP. 

However, like Russ mentioned, you can use some java libraries as an 
alternative. One project I worked on that required connecting to an sftp server 
we used the apache commons-net library (commons.apache.org/net) and it worked 
like a charm. Not nearly as simple as a cfftp tag, but once I got it working, 
it's been rock solid. Being an apache project, their documentation is pretty 
good, although geared towards a java dev, so you'll have to translate it into 
your cf code. 

Good luck!

James

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFWindow Timing Issue

2012-12-03 Thread James Steubing

I am incorporating CFWindow and coldfusion.window functions into my site and 
have them working very well except for one issue.  I would like to execute some 
javascript after the cfwindow fully opens but everything I am doing appears to 
execute after the popup appears but before the coldfusion page loads into the 
window.  

I have tried ajaxonload(), javascript onload, $('#docload').ready(function(), 
etc.

They all seem to execute before the actual end of the process.

Is there a way around this?  Any help on this would be greatly appreciated. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353343
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFWindow Timing Issue

2012-12-03 Thread James Steubing

 I am incorporating CFWindow and coldfusion.window functions into my 
 site and have them working very well except for one issue.  I would 
 like to execute some javascript after the cfwindow fully opens but 
 everything I am doing appears to execute after the popup appears but 
 before the coldfusion page loads into the window.  
 
 I have tried ajaxonload(), javascript onload, $('#docload').
 ready(function(), etc.
 
 They all seem to execute before the actual end of the process.
 
 Is there a way around this?  Any help on this would be greatly 
 appreciated. 

I solved the problem by using setTimeout(function(){ insert_javascript_here 
},0); from within the page I was loading in the popup.  Calling an external 
function was executing at the wrong time, but using setTimeout like this with a 
timeout of 0 milliseconds works like I needed it to.  Hope this helps someone 
someday. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353350
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9/Win2008 CFDocument/PDF Chinese characters not showing if wrapped with an HTML tag

2012-03-06 Thread James Dodge

 I believe you should wrap your data with cfprocessingdirective tag.

I tried cfprocessingdirective with the following pageencodings with no change 
in behavior: windows-1252, windows-950, windows-936, big5, utf-8.  Same thing 
happens - if I put any sort of html tag around the Chinese characters, they 
don't display in cfdocument's PDF output.  If I leave the characters unwrapped, 
they show in the PDF just fine.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF9/Win2008 CFDocument/PDF Chinese characters not showing if wrapped with an HTML tag

2012-03-06 Thread James Dodge

 I believe you should wrap your data with cfprocessingdirective tag.

I tried cfprocessingdirective with the following pageencodings with no change 
in behavior: windows-1252, windows-950, windows-936, big5, utf-8.  Same thing 
happens - if I put any sort of html tag around the Chinese characters, they 
don't display in cfdocument's PDF output.  If I leave the characters unwrapped, 
they show in the PDF just fine. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350274
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF9/Win2008 CFDocument/PDF Chinese characters not showing if wrapped with an HTML tag

2012-03-05 Thread James Dodge

Hi all.

CM9.  CFDocument.  PDF.  Chinese characters.  Ugh.  When first migrating from 
CM7 to CM9, producing a PDF document, via CFDocument, containing Chinese 
characters, the characters would not show in the PDF (though they showed just 
fine in HTML or FlashPaper), which seems to be a known issue.  From other 
resources online, about the only thing I could find was the suggestion to 
remove the Chinese fonts from the server system.  I removed the two (4, 
actually) ttc system fonts from the server.  Poof, they show up in the PDF - 
yay!  But this is not the end of the problems.  If I wrap any of the Chinese 
characters with ANY html tag - in this case I want b - they don't show in the 
PDF anymore.  I've tried b, css/style, setting the characters wanted to a 
variable and outputting it with tags in the variable and/or surrounded by tags 
- nothing.  Any ideas on how to get this working?

Fine:

#25105;#20497;#30332;#
29694;#20320;#30340;#30003;#35531;#34920;#26684;#26377;#21839;#38988;#65292;#35531;#23559;#20854;#26356;#27491;#20006;#37325;#26032;#25552;#20132;#32102;#25105;#20497;#23529;#26680;#12290;#35531;#22312;#20320;#30340;
brbr
#30003;#35531;#34920;#26684;#20839;#20316;#20197;#19979;#26356;#27491;#65306;

Not fine:

b
#25105;#20497;#30332;#29694;#20320;#30340;#30003;#35531;#34920;#26684;#26377;#21839;#38988;#65292;#35531;#23559;#20854;#26356;#27491;#20006;#37325;#26032;#25552;#20132;#32102;#25105;#20497;#23529;#26680;#12290;#35531;#22312;#20320;#30340;
brbr
#30003;#35531;#34920;#26684;#20839;#20316;#20197;#19979;#26356;#27491;#65306;
/b

TIA 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350232
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-03-01 Thread James Holmes

This is why we pair program. Eventually everyone on the team has seen each
bit of code in the app (or at least most of it) and when new people come
along they get to sit with someone who knows the app well and can reinforce
the design expressed in the tests. Regardless of skill level they can then
maintain the app, because face to face communication works better than
written documentation.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 1 March 2012 00:41, Bryan Stevenson br...@electricedgesystems.comwrote:


 Bingo Steve...well said!

 On Wed, 2012-02-29 at 08:25 -0500, Steve 'Cutter' Blades wrote:

  Beautiful sentiment, *if* you didn't inherit a 3500 template legacy
  application originally written on CF 4.
 
  Both (comments and TDD) have their place. Fact is, what is simple and
  clear and second nature for me is Greek to a noob, and I train those all
  of the time. Comments are for those who come behind, remembering that
  not all of them share my level of skill (or my preconceptions of what is
  right and wrong to do).



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-03-01 Thread James Holmes

I don't see why you care...

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 1 March 2012 22:30, Dave Watts dwa...@figleaf.com wrote:

  I just don't see why that's the hill you
 want to die on.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350176
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-03-01 Thread James Holmes

Read the tests.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 1 March 2012 22:33, Michael Stemle themanchic...@gmail.com wrote:


 So what do you do ten years later when nobody on the team was there when
 the code was written?




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350177
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-03-01 Thread James Holmes

That's misrepresenting the thread. This is more accurate:

Me: Don't use comments, use tests.
Cutter: Noobs can't read tests
Me: That's why we pair program.
Michael: What do *you* do if all the developers who worked on the project
are long gone?
You: Read the tests. (implication; I'm not a noob).

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 1 March 2012 22:49, Dave Watts dwa...@figleaf.com wrote:


   So what do you do ten years later when nobody on the team was there
 when
   the code was written?
 
  Read the tests.

 Wait a sec. Here's a summary of what's been posted.

 You: Don't use comments, use tests.
 Cutter, me: Comments can help those who come to the source code later
 in ways that tests may not.
 You: That's why we pair program.
 Michael: What if all the developers who worked on the project are long
 gone?
 You: Read the tests.

 Can you see why that's not a satisfactory answer to the people who
 disagree with you?

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350180
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-02-28 Thread James Holmes

Try TDD. The unit tests express the design for the code; comments are
therefore unnecessary.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 28 February 2012 22:04, Raymond Camden raymondcam...@gmail.com wrote:


 When you arrive in Heaven with all the perfect code,please send us a
 postcard. ;)

 On Tue, Feb 28, 2012 at 7:54 AM, Casey Dougall - Uber Website
 Solutions ca...@uberwebsitesolutions.com wrote:
 
  On Tue, Feb 28, 2012 at 8:16 AM, Michael Stemle themanchic...@gmail.com
 wrote:
 
  This is a pretty simple task to script, but why would one wish to remove
  all comments? That seems like a poor practice.
 
 
 
  because code should be self explanatory hahaha.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350133
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-02-28 Thread James Holmes

Really good tests and self explanatory code do exactly that. Any code that
isn't self explanatory is too complex and needs to be re-factored.

Code that's so obscure that it needs a comment is silliness.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 28 February 2012 23:32, Michael Stemle themanchic...@gmail.com wrote:


 This reminds me of the time that Ruby's developers told me that unit tests
 obsoleted debuggers. This is silliness. Until unit tests can convey
 developer intent, comments will remain useful.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: how deeply nested are your code comments?

2012-02-28 Thread James Holmes

Yes, I've seen code commented out with commented out code in it.

Steps to fix:

1) Commit to Git
2) Delete everything that's been commented out.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 29 February 2012 01:03, Michael Dinowitz mdino...@houseoffusion.comwrote:


 I know that we all remove unused code and don't comment it out. I know
 we all use best practices in commenting code.
 Lets assume you were working on someone elses application that did not
 do these things and had comments in their code comments. How deeply
 nested have you seen comments on average?
 Have you seen comments on code which has in turn been commented out
 leaving the comments as the second level nested rather than the first?
 Worse?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-02-28 Thread James Holmes

Those using comments to plan code probably don't have any tests. Tests are
essential to allow re-factoring with confidence; comments don't provide
that benefit. This is not a religious belief, it's  something that can be
demonstrated the first time you want to maintain a 1500 line file and all
you have are comments.

In TDD, the test is written first. It expresses the design for the code to
follow. When the code is then re-factored, it ensures the code still meets
the original design.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 29 February 2012 08:45, Michael Stemle themanchic...@gmail.com wrote:


 We are in disagreement. Some of us actually use comments as a way of
 planning and maintaining our code.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-02-28 Thread James Holmes

And TDD is the easiest way to cover the re-factoring necessary to prevent
1500 line files from turning up. It's also the easiest way to come up with
the good designs that are equally as necessary.

Dev shops who've implemented TDD can and do easily measure the improvement
in code quality scientifically. Indicators such as number of defects
discovered post-deployment (or even during development) are a tangible,
improvable measurement.

Seriously, instead of being offended, try reading more on Agile practices.
This stuff actually works and produces measurably better results
and measurably better value for your clients (which is what it's all about).

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 29 February 2012 09:48, Michael Stemle themanchic...@gmail.com wrote:


 In properly designed code you don't have 1500-line files. Now that I've
 made my ridiculous assertion can we please move on?

 This is just silly, and there is no actual reason behind your assertion,
 merely an arrogant assertion that you know how everyone else's applications
 are written, and that you have - at long last - discovered a unifying
 theory in computer science.

 Tests are great, useful, and absolutely vital to modern development
 practice... but they are a poor substitute for documentation or debuggers.

 --
 ~ Mike Stemle, Jr.

 On Feb 28, 2012, at 19:36, James Holmes james.hol...@gmail.com wrote:

 
  Those using comments to plan code probably don't have any tests. Tests
 are
  essential to allow re-factoring with confidence; comments don't provide
  that benefit. This is not a religious belief, it's  something that can be
  demonstrated the first time you want to maintain a 1500 line file and all
  you have are comments.
 
  In TDD, the test is written first. It expresses the design for the code
 to
  follow. When the code is then re-factored, it ensures the code still
 meets
  the original design.
 
  --
  Shu Ha Ri: Agile and .NET blog
  http://www.bifrost.com.au/
 
 
  On 29 February 2012 08:45, Michael Stemle themanchic...@gmail.com
 wrote:
 
 
  We are in disagreement. Some of us actually use comments as a way of
  planning and maintaining our code.
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Remove all CF comments

2012-02-28 Thread James Holmes

I should also have added, tests *are* the documentation.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 29 February 2012 09:48, Michael Stemle themanchic...@gmail.com wrote:


 Tests are great, useful, and absolutely vital to modern development
 practice... but they are a poor substitute for documentation or debuggers.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Session variables not working

2012-02-27 Thread James Holmes

Actually, a cfapplication tag will work fine outside of Application.cfm so
technically this isn't true. Of course it makes sense to use
Application.cfm or Application.cfc.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 28 February 2012 04:36, Russ Michaels r...@michaels.me.uk wrote:


 yes you must have an application.cfm/cfc in order to enable session
 variables.

 On Mon, Feb 27, 2012 at 8:28 PM, Rick Faircloth r...@whitestonemedia.com
 wrote:

 
  There's no application.cfc at this point...the only
  two pages involved are what's in this email.
 
  Is enabling session management in an application.cfc
  necessary for session management to work?
 
  As you can see below when I use:
 
  cfset session.name = 'rick'
 
  and then output that with:
 
  cfoutput#session.name#/cfoutput
 
  I get 'rick'...
 
  But that's on the same page.
 
  Would that work but not session variables between pages
  with session management being enabled in application.cfc?
 
  Rick
 
  -Original Message-
  From: Steve Milburn [mailto:scmilb...@gmail.com]
  Sent: Monday, February 27, 2012 3:18 PM
  To: cf-talk
  Subject: Re: Session variables not working
 
 
  Have you enabled session management in the application.cfc?
 
  On Mon, Feb 27, 2012 at 3:14 PM, Rick Faircloth
  r...@whitestonemedia.comwrote:
 
  
   It's been awhile since I used session variables,
   but this is simple.  Why won't this work?
  
   session-test.cfm
   
  
   cfset session.name = 'rick'
  
   cfoutput#session.name#/cfoutput
  
   cflocation url=session-test-2.cfm
  
  
   session-test-2.cfm
   --
  
   cfoutput#session.name#/cfoutput
  
  
   I get the error 'Element NAME is undefined in SESSION.'
  
   ???
  
   Session variables are specified for use in CFADMIN.
   Am I missing something REALLY simple or obvious?
  
   Rick
  
  
  
  
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF attack on a buddies server

2012-02-23 Thread James Holmes

This would confirm which patches are missing:

http://www.hackmycf.com/


--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 24 February 2012 02:46, Pete Freitag p...@foundeo.com wrote:


 On Wed, Feb 22, 2012 at 7:55 PM, Ras Tafari rastaf...@gmail.com wrote:

  any idea how they were able to get the file that ran into the cfide
  directory? and what might prevent that part?
  that's the most haunting part to him.  i said it was probably a
  windows exploit first... not sure tho.
 

 If they are running CF8 without security hotfixes then there is a really
 good chance that it was the FCKeditor vulnerability:
 http://www.adobe.com/support/security/bulletins/apsb09-09.html

 But there are also so many other things ways they could have done it. The
 bottom line is you want to make sure you have all security hotfixes in
 place, and then make sure everything is running with the least possible
 privilege. Otherwise its pretty easy to take control of your server!

 --
 Pete Freitag - Adobe Community Professional
 http://foundeo.com/ - ColdFusion Consulting  Products
 http://petefreitag.com/ - My Blog
 http://hackmycf.com - Is your ColdFusion Server Secure?


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350086
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFScript Book

2012-02-21 Thread James Holmes

Well, nobody's better off writing in Java, but C# would be an alternative.

On Wednesday, February 22, 2012, Russ Michaels wrote:


 cfscript to many defeats the who point of why they chose cf in the first
 place, because it was a html like easy to learn tag based language.
 When you go down the route of doing all your code in script, using OOP
 style coding, then surely you would just be better off writing directly in
 JAVA ?





-- 
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:350016
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: Eclipse RDS to VivioTech stuck at Contacting Server

2012-02-18 Thread James Holmes

My first guess is that the server's firewall rules are blocking RDP.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 18 February 2012 16:41, Michael E. Carluen mecarl...@gmail.com wrote:


 I am finally moving from Homesite to Eclipse. I installed
 Eclipse/CFEclipse/AdobeCF8Extension (with RDS) on both my Windows and Mac
 machines.

 Everything seems to work, except that when I try to RDS connect to my
 VivioTech server, it only displays the Connecting Server... icon, and
 never shows the server's file/directory tree.

 Any suggestions on where I should check to fix it?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349935
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: Eclipse RDS to VivioTech stuck at Contacting Server

2012-02-18 Thread James Holmes

Ah sorry, misread. RDS (not RDP) communicates via port 80, so that's not
likely the issue.

However, I might add that enabling RDS for a production server is an
incredibly bad idea.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 18 February 2012 16:48, James Holmes james.hol...@gmail.com wrote:

 My first guess is that the server's firewall rules are blocking RDP.

 --
 Shu Ha Ri: Agile and .NET blog
 http://www.bifrost.com.au/



 On 18 February 2012 16:41, Michael E. Carluen mecarl...@gmail.com wrote:


 I am finally moving from Homesite to Eclipse. I installed
 Eclipse/CFEclipse/AdobeCF8Extension (with RDS) on both my Windows and Mac
 machines.

 Everything seems to work, except that when I try to RDS connect to my
 VivioTech server, it only displays the Connecting Server... icon, and
 never shows the server's file/directory tree.

 Any suggestions on where I should check to fix it?




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349936
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Accessing the Application Scope of another App

2012-02-08 Thread James Holmes

Did you know you can just write a new cfapplication tag to swap to the
other app, delete the key and then swap back again with a subsequent
cfapplication tag?

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 9 February 2012 04:13, Brook Davies cft...@logiforms.com wrote:


 Hi,

 Can you guys tell me if this is bad practice or will lead to memory issues.
 I have a CF app that has the main app and an admin module, each with their
 own cfapplication, and application namepace. From within the admin app I
 need to clear some application scoped data in the main app.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349843
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New computer set up

2012-02-04 Thread James Holmes

Just email coldfusionbuil...@freeriatools.adobe.com and let them know
what's happened.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 5 February 2012 13:08, Steven Durette sdure...@prodigy.net wrote:


 Thanks for the idea, but I am a student and this is a
freeriatools.adobe.com installation (yes I am still a full time student).
So no online account. I still have the original email from adobe that I
installed it with before. I have the feeling it is one of those things that
you have to remove the serial number from the old computer, but it
completely died. No possibility of choosing to remove it from the old
computer.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Opinion: Abuse of session variables

2012-02-01 Thread James Holmes

Race conditions in session variables can only occur when two requests from
the same session execute concurrently. This is more likely with ajax
requests or framesets. Since everyone uses ajax requests these days (even
though no-one uses framesets any more), it is still an issue, as you say.
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 2 February 2012 05:53, Mike Chabot mcha...@gmail.com wrote:


 Race conditions are what I am referring to and they are a problem,
 even in CF9. Many developers either heard or read that the earlier
 problems with session variables have been fixed and that they no
 longer need to ever lock them, but this is not true.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349733
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: opencfsummit.org may have saved my job

2012-01-07 Thread James Holmes

As an aside, if a client wants to cut costs they can always go with Railo,
into which they can port CF code almost as-is.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 7 January 2012 20:39, Donna Bing bingdo...@ymail.com wrote:


 Hi all!

 I asked about this conference http://opencfsummit.org a year ago and the
 conversation kind of went off on various tangents:
 http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:62499 Anyway 
 I didn't end up getting to go because of a schedule conflict with a
 project we were launching - Im a contractor in northern virginia.

 But just hearing about a conference on open source coldfusion bought some
 time with our client who has been getting lobbied pretty heavily to cut
 costs by moving to php and drupal.  Anyway Im just wondering if others have
 had similar experiences and if anyone is planning on going.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349327
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: XML! Aaargh! How do I do this?

2012-01-01 Thread James Holmes

Try searching directly for the modelName:

cfset result = xmlSearch(xmllennox-products,//modelName)

Dump that result to see how to get the name.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 2 January 2012 09:18, Rick Faircloth r...@whitestonemedia.com wrote:

 At this point, all I'm really after is the modelName/text()


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349288
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: XML! Aaargh! How do I do this?

2012-01-01 Thread James Holmes

BTW, the issue with the existing code is this:

 xmllennox-products

CF thinks you are trying to do maths on xmllennox and products by
subtracting one from the other.


--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 2 January 2012 10:10, James Holmes james.hol...@gmail.com wrote:

 xmllennox-products


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349289
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: XML! Aaargh! How do I do this?

2011-12-30 Thread James Holmes

If you are just after products, you can dramatically simplify the code by
using xmlsearch() to get them with xpath instead of manually looping
multiple levels down.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 31 December 2011 08:50, Justin Scott leviat...@darktech.org wrote:


  Okay... I've worked this every way I can think
  of and, I admit it, I just don't get it.

 Hi Rick, replace your inner-most loop with the following.  It should
 get you going in the right direction.  It looks like there is another
 layer of sub-categories which needs to be accounted for:

 !--- Loop over the sub-categories ---
 cfloop from='1' to='#arrayLen(xmlProductContent.products.SubCategory)#'
 index='subCategoryCount'

  !--- Localize our current sub-category ---
  cfset thisSubCategory =
 xmlProductContent.products.SubCategory[subCategoryCount] /
  h2#thisSubCategory.SubCategoryName.xmlText#/h2

  !--- Loop over the products in this sub-category ---
  cfloop from=1 to=#arrayLen(thisSubCategory.Product)#
 index=productCount
!--- Localize our current product for easier access ---
cfset thisProduct = thisSubCategory.Product[productCount] /
!---cfdump var=#thisProduct# /---
p
  ID: #thisProduct.xmlAttributes.ID#br /
  Model Name: #thisProduct.ModelName.xmlText#br /
  Image: img src=#thisProduct.SmallImage.xmlText# /
/p
  /cfloop !--- Products ---

 /cfloop  !--- Sub-Categories ---


 -Justin Scott

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Converting scientific notation to pure numeric

2011-11-26 Thread James Holmes

Try removing the space between the E and the exponent, or replacing it with
+
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 26 November 2011 15:30, Mike Kear afpwebwo...@gmail.com wrote:


 I'm having a brain fade at the moment, or perhaps it's a senior
 moment.Hopefully someone here can help.An external device is
 sending data to my website in XML format, which my site processes and
 makes available to logged-in users.   It's worked fine for more than a
 year, but for the first time, we have a value that is calculated in
 the external device and has a recurring decimal value. So now
 instead of a simple value with 4 decimal places,  I'm dealing with a
 value like '9.09090909090909E 106'


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348871
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Adobe drops Flsh for mobile devices

2011-11-11 Thread James Holmes

Sure - on CF Community.

This is a technical mailing list, not Oprah.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 12 November 2011 08:16, Judah McAuley ju...@wiredotter.com wrote:


 I don't know, Wil, I think that the topic of tone and tenor of
 responses to mailing lists (empathy vs correctness in Rick's
 terminology) is an excellent discussion for a community to have.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348692
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF8 Flash Grid problem

2011-11-04 Thread Paul James

Hi, I've inherited a CF8 Flash grid in that is (now) just hanging and not 
retrieving any data.
It does use an onLoad Actionscript event, which I thought wasn't allowed in a 
Flash grid and I thought this might be at the root of it but it has been 
demonstrated on the original developer's machine.
It just doesn't behave on mine, or on our test or live environments.

Does anybody have any ideas about where I should look next?
I can post snippets of code or settings if required.
Any help would be greatly appreciated.
Thanks
Paul J

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348453
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF in the news

2011-10-21 Thread James Holmes

Either bad reporting or the politician involved is a lunatic.

How is the logging portion of ColdBox supposed to track all internet users'
activity?

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 21 October 2011 23:32, John M Bliss bliss.j...@gmail.com wrote:


 Interesting:

 http://www.businessinsider.com/eu-parliament-member-proposes-black-box-to-trace-citizens-web-history-2011-10

 --
 John Bliss - http://about.me/jbliss


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348291
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Shouldn't these statements work?

2011-10-15 Thread James Holmes

Also not a word.
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 15 October 2011 17:58, Russ Michaels r...@michaels.me.uk wrote:


 dictionaryophile


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348181
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfobject dotnet assembly

2011-10-15 Thread James Holmes

You can't create an instance of that class that way.
http://msdn.microsoft.com/en-us/library/microsoft.web.administration.sitecollection(v=vs.90).aspx
 says,

public sealed class SiteCollection :
ConfigurationElementCollectionBaseSite

This class is sealed and does not implement a public constructor. You can
access the SiteCollection class through the
Siteshttp://msdn.microsoft.com/en-us/library/microsoft.web.administration.servermanager.sites(v=vs.90).aspx
property
of the 
ServerManagerhttp://msdn.microsoft.com/en-us/library/microsoft.web.administration.servermanager(v=vs.90).aspx
 class.

Since it's not static, you need an instance, but since there's no public
constructor, you have to get that instance via ServerManager.Sites.

ServerManager does have a constructor and all the methods/properties you
need to get at the rest of the things you are trying to configure.

http://msdn.microsoft.com/en-us/library/microsoft.web.administration.servermanager_members(v=vs.90).aspx

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 15 October 2011 13:51, Akos Fortagh akos.fort...@yahoo.com wrote:

 Microsoft.Web.Administration.SiteCollection



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348182
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Amazingly annoying concurrent CFC variable issue

2011-10-15 Thread James Holmes

I'll bet you didn't var the query as well:

cfset var GetRecord = 
cfquery name=GetRecord datasource=#Application.AppDatasource#
SELECT RecordID,RecordTitle FROM Records
WHERE RecordID = cfqueryparam value=#arguments.RecordID#
cfsqltype=CF_SQL_NUMERIC
/cfquery

Using the local scope (as others have said) makes this less of a pain.


cfquery name=local.GetRecord ...

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 15 October 2011 23:46, Tavs Dalaa j...@dalaa.com wrote:




 Tried to Var and cflock, ie:

 cflock name=Lockname timeout=15 type=exclusive
cfset Var GetRecord =
 Application.Functions.GetRecordFromRecordID(arguments.RecordID)
 /cflock




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348189
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: encrypted files

2011-10-10 Thread James Holmes

Don't do anything else without your lawyer going over the original contract
under which the software was supplied. The original devs may be correct and
for all you know your current clients may be attempting to have you violate
copyright.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 10 October 2011 20:54, Akos Fortagh akos.fort...@yahoo.com wrote:


 hi everyone, any suggestion about this would be very much appreciated.
 I have been given some work to make some changes to an existing site and
 all the .cfm and .cfc files are encrypted.
 The original developers are REFUSING to supply us with the decrypted
 version even though the client says they own the site/pages which they paid
 big bucks for.
 The developers say yes the client does own the pages but only in encrypted
 format which to me means owning a car which has no body or engine.
 I've tried this tool
 http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetailextid=1007043but
  all files became 0KB with nothing in them.
 What can I(we) do?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:348034
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: detecting mobile devices

2011-10-04 Thread James Holmes

Yes: use WURFL.

This might be useful: http://cfwurfl.riaforge.org/

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 4 October 2011 22:20, Don danfar...@hotmail.com wrote:


 We have a requirement to 'detect mobile devices'.

 ... are there any recommendations.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347879
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: WSDL 404 Error

2011-09-24 Thread James Holmes

Back on our old CF servers (6 or 7, I can no longer remember) we needed to
create a mapping that matched the physical path to fix this issue.

So if our cfc was in http://mydomain.com/some_folder/hello.cfc, we needed to
create a CF admin mapping for /some_folder/  to the physical path.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 25 September 2011 06:19, Shannon Rhodes shan...@rhodesedge.com wrote:


 Right.  It can't find it.  That's my problem:  ColdFusion is supposed to
 create it automatically:

 ColdFusion automatically creates a WSDL file for any component referenced
 as a web service. For example, if you have a component named echo.cfc in
 your web root directory, you can view its corresponding WSDL file by
 requesting the component as follows: http://localhost/echo.cfc?wsdl;


 http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=webservices_19.html

 So folks, does anyone know what to do when ColdFusion fails to create the
 WSDL??


 If you can't take the WSDL URL for your web service and load it in a
 browser
 ON the server, CF can't load it either.
 
 The 404 from your CFHTTP call is a good indication that CF simply can't
 find
 it.
 
 
 .:.:.:.:.:.:.:.:.:.:.:.:.
 Bobby Hartsfield
 http://acoderslife.com
 http://cf4em.com
 
 
 
 
 Why would there be an issue resolving the domain?  CFM files work fine
 from
 the same directory when called via url.  Is there some other step to
 making
 a web service available that I'm missing here?

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347694
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Standard License

2011-09-23 Thread James Holmes

Have you considered Railo? Its pricing is really, really competitive.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 24 September 2011 01:45, Richard White rich...@j7is.co.uk wrote:


 Hi,

 Am i right in understanding that the only places to get CF9 Standard
 licenses are from Adobe or hosting companies?

 Our hosting company doesn't resell them and we looking for the most
 competitive pricing!



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347674
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Sessions failing due to multiple CFID / CFTOKEN cookies

2011-09-12 Thread James Skemp

Richard, did you ever get this resolved?

 We've begun experiencing the very same issue on our end (IE 8 on Win7).

 We're using one domain-level cookie on our site, but ColdFusion cookies are 
set specific to the sub-domain. We also only have one Web site on the server 
using CF.

 Clearing cookies works for some users, while others run into the issue again 
after some amount of time, after clearing their cookies.

James

 We're encountering the following issue with some percentage of IE 
 users (Definitely but not necessarily limited to IE8 8.0.7601.17514  
 windows 7).  Basically their SESSION is failing the same way it might 
 if they're cookies were disabled, however, we are able to set cookies 
 manually using CFCOOKIE.  After running several tests, we found that 
 the users request headers include 2 CFID and CFTOKEN cookies. [...] 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347410
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: *OT* CVS for NT

2011-09-09 Thread James Holmes

Consider Git with TortoiseGit as well. Git has made our lives better than
they were while using SVN.

--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 9 September 2011 21:51, Greg Morphis gmorp...@gmail.com wrote:


 Okay cool, I'll install SVN on our dev server and see how it goes, thanks
 for the information!


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347371
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Workstation recommendations

2011-09-07 Thread James Holmes

You know the hardware has absolutely nothing to do with getting a virus,
right?
--
Shu Ha Ri: Agile and .NET blog
http://www.bifrost.com.au/


On 8 September 2011 09:28, Peter Donahue pdonah...@satx.rr.com wrote:


 Good evening everyone,

 This past week must have been computer-workstation die-off or something. My
 wife's computer became infected with the PC Performance Virus. This thing
 is
 a nasty as it locked her out of many of her programs, caused a black screen
 to appear when the monitor was turned on and the computer booted in to
 Windows, messages from Twitter and God only knows where else to be
 displayed
 and wouldn't allow her to see any of her data files.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How do you compose your dev teams?

2011-09-03 Thread James Holmes

You mentioned that all of your team are remote workers,
right? Distributed Agile is painful. Latitude hurts and longitude kills.
This is really good advice:
http://agileinaflash.blogspot.com/2011/04/rules-for-distributed-teams.html

Agile is hard enough to introduce when everyone is in the same room. It's
going to be nearly impossible without a very experienced Agile coach for
your situation. My advice is get a good Agile consultant to help you work
out all of these issues (this person can start as the SCRUM master).

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 3 September 2011 08:12, Nathan Strutz str...@gmail.com wrote:


 Tariq,
 Very thoughtful response. I appreciate it!

 We haven't fully embraced Agile in our group. Mostly for the fact that it's
 a pain nobody wants to suffer, so we find ways to get around it. I guess
 that's where the scrum master role comes in. I don't know that we have
 anyone that forceful on the team. We probably have some who are forceful
 against it though. I like the idea of syncing up sprints between projects,
 so we all have the same release schedule - that would make it feel more
 like
 we are working at the same pace, same schedule and together.

 What did you have to do to make your team take the agile pill? Did you (or
 do you still) have any holdouts?


 nathan strutz
 [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]


 On Fri, Sep 2, 2011 at 3:24 PM, Tariq Ahmed ta...@dopejam.com wrote:

 
  So my question to the list is this: How do you organize your teams of
  developers successfully? Please let me know what you do, or what you
 have
  seen that actually works.
 
  Hi Nathan.
 
  I manage a team of 11 technical folks, and when I was promoted to
  management we had a similar challenge.
 
  Internal teams that build apps that support the business tend to get into
  this silo'd structure because what they're building has a specialized
  purpose, and as the business demands more of these specialized
 applications,
  it usually starts off with just one guy building it... and then they
 become
  the lone expert. With a heavy demand for change, the low hanging fruit it
 to
  use the guy who knows the app vs. risking someone unfamiliar with it
 who'll
  have to go through the learning curve.
 
  Management wise, it is a motivator to give people ownership.
 
  But, it is also a huge risk to have SPOKs (Single Points of Knowledge).
  Sure you can have knowledge bases, Yammer.com, IMs, Wikis, etc... and
 it's
  good to do that, but that's just information. It's only until you have a
  deep understanding of the domain/context are you able to leverage that
  information as knowledge.
 
  One technique I used was to maintain is a Knowledge Matrix of all our
  applications/features, I map out who knows what and what their strength
 is,
  and how critical/complex that feature is in order to calculate risk. I
 can
  then prioritize by risk, and make sure that other developers are getting
  exposure to these areas.
 
  Another highly successful thing we did was switching to Agile/Scrum
  development practices. Although you guys on a Visio chart are one team,
  you're functioning as independent one man teams.
 
  A Scrum practice you can start tomorrow are daily standups - from 10am to
  10:15am everyone stands up together and discusses what they did
 yesterday,
  what they're doing today, and if they're stuck on anything (in order to
  invite others to help). It's time limited, no additional conversation
  allowed - that can be done outside of that meeting, no sitting down and
  getting comfortable... the team needs to feel confident that it never
 ever
  goes beyond 15mins.
 
  It'll help promote some awareness of what everyone is doing and encourage
  some communication. But it won't be enough to solve the problem as no one
  will really know deeply what you're talking about unless they're very
  familiar with the application.
 
  So the next step would be to truly get the team functioning together
  cohesively by going full Agile. Everyone is working together on the same
  cycle, and although different applications, you're working together as if
 it
  were one project. Very short iterations of 2 to 4 weeks, requirements are
  broken down into small little pieces - the team picks who is working on
  what, but no one is limited to working on just their app.
 
  You can try to learn it yourself - but getting in an agile training
  organization like cPrime.com to give your company a 3 day onsite bootcamp
 on
  how the process works is the fastest way to make it happen.
 
  Hope that helps.
 
  Tariq Ahmed
  http://www.aftershox.com
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:347212
Subscription: 

Re: Problem with pound signs

2011-08-23 Thread James Holmes

Alternatively, set the the outgoing mail's failto address to a different
mailbox, so you know that all mail going to that box is a failure.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 23 August 2011 20:07, Russ Michaels r...@michaels.me.uk wrote:


 yes but auto responders and server delayed mails do not know that, so if
 you
 just consider all emails that come into thsi mailbox to be bounces you
 could
 be deleting legitimate users.

 On Tue, Aug 23, 2011 at 1:01 PM, matt busche mrbus...@gmail.com wrote:

 
  this is a no reply inbox, so there aren't any legitimate emails sitting
 in
  here.
 
 
  Deleting any message with reply or delay in the body is going to
  cause some valid messages to be lost because both words are in common
  usage.  Just a thought.
  
  
   DEL
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346960
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Developer edition not recognizing 9.01

2011-08-09 Thread James Holmes

Which executable did you run:

http://download.macromedia.com/pub/coldfusion/updates/901/ColdFusion_update_901_WWEJ_win.exe

or

http://download.macromedia.com/pub/coldfusion/updates/901/ColdFusion_update_901_WWEJ_win64.exe

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 10 August 2011 03:01, Doug Ford doug.e.f...@gmail.com wrote:


 Hi Folks -

 I am looking for some help in trying to figure out what the heck is
 happening with my CF 9 and why it's not recognizing the 9.01 upgrade.


 I am running this on a Win 7 Pro box,
 with Apache 2.2 running, and
 ColdFusion 9 Developer currently installed and running fine.

 I downloaded and installed the 9.01 update to get the S3 functionality,
 but CF Admin is not recognizing the update.

 I restarted services and even rebooted my machine, but CF does not
 recognize
 the .jar file in the Updates directory.

 I am not sure why it's not working.

 Any and all help would be appreciated.

 Thanks,

 Doug

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346636
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Method Opinion

2011-08-01 Thread James Holmes

Avoid the delimited list idea; it always bites you on the arse eventually.
Use the first option.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 1 August 2011 21:46, Robert Harrison rob...@austin-williams.com wrote:


 Curious as to what you all think is the best method for something.  I have
 a table that contains a list of polls. I have a user table that contains a
 list of possible persons who may complete the poll (it requires log-in
 access). I want to present a poll only one time so users can't complete a
 poll more than once, so I need to maintain a list of users who have
 completed a poll.

 I see two ways I can do this:

 1.  I can create a cross reference table that keeps users ID and Poll IDs
 (of users/polls completed), then use an SQL NOT IN to select polls for users
 who are NOT IN the completed poll table.

 2. I can add a field in the POLLs record and put a delimited list of User
 IDs who've complete the poll, then not select any polls where the COMPLETED
 field contains the user ID of a given user.

 There are about 1,500  users. There will probably be not more than 10 polls
 going on at any one time. Poll history will be maintained for about 60 days.
 Thus, there may be thousands of COMPLETED records.

 Given that, is one of these methods better than the other, and if so, why?

 Should I use a delimited list in the POLL record, or should I use a
 cross-reference table with a join and NOT IN select... or should I do
 something different.

 Thanks


 Robert B. Harrison
 Director of Interactive Services
 Austin  Williams
 125 Kennedy Drive, Suite 100
 Hauppauge NY 11788
 P : 631.231.6600 Ext. 119
 F : 631.434.7022
 http://www.austin-williams.com

 Great advertising can't be either/or.  It must be .

 Plug in to our blog: AW Unplugged
 http://www.austin-williams.com/unplugged



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346419
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Method Opinion

2011-08-01 Thread James Holmes

And I was almost going to say, but Claude will post that a delimited list
is a great idea to save you the trouble.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 2 August 2011 02:43,  wrote:


 A cross table is definitely THE standard way to do it.

 Although it is not considered good practice by database ayatollah,
 a delimited list may be an option when a reasonable number of possible
 values is involved.
 there are several advantages:
 1º it is simpler to update in the database in case of modifications (only
 one field in one query);
 2º the list is return directly in a list of checkbox input fields.
 3º the select query returns directly a list, I'm still looking for a way to
 get directly a list in a query using a cross table.
 4º CF is especially well equiped for list manipulation.
 However you have to make sure that the number of possible values cannot get
 too large in the future.

 For instance I use this technique for registration to activities in a
 convention.
 Participants will never attend thousands of activities, even in a 15 days
 convention.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346440
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Method Opinion

2011-08-01 Thread James Holmes

I'm not sure how your religious prejudices come into this, but whatever.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 2 August 2011 08:08,  wrote:


 I just hate ayatollahs


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346443
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Join us for RIACon 2011!

2011-07-29 Thread James Archy

Join us for RIACon 2011!
The Rich Internet Application Conference, August 6th and 7th � Rockville, MD

 

http://www.riacon.com

RIACon is the DC area's newest Rich Internet application conference. This event 
will focus on developers interested in ColdFusion, Flex/ActionScript, 
JavaScript, and related technologies, while featuring 3 tracks and 30 sessions 
by some of today's most influential experts in the community. RIAcon's goal is 
to help developers network with fellow industry professionals and expose them 
to the best content and most up to date skills used in ColdFusion, Flex, AIR 
and JavaScript development.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346397
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Its ColdFusion's Fault

2011-07-26 Thread James Holmes

I guess when Google+ finally destroys Facebook, the same open source tools
he's glorifying will have caused that failure. Regardless, Myspace hasn't
run on CF for a long time (as suggested, they migrated to .NET via
BlueDragon ages ago).

Myspace failed because it was full of ugly sites with content no-one wanted
to read.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 26 July 2011 18:00, Kevin Pepperman chorno...@gmail.com wrote:


 Just to add to that-- ColdFusion is responsible for the success of Bank of
 America as well as many other successful websites (well one of the reasons
 anyway ;-)

 Didn't MySpace convert to .NET at some point?

 --
 /Kevin Pepperman

 *Never memorize what you can look up in books*.
 --Albert_Einstein


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346328
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Passing a Ref_cursor to Oracle Stored procedure

2011-07-22 Thread James Holmes

The short answer is that you can't do this from CF.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 23 July 2011 00:09, Dave Smith cyl...@yahoo.com wrote:

 Has anyone ever passed a cf_sql_refcursor as an IN param to an oracle stored 
 proc?  I am getting the following error when I try it:

 [Macromedia][Oracle JDBC Driver]Unable to determine the type of the specified 
 object.

 The proc works when called from another procedure w/ in Oracle but not from 
 CF.

 cfstoredproc datasource=#application.dsn# procedure=#insertProc#
        cfprocparam type=in cfsqltype=cf_sql_refcursor 
 value=#qUpdatesIDs#
 /cfstoredproc

 qUpdatesIDs = a query o

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346316
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Iphone app

2011-06-29 Thread James Holmes

One free alternative is Sencha Touch
(http://www.sencha.com/products/touch/), but I'd probably try to stick
with jQuery Mobile too.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 29 June 2011 22:47, Al Musella, DPM muse...@virtualtrials.com wrote:

 Hi
  I need to write either an app for the iphone or at least a website
 that looks like a app.. I have been looking around for toolkits and
 there are an overwhelming number of choices that I don't know where to start.
 I need:
 1. easy coldfusion integration (so based on html not coco)
 2. Preferably usable on a pc..  I have access to a mac but not
 easily.  I can use it to compile and upload the end result if needed.
 3. easy:)
 4. Cheap or free. (It is for a nonprofit)

 I have been playing around with jquery mobile. I love jquery but the
 jquery mobile docs suck..

 Any ideas?
 Al




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345892
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF vs. Java Web Developer

2011-06-25 Thread James Holmes

Anyone who wants to fix the problem of distracted programmers in the
office should try Pair Programming.

http://www.extremeprogramming.org/rules/pair.html

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 25 June 2011 02:10, Aaron Rouse aaron.ro...@gmail.com wrote:

 I am far less distracted when working from home.  I typically will get more
 done in 8 hours at home than I probably get done in at least 16 hours in one
 of the offices I work out of.  I actually feel like I goof off more at home
 then when in an office but can't say I ever tried measuring such things.

 It is not just an issue of if someone is capable of efficiently working from
 home.  Also an issue of if the people managing them can efficiently manage
 people they might never or hardly see in person.  Some people just have to
 see others in person.  What I see a lot for employees who work from home is
 they seem to get passed up for promotions and raises more so than the ones
 that work in the office.

 On Thu, Jun 23, 2011 at 8:49 PM, Sean Corfield seancorfi...@gmail.comwrote:


 On Thu, Jun 23, 2011 at 4:34 AM, Russ Michaels r...@michaels.me.uk
 wrote:
  working from home doesn't work for a lot of people though, there are too
  many distractions

 There are too many distractions _for you_ but WFH works very well for
 a lot of organizations. World Singles, for example, is completely
 distributed - management, sales  marketing, customer service,
 engineering - everyone works from home. There are certainly some
 _people_ for which WFH doesn't work :)


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345659
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: application.cfm

2011-06-25 Thread James Holmes

No.

Happy now?

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 26 June 2011 07:19,   wrote:
 My question was is it possible to get around this.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: So to flog the preverbial undead horse

2011-06-14 Thread James Holmes

As far as I can tell, when a larger entity swaps away from CF it's
generally in favour of C# on .NET. My employer and a few of the larger
dev shops I talked with have been making this move.

If you're spending time on .NET, I suggest getting into MVC3 and
sticking with C#.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 14 June 2011 23:45, Integration Developer tyrsbl...@gmail.com wrote:

 In my spare time I am doing mobile development with unity3d and C#(Mono). I 
 have a large SQL dev background I can fall on with SSIS and SSRS. But I 
 wanted a frank gut check from the troops on where we are at and what our 
 future looks like.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345277
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Debugging SOAP

2011-05-24 Thread James Holmes

One issue the OP faces is that the traffic is HTTPS. The request will
have to change to HTTP before anything useful will show up.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 24 May 2011 16:14, Jochem van Dieten joch...@gmail.com wrote:

 On Tue, May 24, 2011 at 9:55 AM, Robert Rhodes wrote:
 Hello Jochem.  I checked out Wireshark, but did not see a way for it to show
 me the XML I was sending.  Am I missing something?  It looks like Wireshark
 is a packet capture tool?

 Yes, it is a packet capture tool. It allows you to drill down in the
 results until you reach the SOAP data in the HTTP payload. Just keep
 expanding the results until you reach it.

 Jochem

 --
 Jochem van Dieten
 http://jochem.vandieten.net/

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344859
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Debugging SOAP

2011-05-24 Thread James Holmes

SSL is designed to stop you doing exactly that.

You would need to send your request to a proxy that has a spoofed
certificate, all of which is a pain to organise.

On Tuesday, 24 May 2011, Robert Rhodes rrhode...@gmail.com wrote:

 Yes, that is the case.  And all my attempts so for to view the https xml and
 response have failed.  This is probably because there is some part of this
 that I am just not getting.


-- 
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.or

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344862
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Debugging SOAP

2011-05-24 Thread James Holmes

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 24 May 2011 22:07, Brook Davies cft...@logiforms.com wrote:

 I use Fiddler (http://www.fiddler2.com/Fiddler2/version.asp ) for debugging
 web service calls and it can dump the raw XML request/response and allows
 you to inspect HTTPS traffic...
 Brook

 -Original Message-
 From: Robert Rhodes [mailto:rrhode...@gmail.com]
 Sent: May-24-11 1:00 AM
 To: cf-talk
 Subject: Re: Debugging SOAP


 Hi Pete.  I did try soapui, and it looked like it should do what I wanted,
 but I could not figure out how to make it work so that I could capture the
 outgoing soap and responses between my dev server and the remote server.

 On Mon, May 23, 2011 at 11:04 AM, Pete Freitag p...@foundeo.com wrote:


 SoapUI is a great tool for debugging soap: http://www.soapui.org/ If
 you give it a WSDL url it can generate stubs for testing the remote
 service and lets you see and edit all aspects of the soap request and
 response.


 --
 Pete Freitag - Adobe Community Professional http://foundeo.com/ -
 ColdFusion Consulting  Products http://petefreitag.com/ - My Blog
 http://hackmycf.com - Is your ColdFusion Server Secure?




 On Sun, May 22, 2011 at 7:16 PM, Robert Rhodes rrhode...@gmail.com
 wrote:
 
  Hello everyone. I appreciate the help you have given me recently.
  Now I
 have
  a new challenge, and I am sure some of you have faced it before.
 
  I have written an application that gets and puts data to a SOAP
  .asmx web service running on a windows server across the internet.
  I am using cfinvoke.
 
  All my gets are working fine.  I am getting the expected data.
  However
 all
  my puts are failing, and the guy at the other end says my soap xml
  must
 be
  wrong.  Hey, it might be, but I have not been able to come up with a
  way
 to
  see it.
 
  I did a google search and found Fiddler and Charles, and installed
  them
 both
  on the dev server which is running my application.  But no luck.
  Each program seems to monitor the traffic between my browser and
  local dev server, but I need to monitor traffic betwen dev server
  and the other
 server
  across the internet (on a non-standard ssl port).
 
  Would one of you kind souls tell me how to configure one of these
 programs
  (or some other program) so I can see my SOAP going out and see the
 response?
 
  RR
 
 
 





 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344867
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Debugging SOAP

2011-05-24 Thread James Holmes

Yes, the fiddler proxy is worth a shot.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 24 May 2011 22:07, Brook Davies cft...@logiforms.com wrote:

 I use Fiddler (http://www.fiddler2.com/Fiddler2/version.asp ) for debugging
 web service calls and it can dump the raw XML request/response and allows
 you to inspect HTTPS traffic...

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344868
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SQL Quandary

2011-05-22 Thread James Holmes

Why not just add the subquery in as part of the where clause for each
type of record you want?

On Monday, 23 May 2011, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote:

 Thanks Russ, I agree, I can't see a way around it using CASE or JOINS.


-- 
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344829
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SQL Quandary

2011-05-22 Thread James Holmes

It can be.

Taking your last example:

IF (SELECT checkProjected FROM tbl_Params WHERE siteID = 1) = 1
select projected from tbl_stockItems where projected  10
else
select projected from tbl_stockItems where projected 10


This can be written as:

select projected from tbl_stockItems
where
(
  (SELECT checkProjected FROM tbl_Params WHERE siteID = 1) = 1 AND
projected  10
)
OR
(
  (SELECT checkProjected FROM tbl_Params WHERE siteID = 1)  1 AND
projected  10
)

Since the subquery clause can only be true for one of the AND clauses,
only one set of results will be returned.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 23 May 2011 09:29, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote:

 because the intention is not a simple WHERE search expression.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344832
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-19 Thread James Holmes

1) It's 90k minified
2) Those 10 lines will inevitably be 1 line of jQuery
3) Those 10 lines will work in your favourite browser; then you find
that IE x has some quirk you didn't count on, etc
4) You and Claude S will best friends, I can tell
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 19 May 2011 14:42, Andrei Kondrashev adiab...@cs.com wrote:

 Carrying 300K of JS code (min) just to do something that takes 10 lines (or 
 less) of JS code is nonsense.  Not even speaking about its terrible 
 performance.

jQuery + infinit

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344639
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-17 Thread James Holmes

Yes; ignore everything in that list and use jQuery.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 17 May 2011 23:50, Darius Florczyk dar...@cybermash.com wrote:

 Hi, I need to add AJAX functionality in a new project and wondering if anyone 
 had any recommendations for the most robust, stable choice. I will be using 
 it with CF7 but need for it to be easily portable to Railo. The need is to 
 easily load CMS content in to DIV layers depending on the users selection and 
 posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344574
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Ack! CF9 pages not serving pages on IIS7.5 (404.3 error)

2011-05-12 Thread James Holmes

On 13 May 2011 13:08, Robert Rhodes rrhode...@gmail.com wrote:

 There just has to be a decent workaround for this problem.

There is:

http://projects.apache.org/projects/http_server.html

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344486
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating a DB from MS SQL 2000 into MySQL latest release

2011-05-11 Thread James Holmes

Works for me.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 11 May 2011 11:26, Dave Watts dwa...@figleaf.com wrote:

 You could always both swap to a real database:

 http://www.oracle.com/technetwork/database/express-edition/overview/index.html

 Your DB2 link is broken.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344439
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating a DB from MS SQL 2000 into MySQL latest release

2011-05-11 Thread James Holmes

No. Not all DB's are equal just because they all run SQL.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 11 May 2011 10:45, Maureen mamamaur...@gmail.com wrote:

 They are all real databases.  The majority of  the problems that
 website databases have are caused by badly written code, inefficient
 queries and poor performance tuning, and have nothing to do with the
 database platfor

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:30
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating a DB from MS SQL 2000 into MySQL latest release

2011-05-10 Thread James Holmes

Or like this:

http://www.google.com.au/search?sourceid=chromeie=UTF-8q=ms+sql+express+corrupt+tables

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 10 May 2011 22:31, Russ Michaels r...@michaels.me.uk wrote:

 The common problems and issues can be googled, like this for example.
 http://www.google.co.uk/search?q=mysql+corrupted+tablesie=utf-8oe=utf-8aq=trls=org.mozilla:en-GB:officialclient=firefox-a

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344404
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating a DB from MS SQL 2000 into MySQL latest release

2011-05-10 Thread James Holmes

You could always both swap to a real database:

http://www.oracle.com/technetwork/database/express-edition/overview/index.html

:-O

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 11 May 2011 08:51, Russ Michaels r...@michaels.me.uk wrote:

 lol, of course not :-)
 We will have to agree to disagree.

 I will stick with my super ninja bionic kitten, you stick with your
 extinct Jurassic fossil :-)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344423
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Bless cfqueryparam - helped defend against a persistent hack attempt

2011-05-02 Thread James Holmes

Sure, your MS Access DB doesn't cache execution plans, but real databases do.

On Tuesday, 3 May 2011,   wrote:

  cfqueryparam creates bound sql parameters, which improve query performance.

 This is purely theoretical, in practice, the gain in performance is 
 neglectible.
 I prefer have a query to take 11 ms and see the values submitted in case of 
 error, than having the same query take 10 ms, but no information in errors.

-- 
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Any secure data transfer methods avaiable for very large files?

2011-04-24 Thread James Holmes

It doesn't have to be expensive:

http://openvpn.net/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org


On 24 April 2011 10:25, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote:
 It is unlikely to be a cheap solution, but it will have the potential to be
 a robust and secure solution.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343952
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread James Holmes

Yes. Vist the URL for the test site in your browser and view the cert
details. Go to the certification path and you'll see it's a chained
cert with two CAs in the path. You need to export both of them from
your browser and then bring both into the CA keystore with keytool.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 12 April 2011 15:55, Duncan duncan.lox...@gmail.com wrote:


 Could this be some new type of SSL certificate and I actually need the root
 CA cert? If so, how do I go about finding this?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: GeoTrust SSL importing cert to server store doesn't help

2011-04-12 Thread James Holmes

Just the two CAs from Geotrust will be fine. The intermediate cert was
issued in 2010, so it's very likely that it's not in your CA store.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 12 April 2011 16:08, Duncan duncan.lox...@gmail.com wrote:

 Hi James - Thanks for the quick response!

 Yes.  Is that a yes because its a new fancy certificate, or I need all the
 certs?

 When I look at the hierarchy, there are 3 each with different serials.

 Do I need just the two geotrust ones, or the securepay one too?



 On Tue, Apr 12, 2011 at 6:01 PM, James Holmes james.hol...@gmail.comwrote:


 Yes. Vist the URL for the test site in your browser and view the cert
 details. Go to the certification path and you'll see it's a chained
 cert with two CAs in the path. You need to export both of them from
 your browser and then bring both into the CA keystore with keytool.

 --
 WSS4CF - WS-Security framework for CF
 http://wss4cf.riaforge.org/



 On 12 April 2011 15:55, Duncan duncan.lox...@gmail.com wrote:

 
  Could this be some new type of SSL certificate and I actually need the
 root
  CA cert? If so, how do I go about finding this?



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343671
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: I hate CFScript and I'm willing to pay for a CFScript -- CFtag parser

2011-04-09 Thread James Holmes

That is the greatest thing ever.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 9 April 2011 04:55, Judah McAuley ju...@wiredotter.com wrote:

 Start here, Michael:
 http://www.pcworld.com/article/224722/new_commodore_64_is_finally_herefor_real.html

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343632
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 9.01 updater - the nightmare relived

2011-03-25 Thread James Holmes

On 25 March 2011 23:48, Dan Baughman dan.baugh...@gmail.com wrote:
 The tag handler application does not have a setter for the attribute
 datasource specified in the Tag Library Descriptor.

 Does anyone have the final solution/fix for this?

http://www.getrailo.org/

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: coldfusion service stop rsponding or CPU goes up tp 100%

2011-03-22 Thread James Holmes

Your perm size is way too small for a heap of 4GB (assuming you use a
good portion of that heap).

Check the logs for error messages just before the service locks up and
you'll probably see out of memory errors. If so, make the perm size
larger.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 22 March 2011 20:17, tom vallee tom...@numerique.ca wrote:

 i upgrade to the latest JDK version and the coldfusion stop responding this 
 night at 3 am

 it doesn't solve my problems
Are you stuck on that JDK version for any reason? The first thing I'd do
would be to upgrade it. It is 20 updates behind.

Next, have you checked anything like jconsole to see what is going on when
this spike happens?

.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


HI,

i have a few problems with one of my server :

Win2008 R2
Coldufsion 8.0.1 x64
Java 1.6.0_04

Dual Xeon Quad Core
32gb RAM

Sometimes the CPU goes up to 100% and I need to restart the coldfusion
service and everything goes back normal

Sometimes, coldfusion stop responding, if i type my website in internet
explorer, it's not responsing but IIS is responding

i think it might be the JVM settings,

here are my jvm settings

java.args=-server -Xmx4096m -Xms4096m -Dsun.io.useCanonCaches=false
-XX:PermSize=64m -Xincgc -XX:NewSize=48m -XX:SurvivorRatio=4
-XX:MaxPermSize=192m -Dcoldfusion.rootDir={application.home}/../
-Dcoldfusion.libPath={application.home}/../lib
-Dcoldfusion.classPath={application.home}/../lib/updates,{application.home}/
../lib,{application.home}/../gateway/lib/,{application.home}/../wwwroot/WEB-
INF/flex/jars,{application.home}/../wwwroot/WEB-INF/cfform/jars,C:\\Program
Files (x86)\\Efflare\\ImageCR3Service\\imagecr3.jar


help!

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343196
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion 9 Enterprise Features

2011-03-21 Thread James Holmes

http://www.adobe.com/products/coldfusion/editions/

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 21 March 2011 17:15, Richard White rich...@j7is.co.uk wrote:

 Hi,

 I am assuming it means i am getting a bit rusty at searching the web, but i 
 cannot seem to find anywhere that details the enterprise-only features. We 
 only need to run a single instance on a server but am trying to work out 
 whether we need standard or enterprise license...

 Would appreciate any links that details the difference

 thanks

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Application.applicaitonName not avialable in a webservice.

2011-03-12 Thread James Holmes

On 12 March 2011 06:51, Bobby Hartsfield bo...@acoderslife.com wrote:

 The problem I have run into is that application scope (and thus
 application.applicationName) is not available from within the webservice.

Why not? Is the webservice CFC not part of the same directory
structure that has your Application.cfc at its root?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342950
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Database Lookup - Possible with CF?

2011-03-03 Thread James Holmes

(Apologies for going off topic)

Forget MVC2 - MVC3 is far more flexible and has made a lot of
improvements. In the long run, getting up to date with MVC3 now is
going to be worth it.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 3 March 2011 19:11, Ian Vaughan i.vaug...@neath-porttalbot.gov.uk wrote:

 Thanks - Will take a look at it and evaluate how it compares with doing
 it with ASP.net webforms or ASP.net MVC2 as its going to be a learning
 curve whatever language I do it in, I suppose I'm leaning toward ASP as
 this has a greater lifespan compared to CF.

 The reason of my asking in CF was if it was relatively easy to do I
 would have gone that route but if there is a similar learning curve to
 do it in VB then this would be a more scaleable and supported path

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342714
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Storing decimal parts of a second cfqueryparam

2011-02-28 Thread James Holmes

You need to set the scale attribute in the cfqueryparam tag.

http://cfquickdocs.com/cf9/?getDoc=cfqueryparam

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 1 March 2011 10:43, Pete Ruckelshaus pruckelsh...@gmail.com wrote:

 Primarily because it's easier and more accurate to sort on a single overall
 value (inches).

 Of course, if it were up to me, we'd be using metric :)

 On Mon, Feb 28, 2011 at 7:12 PM, Roger Austin raust...@nc.rr.com wrote:


 On 2/26/2011 10:08 PM, Pete Ruckelshaus wrote:
 
  OK, just not my night with decimal values.
 
  Trying to store distances (for throwing and jumping events), which are
  measured in feet and inches.  In order to maintain proper sort order, I
  decided to convert feet and inches (with fractions of an inch as decimal
  value) to inches with fractions of an inch as decimal values.
 
  Again, database is SQL Server 2008, and I'm using cfqueryparam.  Data
 type
  for the column in question is decimal(18, 4), and I'm using
 CF_SQL_DECIMAL
  as the cfsqltype value.  I can see in the debug output that the decimal
  portion of the value is part of the value to be inserted, for instance,
  825.25, but looking at the database table, the stored value is  825.

 Why not store two fields; one for feet and one for inches. That seems
 like the easiest way to do it other than just use one float for both.
 The decimal issue is probably more a database issue than a CF issue.



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342631
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Auto Suggest CFC Path

2011-02-18 Thread Evik James

I am trying to use the autosuggest parameter in a cfinput.  I can't quite 
figure out how to bind the autosuggest to the CFC. 

I have tried:   

autosuggest=cfc:users.autoSuggestUsers() 
autosuggest=cfc:cfc.users.autoSuggestUsers() 
autosuggest=cfc.users.autoSuggestUsers() 
autosuggest=...cfc.users.autoSuggestUsers() 

In my application.cfc file, I refer to my cfc like this:

ro = structNew();   
ro.users = createObject('component', 'traumasystem.tcda.cfc.users');

The error I get is... The specified CFC users could not be found.

Can you help?




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342434
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfquery returning 0 in scientific notation in CF 8 but not CF 7

2011-02-16 Thread James Skemp

Greetings.

In one of our systems we're upgrading from ColdFusion 7 to CF 8.

While testing a piece of functionality we were getting 0 returned as 0E-8 for a 
query using a stored procedure. If the value is greater than 0, there's no 
issue.

Updating the procedure to cast the returned value as a numeric resolved the 
issue, but since this functionality is working fine against CF 7 ...

We're using MS SQL, and the data source settings in ColdFusion Administrator 
are consistent between 7 and 8.

Google and searching these forums isn't helping much, other than suggesting 
it's coming out of MSSQL, but ... does anyone have any additional background on 
why we're seeing this? Do we need to evaluate each of our procedures/calls to 
verify that values are coming back correctly and cast if not, or ...?

Thanks!

~James 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342334
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfquery returning 0 in scientific notation in CF 8 but not CF 7

2011-02-16 Thread James Skemp

Thanks for the clarification questions, Mike.

What is the data type of the field in SQL Server?

numeric(10,2)

 If you run the query in Management Studio, what do you see for that value?

0.00

 How are you outputting the value in CF to see the 0E-8 number?

In a tossed error it was displayed in the stack trace and a cfdump of the 
returned information from the initial cfquery call against the sp showed it 
there as well. When it works, it's stored to a variable before being passed to 
SQL via another query.

 What tag are you using to call the stored procedure in ColdFusion?

cfquery

 Which version of MS SQL Server are you using?

64 bit, 2005 Standard edition SP3


~James 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342337
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfquery returning 0 in scientific notation in CF 8 but not CF 7

2011-02-16 Thread James Skemp

It occurred to me that I should first ask if this issue is causing any
problems, or if it is only an unexpected way to format a number? For example
0.00 = 0E-8. They are both the same number regardless of how they are
displayed.

Unfortunately, it is causing an issue in this particular instance (and is in 
fact why we had a stack trace to see that 0E-8 was being returned) :)

It's legacy code, so with some work we could certainly resolve the issue, but, 
as a legacy *third-party* solution, my concern is it's going to cause issues in 
other parts of the system. Assuming this is expected behavior in CF8/we haven't 
flipped the appropriate 'switch.'


For clarification, which number has the unexpected formatting, the value
pulled directly out of a database table and placed in the cfquery record
set, the variable that is being assigned the value, or both?

Probably the former - ColdFusion's interpretation of the value from SQL / the 
value in the cfquery record set, since the resolution in this particular case 
is to cast the returned value to a particular type in the procedure.

But, another way to resolve the issue is to check the formatting when setting 
the variable, so I suppose one could argue both. The immediate problem is 
because of the latter, but the root cause is the former.

In short, 0E-8 is populated in the proc's cfquery result set, a variable is 
being set with 0E-8, and another query is failing because it doesn't care for 
0E-8 being passed.

Hopefully that last bit didn't muddy the waters ... :)

~James 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342341
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfquery returning 0 in scientific notation in CF 8 but not CF 7

2011-02-16 Thread James Skemp

Thanks Mike.

Opened up the procedure and gave it a look. It looks like there's some 
multiplication and division going on, which is resulting in a change. Relevant 
part for one of the returned values:

MemberPrice = 
(case when qp.productid is null then p.MemberPrice
else
case when qp.MemberPrice is null then 
p.MemberPrice*((100-qp.memberdiscountpercent)/100)
else qp.MemberPrice
end
end)

Running this query on ColdFusion 7.('current') against MS SQL returns (again, 
cfdump of the cfquery, and the same thing as SQL Studio returns):

0.

On CF 8, we instead get:

0E-8

So, updated CF 8 SQL Driver perhaps? Either way, unless there's an 
Administrator change, this does mean we'll have to evaluate code since, right 
or wrong, CF 7 doesn't make this change.

Thanks!

~James 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342349
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfquery returning 0 in scientific notation in CF 8 but not CF 7

2011-02-16 Thread James Skemp

Looks like you might need to revise the procedure to CAST the calculated 
value back to Numeric(10,2) before returning it?
Carl

Yeah, which is what we're doing for this one to resolve the issue.

But since this is a legacy, third-party, application ... it worries me the 
number of places this may occur. And of course, as we all know, there's usually 
one place that gets missed in these types of situations ... :D

I was hoping it was a configuration option that we missed, but ...

I don't suppose someone with a similar environment could test against CF 9, 
could they?

Thanks Carl!

~James


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342354
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Re: Change in ColdFusion management

2011-02-15 Thread James Holmes

Well, here's Adam's promotion:

http://www.adrocknaphobia.com/post.cfm/i-lvl-d-up-flash-builder-product-manager

I'll leave it to others to decide if they are in the wrong job.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 16 February 2011 02:17, Russ Michaels r...@michaels.me.uk wrote:

 Crikey, well if Adobe promote staff for bad behavior then we are all in the
 wrong job :-)


 On Tue, Feb 15, 2011 at 6:09 PM, Brian Kotek brian...@gmail.com wrote:


 lol. Maybe you should wait until you see what poor replaced Adam is doing
 next. (hint: it's not what a company does with an employee they are upset
 with or replacing).

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342312
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Re: Change in ColdFusion management

2011-02-14 Thread James Holmes

For the many CF customers outside of the US, these positions have
always been offshore. Time to join the rest of us on the planet.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 15 February 2011 11:52,  cft...@fusionlink.com wrote:

 I did use the word offshore,

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342258
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Mobile Editor: What's the best one?

2011-02-09 Thread James Edmunds

I did a preso at my AUG on this last year, here is a link to our AUG web
site page about it, which includes the PDF of the preso.

http://www.acadiana-aug.org/index.cfm/2010/1/28/How-to-Rescue-Your-Website-from-your-iPhone

FYI this shows using FTP on the Go included editor, which I think has even
had some improvements in the intervening time since this preso was done.

Hope this helps,

James

James Edmunds, Manager
Acadiana Adobe User Group
Lafayette, LA

On Tue, Feb 8, 2011 at 10:51 AM, Matthew Lowrey rid...@gmail.com wrote:


 Hello all:

 I just got my first android (tMobile myTouch 4G) and I'm excited to dive
 into doing things on my phone I would normally do on my laptop.  One of them
 is building webpages or developing home projects.

 First question I'd be asking is, why the heck would you want to do
 developing on your phone?!
  1. I have three kids and I rarely get to sit down and work on my laptop
  2. Laptop is 2007 and recently the #2 RAM slot died, so I'm running at
 half speed
  3. It's a new toy! :)

 With that said... I've searched the Android Market and there's a few
 editors (nothing for ColdFusion code that I know of) but I want to get
 something that I can play around with and wanted to know if anyone of you
 have a This is the best one to use... app or hear say about an app.

 So far it looks like touchqode looks like the best one and it's for free.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:342051
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is Coldfusion losing it biggest asset?

2011-01-14 Thread James Holmes

Not many, in my employer's case. Now I'm a .NET developer.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 14 January 2011 22:06, Eric Roberts ow...@threeravensconsulting.com wrote:

 How many times does a company have to
 look for CF devs and not find any before they move on to a different
 language?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340862
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is Coldfusion losing it biggest asset?

2011-01-13 Thread James Holmes

Railo.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/

On 14 January 2011 09:03, Charlie Griefer charlie.grie...@gmail.com wrote:
 Sure, but PHP, Ruby and other languages don't have an up front cost
 associated with them.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340807
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Accessing Specific CF8 Instances

2011-01-05 Thread James Holmes

You can access the administrator for a particular instance using the
internal JRun webserver port. If you want to get to your apps on a
particular instance you'll have to manipulate cookies (assuming you're
using sticky sessions) so that the session ID starts with the the
correct prefix for the instance you want.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 6 January 2011 08:13, Richard  Steele r...@photoeye.com wrote:

 Is there a way to access particular instances that are running on a load 
 balanced CF8 Enterprise server? If so, how is that done?

 thanks in advance.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340492
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 Administrator's Debugging Options

2011-01-04 Thread James Holmes

Visitors to your production server should never see the raw exception
information, robust or not. Debugging should also be turned off on a
production server.

Create a custom exception handler template that either displays to you
the necessary info based on IP address or alternatively sends to you
via email the relevant info. This way visitors get only what you
decide they should get.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 4 January 2011 20:31, Richard  Steele r...@photoeye.com wrote:

 I don't understand how the Debugging options with a specific IP Address works.

 If I check the Enable Robust Exception information on a production server (we 
 have no development server) and include only a specific IP Address, our 
 website still shows the Robust Exception information to ALL visitors to the 
 website. Obviously this is not acceptable.

 If the Enable Robust Exception information is disabled and Enable Request 
 Debugging Output is enabled, what information is then shown only to that 
 specific IP address?

 Is there a way to show the Robust Exception information to only the 
 developer's IP address without having a development server?

 Thanks in advance.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340364
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


  1   2   3   4   5   6   7   8   9   10   >