Re: Data Encryption

2011-04-04 Thread Richard White
basically our security entails a VPN between the database server and software server, firewalls, application firewalls, an SSL between the client machine and software server, and all of the usual CF security... however there are rules in some countries that medical data must be encrypted in

cferror tag with type exception not working

2011-04-04 Thread Jay Pandya
In my local when i am using cferror tag with type as exception then it is showing proper error message etc but in production it is not working.type as request work there.But my goal of sending email to admin when error occurs is not full filling.I have searched on Google and every forum,though

RE: CF9 cfexecute issues.

2011-04-04 Thread Rick Faircloth
Hi, Michael... Have you eliminated the possibility that some of the files you working with on this run through are causing problems? Did you run these files through CF8 to see if they work there? I haven't worked with converting images avi mpg, so I have no experience with the process, but

Re: DoD CAC authentication

2011-04-04 Thread mikey graziano
One way... CFSET usersCert = GetPageContext().getRequest().getAttribute(javax. servlet.request.X509Certificate)/ CFSET usersEmail = usersCert[1].getSubjectAlternativeNames() / Are there a way to select the part of the usersEmail data as email? I have tried but there are 4 different

SOT: jquery(ui) menu

2011-04-04 Thread John M Bliss
What's your current favorite approach/plugin to build jquery / jqueryui menus...the kind where you hover over/click on page element X and some clickable options appear below X. This: http://plugins.jquery.com/plugin-tags/menu has numerous plugins listed but no sort by popularity / rating. --

RE: SOT: jquery(ui) menu

2011-04-04 Thread Arsalan Tariq Keen
This one is really good for the hover menu. http://net.tutsplus.com/tutorials/html-css-techniques/how-to-build-a-kick-butt-css3-mega-drop-down-menu/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+nettuts+%28Nettuts%2B%29utm_content=Netvibes if you tweak it a bit with jQuery, you can

Re: Session Variable question

2011-04-04 Thread Richard White
cfset cfT = cookie.CFTOKEN / cfset cfI = cookie.CFID / cfcookie name=CFTOKEN value=cfT / cfcookie name=CFIDE value=cfI / i Recently found that this does not work in chrome but was unable to find a reason or a solution ~|

Re: SOT: jquery(ui) menu

2011-04-04 Thread Jerry Barnes
I use click menu. http://p.sohei.org/jquery-plugins/clickmenu/ I like it since by default it does not fly out on a mouse over. No modification necessary. J - Ninety percent of politicians give the other ten percent a bad reputation. - Henry Kissinger Politicians are people who, when they

Re: CF9 cfexecute issues.

2011-04-04 Thread Russ Michaels
are the batch files actually being executed and doing their job? Are any errors occurring in the batch file ? you need to do some tests to determine what is causing the problem. Make a simple batch file that does something basic like an echo command or somehting, and see if that works, If not,

Re: cferror tag with type exception not working

2011-04-04 Thread Russ Michaels
trying setting the type to any and then it will show you the error and you will be able to see what the error type is, maybe a different error is occurring and it is not an exception type. On Mon, Apr 4, 2011 at 10:35 AM, Jay Pandya jaypandy...@gmail.com wrote: In my local when i am using

Re: Button

2011-04-04 Thread Russ Michaels
using an IFRAME is how we did AJAX and Web Services before it was called AJAX and Web Services, it is the same thing really :-) On Mon, Apr 4, 2011 at 2:37 AM, Rick Faircloth r...@whitestonemedia.comwrote: Ok... glad you got it figured out! -Original Message- From: Rick T

Re: Data Encryption

2011-04-04 Thread Cameron Childress
On Mon, Apr 4, 2011 at 5:16 AM, Richard White rich...@j7is.co.uk wrote: basically our security entails a VPN between the database server and software server, firewalls, application firewalls, an SSL between the client machine and software server, and all of the usual CF security... however

RE: Button

2011-04-04 Thread Rick Faircloth
Russ... I certainly don't claim to be an expert on AJAX and certainly not web services (since I've never written a true web service (SOAP or REST or whatever...). But the only time I use an iframe for faux ajax (generic use of the term, meaning only that data is transferred without the refresh

Re: Button

2011-04-04 Thread Dave Watts
I just want to make sure my understanding is correct in that true AJAX doesn't involve an iFrame and the only time one need make use of an iFrame for ajax is when a file has to be transferred. Note, that I said the only time an iFrame is needed is for the transfer of a file, not that it

RE: Button

2011-04-04 Thread Rick Faircloth
Ok... thanks for verifying, Dave! -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Monday, April 04, 2011 12:54 PM To: cf-talk Subject: Re: Button I just want to make sure my understanding is correct in that true AJAX doesn't involve an iFrame and the only time

Re: cferror tag with type exception not working

2011-04-04 Thread Jay Pandya
trying setting the type to any and then it will show you the error and you will be able to see what the error type is, maybe a different error is occurring and it is not an exception type. I all ready tried those things.If i put the type as exception and exception as any though,i am not getting

Re: cferror tag with type exception not working

2011-04-04 Thread Jay Pandya
trying setting the type to any and then it will show you the error and you will be able to see what the error type is, maybe a different error is occurring and it is not an exception type. All ready tried with exception as any.But when i am using type as exception it is showing normal error

Re: cferror tag with type exception not working

2011-04-04 Thread Russ Michaels
are you sure the error template you are pointing to exists at the path specified in the CFERROR tag, and does not contain any errors itself ? what happens if you browse directly to the error template ? On Mon, Apr 4, 2011 at 7:06 PM, Jay Pandya jaypandy...@gmail.com wrote: trying setting the

Re: Button

2011-04-04 Thread Judah McAuley
And while there isn't anything inherently bad about iframes, people considering that route should look into the potential security issues involved. Browsers have really tightened up their security around hidden iframes, cross domain http communication, cross domain cookies, etc. Once again, not

Re: Button

2011-04-04 Thread Russ Michaels
security measures that block cross domain communication would also block XmlHttpRequest as well, otherwise it would be pointless. On Mon, Apr 4, 2011 at 7:20 PM, Judah McAuley ju...@wiredotter.com wrote: And while there isn't anything inherently bad about iframes, people considering that

Re: Button

2011-04-04 Thread Judah McAuley
On Mon, Apr 4, 2011 at 11:45 AM, Russ Michaels r...@michaels.me.uk wrote: security measures that block cross domain communication would also block XmlHttpRequest as well, otherwise it would be pointless. Yes, in general, but with XmlHttpRequest you can get around some of the restrictions by

Re: Button

2011-04-04 Thread Rick T
I simply put the variables in the URL of the Iframe SRC. Simple and effective. The data is not sensitive so no problems. security measures that block cross domain communication would also block XmlHttpRequest as well, otherwise it would be pointless. Yes, in general, but with

Solr Errors

2011-04-04 Thread Mary Jo Sminkey
Has anyone else seen these kinds of errors? I keep getting them on CF9.01 when I run cfindex tags to add new data to a Solr collection. org.apache.solr.common.SolrException: Error_opening_new_searcher_exceeded_limit_of_maxWarmingSearchers4_try_again_later

Re: Solr Errors

2011-04-04 Thread Raymond Camden
Interesting. It almost sounds like a load issue. Was the site under heavy load? On Mon, Apr 4, 2011 at 4:09 PM, Mary Jo Sminkey mary...@cfwebstore.com wrote: Has anyone else seen these kinds of errors? I keep getting them on CF9.01 when I run cfindex tags to add new data to a Solr

RE: Solr Errors

2011-04-04 Thread Mark A. Kruger
Mary Jo, These are options you can set in the INI files of Solr - along with standard JVM options. If you have a high traffic solr install you will need to fine tune it to run according to the amount of traffic you have. -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105