Re: qBrowser Released

2005-12-01 Thread wolf2k5
Hi, I tried qBrowser on ColdFusion MX 6.1 (with Updater) and got the following error: The CFML compiler encountered an unexpected java.lang.NullPointerException exception. The reason for this was: Occurred at:prejava.lang.NullPointerException at

Re: Code reuse ideas?

2005-12-01 Thread mac jordan
On 30/11/05, Aaron Rouse [EMAIL PROTECTED] wrote: I know of a couple of in house frameworks that do just this. One for example uses a lot of different custom tags for its CMS and that CMS is used for 20+ sites. Instead of copying that pack of tags to each site they all point to a common

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
Yes, this app currently only supports cf 7 or better. I do hope to try to support 6.1 in it soon, but right now it relies on the results attribute of the cfquery tag to show you some of the information. Without that, you basically would just be getting results, no information at all. But I do

RE: Code reuse ideas?

2005-12-01 Thread Russ
We try to put all our shared code into CFC's, and call them (with different parameters if nessessary) from our sites. The cfc's are very flexible and allow for different functionality from the same method based on different (optional) parameters. -Original Message- From: mac jordan

RE: REReplace

2005-12-01 Thread Ben Nadel
I just tried it and it works for me. Can you post the arguments.body for us to take a look at the mail body? ... Ben Nadel Web Developer Nylon Technology 6 West 14th Street New York, NY 10011 212.691.1134 212.691.3477 fax www.nylontechnology.com Vote for Pedro -Original

RE: strange CFFILE output behavior

2005-12-01 Thread Ben Nadel
My guess is that the code has new line and carriage return characters. These wouldn't show up on output (as they are not valid HTML directives), but they would show up in the CFFILE output as they are valid within a text document. When you write to the file try replacing them out:

RE: Structure arguments and Duplicate

2005-12-01 Thread Ben Nadel
I think it depends on if you will be making modification to the passed structure. For instance, I pass a DSN struct around a lot, but that will never change. Its only a reference struct, so I don't feel the need to duplicate it. However, if I am passing a struct that may be altered within

RE: Shopping Cart Coupon facility

2005-12-01 Thread Mark Fuqua
Hey there, Sorry to sound so hack-like, but how about putting a code in the coupon (coupon = jer456 or jer897 for a coupon meant for a jersey) that specifies what the coupon specifically applies to, or a generic code which specifies no required product (coupon = gen345 for generic). Then do a

RE: Shopping Cart Coupon facility

2005-12-01 Thread Mark Fuqua
Sorry to sound so hack-like, but how about putting a code in the coupon (coupon = jer456 or jer897 for a coupon meant for a jersey) that specifies what the coupon specifically applies to, with a generic code which specifies no required product (coupon = gen345 for generic). Then if the coupon is

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
Hey guys, heres a question. I have been working on allowing qBrowser to work on cfmx 6.1. I am getting the version of cf from server.coldfusion.productVersion. And then I am doing a cfif statement to say if you are using 6.1, do this query without the results attribute, and otherwise, (I have

Passing SOAP header

2005-12-01 Thread Ken
Hi. I need to pass a SOAP header to a commercial webservice at the time of invoking it. I know I can use the AddSOAPRequestHeader function, but I am not sure how to do it. Th header that I need to pass to it is: soap:Header tns:AuthenticationHeader id=h_id1 SessionID

RE: qBrowser Released

2005-12-01 Thread Bobby Hartsfield
Would it be possible (or even easier) to make two versions? Or two versions in one where as 6.1 code is in one folder and 7 in another. Then you could either read the version yourself and choose the folder to run from or let the user change a setting somewhere to specify their version and let

RE: strange CFFILE output behavior

2005-12-01 Thread Andy Matthews
Try replacing chr(10) and chr(13)...one or both of those should take care of you. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
Yes, thats a possibility, but adds a layer of complexity for sure. Im going to try this cfinclude thing first, but if that doesnt work then yes, I will have to do something like that. Also, realize that some of the features will be limited in 6.1 over the 7 version. That results attribute was

Admin settings for CFMX server

2005-12-01 Thread Mike Kear
I have a client with a dead CFMX6.1 server, and we need to set everything up on a new box.Windows is running on the server, but nothing else. We can't run the CFADmin on the old box, so we can't get at the admin settings that way, is there a file anywhere that is stored on the server that

Re: Admin settings for CFMX server

2005-12-01 Thread Andy Allan
Grab the neo*.xml files from the lib directory and plonk them on the new box as that's where all the settings are saved. Andy On 01/12/05, Mike Kear [EMAIL PROTECTED] wrote: I have a client with a dead CFMX6.1 server, and we need to set everything up on a new box.Windows is running on the

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
Well, ive gotten it to work, sorta. I have at least gotten past the results attribute problem. But now im having some trouble with the history. Was there much changes in the xml handling from 6.1 to 7? I dont remember that, and I guess if so, I just glided right over it... On 12/1/05, Ryan

Re: Admin settings for CFMX server

2005-12-01 Thread John Beynon
and remember to restart the services after you'v dropped them there else the changes won't be picked up, jb. On 12/1/05, Andy Allan [EMAIL PROTECTED] wrote: Grab the neo*.xml files from the lib directory and plonk them on the new box as that's where all the settings are saved. Andy On

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
okay, I think ive got it now. Is there someone that is running 6.1 in development that wants to try this out before I release it publicly? Bobby or anyone else? If so, email me off list to [EMAIL PROTECTED] and Ill pack it up and send it to you. On 12/1/05, Ryan Guill [EMAIL PROTECTED] wrote:

Re: Code reuse ideas?

2005-12-01 Thread Phill B
Sounds like this is the best thing to do. I'm pretty positive that I will have to abstract my code a little bit more though. So does every one put the shared code outside the web root to prevent any direct calls to it? On 12/1/05, Russ [EMAIL PROTECTED] wrote: We try to put all our shared code

Re: SOAP headers in MX 6.1

2005-12-01 Thread Ken
Hi Robert. Can you tell me how you passed the header after you upgraded to MX7? I am planning to upgrade too. Thanks, K On 11/30/05, Robert Munn [EMAIL PROTECTED] wrote: There is a 6.1 patch that adds SOAP header support, but I never got it to work properly and eventually just upgraded to 7

Re: Shopping Cart Coupon facility

2005-12-01 Thread Ken Ferguson
There's not enough information here to tell you EXACTLY what to do. However, an overview of what you need to do follows. You need to alter your coupon creation code to add the ability to select products or groups of products, depending on your organization, to which the coupon will apply. Then

RE: Code reuse ideas?

2005-12-01 Thread Dawson, Michael
We are working on a new intranet that will locate the CFCs, custom tags and includes, outside the web root just for this purpose. MACR's best-practice document shows a common directory structure that is the base of our directory structure:

RE: CF7 and 64-bit CPUs

2005-12-01 Thread Nat Papovich
Dave, you may not have gotten as far actually attempting to download the 64-bit JVM, but prior to 1.5, it's only available for Itanium, not AMD64. I am running AMD64. NAT From: Dave Watts [EMAIL PROTECTED] Date: Wed, 30 Nov 2005 16:48:35 -0500 You mean supports as officially supported,

Re: Admin settings for CFMX server

2005-12-01 Thread Stephen Moretti
John Beynon wrote: and remember to restart the services after you'v dropped them there else the changes won't be picked up, In fact, stop the server before you drop the files in, because otherwise CF may say settings from memory into the files making a mess of the settings you copied over.

CFCACHE

2005-12-01 Thread Brian Peddle
If I have a page with 5 includes lets say and I use CFCACHE on one include will it attempt to cache all the stuff below it or just that one include file? To let you know what I am doing in a header file we have to CFHTTP to another site to pull some content that a client is always changing. We

RE: CFCACHE

2005-12-01 Thread Snake
CFCAHE will only cache entire pages. If you want to cache portions of a page try cf_turbocache -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: 01 December 2005 17:10 To: CF-Talk Subject: CFCACHE If I have a page with 5 includes lets say and I use CFCACHE on one

Re: Code reuse ideas?

2005-12-01 Thread Phill B
I don't know how I missed that page. Thanks Michael On 12/1/05, Dawson, Michael [EMAIL PROTECTED] wrote: We are working on a new intranet that will locate the CFCs, custom tags and includes, outside the web root just for this purpose. MACR's best-practice document shows a common directory

Converting ASP class to CFC

2005-12-01 Thread Robert Everland III
I have a couple questions about doing this. How would I emulate this behavior? Set MyTabControl = New TabControl MyTabControl.TabType = TabTypeDynamic MyTabControl.TabSelected = DefaultTab MyTabControl.ControlImagePath = ../tabcontrol/ MyTabControl.ControlScriptPath = ../tabcontrol/ I am

OT: Humor for the day

2005-12-01 Thread Bobby Hartsfield
http://www.scaryideas.com/project.jpg ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.362 / Virus Database: 267.13.10/189 - Release Date: 11/30/2005

Bar Code Scanners ColdFusion

2005-12-01 Thread jonese
Anyone have experiance with tying in a bar code scanner and an online inventory app in CF? Basicaly i have a prospect who is looking to use the speed of a bar code reader to fill orders for there online shop. don't really know where to begin so any help would be awesome. jonese

CFXML issue

2005-12-01 Thread Ken
I am getting this error message while trying to use CFXML: The prefix tns for element tns:AuthenticationHeader is not bound. My code is: cfxml variable=creds tns:AuthenticationHeader id=h_id1 SessionID xsi:type=xsd:string/SessionID /tns:AuthenticationHeader /cfxml Any ideas? Thanks, K

RE: Bar Code Scanners ColdFusion

2005-12-01 Thread Burns, John D
This has been asked multiple times on the list. You can search the archives for details. Short answer is that all the barcode reader will do is fill in a textbox just like a keyboard can. Your app functions the same, it just saves the user from having to type a barcode. They just focus on the

RE: CFXML issue

2005-12-01 Thread Adrian Lynch
Don't you have to declare the namespace tns in the root node? Ade -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: 01 December 2005 18:52 To: CF-Talk Subject: CFXML issue I am getting this error message while trying to use CFXML: The prefix tns for element

RE: Converting ASP class to CFC

2005-12-01 Thread Ben Nadel
It depends on how you want to access the variables. If they are public, use the THIS scope. If they are private, use the VARIABLES scope and use Get/Set methods. Example: cfcomponent Displayname=tabcontroller Output=no Hint=Handles tab controller functionaliy cffunction

Re: Bar Code Scanners ColdFusion

2005-12-01 Thread Anthony Prato
Most bar code scanners are HID devices and act like a keyboard. They scan the bar code and output it's contents. Ours allows for different options and we have it configured to output a tab after scanning so a javascript event can be triggered. Anthony On 12/1/05, jonese [EMAIL PROTECTED] wrote:

Re: Converting ASP class to CFC

2005-12-01 Thread Chris Stoner
There is no reason you cannot do it exactly this way: cfscript myTabControl = createObject(component,path.to.TabControl); myTabControl.TabType = TabTypeDynamic; myTabControl.TabSelected = DefaultTab; myTabControl.ControlImagePath = ../tabcontrol/;

Re: OT: Humor for the day

2005-12-01 Thread Claude Schneegans
Gee, I remember seing this image on the wall at my University Computer Center, in 1970 or so ;-) ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours

RE: Bar Code Scanners ColdFusion

2005-12-01 Thread Ian Skinner
Yes and no. Feel free to contact me off line. There are many important questions here. The biggest and broadest is What do you mean 'Use a scanner to speed up the process'. Basically are they going to be using some kind of internet aware device to scan the barcodes and have some process

Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Hello there... I've been kicking around ideas of how to keep a user's session 'alive' once they get logged in on a site. The scenario is a common one... An admin logs into the backend tools to add something. They sit on a form typing in a long, long news article or something When they are

Re: CFXML issue

2005-12-01 Thread Ken
Hi Ade. Actually no. I am trying to create this to pass it as a header for a soap request. My complete code looks like this: cfprocessingdirective suppresswhitespace=Yes cfcontent type=text/xml; charset=utf-16 cfxml variable=creds tns:AuthenticationHeader id=h_id1 SessionID

Re: Bar Code Scanners ColdFusion

2005-12-01 Thread Sam Farmer
Our registration system prints a bar code on the back of attendees name badges. Attendees can then let exhibitors scan their barcode to get all their contact information. We use TBarCode software to create the bar code (it produces an image that we put in a web page). There are also fonts that

Re: Keeping a session alive

2005-12-01 Thread Ryan Guill
Ive got a js routine that does just this. Basically you set it to a minute less than your session timeout. If it expires, it reloads the page they are on. Just dont want to use it with any pages that you post to. Let me know if you want it. On 12/1/05, Bobby Hartsfield [EMAIL PROTECTED]

RE: Keeping a session alive

2005-12-01 Thread Mike Klostermeyer
so if they are in the middle of typing War and Peace in a form field when the JS kicks off, they lose it all? Mike -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 1:22 PM To: CF-Talk Subject: Re: Keeping a session alive Ive got a js

Re: Keeping a session alive

2005-12-01 Thread Ryan Guill
Yeah, but with a 2 hours sessiontimeout, they would have to be doing exactly that, writing a novel. Also, after less than an hour is left (meaning they have already taken an hour), it counts down in the status bar, telling them how long they have in minutes. After a minute or less is left, it

Re: Bar Code Scanners ColdFusion

2005-12-01 Thread jonese
that's what i thought but wanted confirmation. jonese On 12/1/05, Burns, John D [EMAIL PROTECTED] wrote: This has been asked multiple times on the list. You can search the archives for details. Short answer is that all the barcode reader will do is fill in a textbox just like a keyboard can.

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Only if the session dies before they submit it. In that case, they are sent to the login form and the forms post is lost. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Mike Klostermeyer [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Humor for the day

2005-12-01 Thread Kevin Aebig
LOL... that's the best OT to ever hit the list. !K -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: December 1, 2005 12:32 PM To: CF-Talk Subject: OT: Humor for the day http://www.scaryideas.com/project.jpg ...:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Very much appreciated. I really was just curious of what others thought about the idea... pros/cons... that sort of thing. I'd enjoy writing something like this too much to have it handed to me :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message-

RE: Converting ASP class to CFC

2005-12-01 Thread Russ
You do mean use the var keyword instead of using the variables scope? The variables scope is, I believe, a class wide scope, and the only way to limit the scope to a single method is to use the var keyword (or arguments scope) -Original Message- From: Chris Stoner [mailto:[EMAIL

RE: OT: Humor for the day

2005-12-01 Thread Bobby Hartsfield
In that case... why didn’t you share it? Pshhh greedy lol ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 2:09 PM To: CF-Talk Subject: Re: OT: Humor for the

Re: Keeping a session alive

2005-12-01 Thread Ryan Guill
LOL, thats fine too. If you decide you want something to work from though, just let me know. On 12/1/05, Bobby Hartsfield [EMAIL PROTECTED] wrote: Very much appreciated. I really was just curious of what others thought about the idea... pros/cons... that sort of thing. I'd enjoy writing

RE: Keeping a session alive

2005-12-01 Thread Russ
Why not use a frame or an iframe to load a page on the server in the background? This way they won't have to lose the current session (or their war and peace novel). And maybe it's possible to use ajax for this? -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent:

Re: FREE Homesite/CF Studio CFC VTML Generator

2005-12-01 Thread Douglas Knudsen
wow! jamming! Usualy I use this in oracle for sequences. First I have a sequence created called say seq_myseq. Then for table foo an insert would look like INSERT INTO foo (pk, col1, col2) VALUES (seq_myseq.nextval, 'data1','data2') I suppose if you gave a choice for this in your wizard, you

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Like I said in the original post, both are options I've thought of but if you've got any pros or cons on either I'd love to hear them (other than the obvious of course... I'm not against forcing users to enable JS on the backend at all) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: qBrowser Released

2005-12-01 Thread Ryan Guill
Alright guys, the time has come. qBrowser now has cfmx 6.1 support, the ability to not pull in all of your datasources, but you specify exactly which ones it has access to, a few new sql restriction possibilities, htmleditformat() has been added to the results view, a couple of bug fixes, and the

RE: Keeping a session alive

2005-12-01 Thread Russ
Well if you use an iframe, you can set it to a page that reloads every few seconds (minutes). No javascript needed, just META REFRESH. Same with Frame. But Frame would require you to build your site using frames (yuck). I would really love an AJAX implementation. I believe AJAX posts cookies

RE: Shopping Cart Coupon facility

2005-12-01 Thread Mike | NZSolutions Ltd
Hey thanks guys, I can see what I need to do. mike -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Friday, 2 December 2005 4:40 a.m. To: CF-Talk Subject: Re: Shopping Cart Coupon facility There's not enough information here to tell you EXACTLY what to do.

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Yeah, yuck on the frames. The httprequest leaves much more room for creativity as well. Thanks for the input ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:27 PM To:

CFC style question (for UI CFCs)

2005-12-01 Thread Gaulin, Mark
Hi I'm just starting to play with creating CFCs for UI components and I have a question about style. Is it better/more convenient/more maintainable/more readable to use output=true in your CFC methods (so the html goes right into the output), or to use output=false and have the method return a

RE: CFCACHE

2005-12-01 Thread Brian Peddle
As an FYI I ended up using this tag http://www.electricsheep.co.nz/products/customtags/view.cfm?name=cf_cache And it has worked perfectly. -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 12:10 PM To: CF-Talk Subject: CFCACHE If I have

RE: Keeping a session alive

2005-12-01 Thread Dawson, Michael
If you code your pages correctly, you can still have the form submitted to its final destination. Let me try to describe this: 1. User logs in and session is created. 2. User types long form, needs a smoke break and takes off for a two-hour lunch. 3. The session times out. 4. The user returns

RE: CFC style question (for UI CFCs)

2005-12-01 Thread Dawson, Michael
Not that you *can't* output directly from CFCs, but I know many people will direct you against that practice. Many people tend to wrap business logic, functions, etc within CFC methods. Then, they will use custom tags for the display of the content. The custom tags will use CFCs to get their

Re: Converting ASP class to CFC

2005-12-01 Thread Chris Stoner
No, I meant using the variables scope as that will persist it for the length of the object as a private property. My intention was not to limit the variable to a single method (to protect against race conditions/collisions), but to encapsulate it within the object in a protected/private state.

Re: Keeping a session alive

2005-12-01 Thread Ryan Guill
How would you force a post on re-authentication? On 12/1/05, Dawson, Michael [EMAIL PROTECTED] wrote: If you code your pages correctly, you can still have the form submitted to its final destination. Let me try to describe this: 1. User logs in and session is created. 2. User types long

Re: CFC style question (for UI CFCs)

2005-12-01 Thread Will Tomlinson
I like outputting directly myself. Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Yeah, it sounds like it would work (for the most part) but it would probably have to be stored in a session of its own and used to populate the form again since the form scope would have to keep 'posting' to the next page in the login process to keep it alive until the end. I can't think of a

Re: CFC style question (for UI CFCs)

2005-12-01 Thread Ken Ferguson
As I often say, I like doing what fits the specific project best. Consitency is more important to me. If I'm going to avoid output from cfc's in a project, I'll avoid it consistently... --Ferg Will Tomlinson wrote: I like outputting directly myself. Will

RE: Keeping a session alive

2005-12-01 Thread Russ
Why are you thinking so complicated? A simple 1x1 pixel iframe that goes to a refresh.cfm page should do the trick. And the page can be refreshed using javascript or meta refresh without affecting the main page that the user is working on. -Original Message- From: Bobby Hartsfield

Re: OT: Humor for the day

2005-12-01 Thread Claude Schneegans
In that case... why didn’t you share it? Pshhh greedy lol I did, but by that time, the only way was to pin on the wall,... then came Internet. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any

RE: Keeping a session alive

2005-12-01 Thread Ben Nadel
Maybe I missed something earlier in the thread, but why not just make the session time out longer, like a Day, or 4 hours. Why go though all this trouble when a long session timeout would accomplish the same thing?? ... Ben Nadel Web Developer Nylon Technology 6 West 14th

RE: OT: Humor for the day

2005-12-01 Thread Munson, Jacob
In that case... why didn't you share it? Pshhh greedy lol I did, but by that time, the only way was to pin on the wall,... then came Internet. I pinned it on my cubicle wall, that's a good one! :-D This transmission may contain information that is privileged, confidential and/or exempt

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
1) I absolutely REFUSE to use a frame or Iframe whatsoever. 2) It wouldn’t allow for seamlessly 'alerting' the user about a session that I might not be able to 'reset' and keep alive. 3) too easy. lol ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Maybe I missed something earlier in the thread Yeah, last sentence of the original post. I'd never set a session for 4 days but it wouldn’t accomplish the same thing anyway. 4 days of no activity would timeout :) besides...it's not 'trouble' it's fun. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby

connetion reset by peer / proper JDBC settings

2005-12-01 Thread Jeff Congdon
This error is getting to the unbearable point, and I'm wondering if anybody has a solution. I have 4 CFMX servers, all 6.11, all running 3.5 jdbc drivers, connecting to a single sql server (2000) that is on their local network. Only one CF server returns this error, and it does it constantly.

RE: OT: Humor for the day

2005-12-01 Thread Bobby Hartsfield
Hah! Yeah... 1970 was a loong time ago. *ducks* ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 4:55 PM To: CF-Talk Subject: Re: OT: Humor for the day

Re: Keeping a session alive

2005-12-01 Thread Ryan Guill
Keeping the session timeout also increases the memory usage on the cf server. Or at least creates the potential to. It locks up that memory being used for longer. On 12/1/05, Bobby Hartsfield [EMAIL PROTECTED] wrote: Maybe I missed something earlier in the thread Yeah, last sentence of the

Using NT user database with CF

2005-12-01 Thread Matt Robertson
Anyone know of a way that CF can hook into win2k/NT/2k3 user accounts? In other words, someone logs onto Windows when they fire up their desktop and this info is also used to authenticate their CF-based intranet session. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

CFC web service persistance concepts.

2005-12-01 Thread Ian Skinner
What is the basic outline to create a web service that handles some kind of persistence? So that a consumer can make an initial call that initiates a web service object with data and methods, then make subsequent calls that can retrieve and manipulate that data? Is this a complex problem?

Async Gateway threads

2005-12-01 Thread Ian Skinner
How does the Event Gateway Processing Threads setting on the Event Gateways: Settings page relate to the Maximum number of simultaneous threads setting on the Server Settings: Settings page? Is the former value a subset of the latter or are they independent of each other? -- Ian

RE: Keeping a session alive

2005-12-01 Thread Dawson, Michael
Pass a WDDX packet, use hidden form fields and then a javascript form submit. There are probably a few other ways. -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:22 PM To: CF-Talk Subject: Re: Keeping a session alive How would you

Re: CFC web service persistance concepts.

2005-12-01 Thread Michael Dinowitz
Its simplicity itself. I'll send you a CFC for caching of queries and the code to call it. Should showcase the whole thing. What is the basic outline to create a web service that handles some kind of persistence? So that a consumer can make an initial call that initiates a web service

RE: Keeping a session alive

2005-12-01 Thread Dawson, Michael
Why not set the session timeout to be a very large value? It seems almost pointless to have the keep-alive ping yet still want to keep the site authenticated? M!ke -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:49 PM To: CF-Talk Subject: RE:

cfgrid flash form question

2005-12-01 Thread Nick Han
Hi All, I am using a cfgrid flash type. cfgrid name=batchType height=200 width=410 vspace=10 selectmode=edit query=GetAdjustmentBatchTypes insert=Yes insertbutton=Add New Type delete=yes

Re: CFC style question (for UI CFCs)

2005-12-01 Thread dave
now there is a shocker ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: Will Tomlinson [EMAIL PROTECTED] Sent: Thursday, December 01, 2005 4:31 PM To: CF-Talk

RE: cfform popup

2005-12-01 Thread dave
thanks i will try and fix that lol its ok with me, bobby did the hard work tho just lemme know and I will send u the code ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/

RE: Using NT user database with CF

2005-12-01 Thread Ian Skinner
We do that all day, everyday. How far do you want to take it? The short answer is to set directory security in IIS for the website or some portion of it to windows integrated security and disable allow anonymous access. The last part is important. Then access cgi.auth_user in your cf code,

RE: Keeping a session alive

2005-12-01 Thread Dave Watts
Why not set the session timeout to be a very large value? It seems almost pointless to have the keep-alive ping yet still want to keep the site authenticated? One reason you might do this is to keep a session alive as long as the browser is actually open and pointing to that site, but kill

RE: Async Gateway threads

2005-12-01 Thread Dave Watts
How does the Event Gateway Processing Threads setting on the Event Gateways: Settings page relate to the Maximum number of simultaneous threads setting on the Server Settings: Settings page? Is the former value a subset of the latter or are they independent of each other? I'm pretty sure

RE: CFC web service persistance concepts.

2005-12-01 Thread Dave Watts
What is the basic outline to create a web service that handles some kind of persistence? So that a consumer can make an initial call that initiates a web service object with data and methods, then make subsequent calls that can retrieve and manipulate that data? Is this a complex

RE: Keeping a session alive

2005-12-01 Thread Bobby Hartsfield
Not just one reason but THE reason :) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 6:40 PM To: CF-Talk Subject: RE: Keeping a session alive Why not set the

CF and DHTML-Menu

2005-12-01 Thread cf-talk
Hi list, the CF_DHTML-Menu Tag of B. Forta does as far as I know allow only two category layers. But I need at least three or better four. Does anyone know such a DHTML-Tag which is easily being populated with CF ? Uwe ~|

RE: CF and DHTML-Menu

2005-12-01 Thread Bobby Hartsfield
Milonic is pretty simple to populate dynamically and can go as deep as you want it to. I think its only free for non commercial use though ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: Free SSL (was Re: Authorize.net request)

2005-12-01 Thread Dave Watts
I thought that the reason you paid for certificates wasn't really anything to do with the cert, but more to do with the indemnity insurance that the issuer is offering if the cert gets cracked and your SSL connections reveal info to someone sniffing the packets... Could it happen?

Re: CF and DHTML-Menu

2005-12-01 Thread Andrew Grosset
This css driven menu is worth a look: http://www.olimpo.ch/tmt/tag/hiermenu/ by: Massimo Foti Andrew. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: Code reuse ideas?

2005-12-01 Thread John McKown
mac jordan wrote: On 30/11/05, Aaron Rouse [EMAIL PROTECTED] wrote: I know of a couple of in house frameworks that do just this. One for example uses a lot of different custom tags for its CMS and that CMS is used for 20+ sites. Instead of copying that pack of tags to each site they all

Mx 7.1 unable to stop stuck threads

2005-12-01 Thread gabriel l smallman
I posted last week about a dieing mx server. After installing seefusion it appears at some point all the available threads stick. They just sit there for 15 minutes unable to complete. It appears that mx never completes the threads. Here is what vex's me beyond the fact I cannot figure why the

Error SQL Params

2005-12-01 Thread John Skrotzki
I spent the last hour trying to find an answer to my question with no luck. I have a custom error page that emails me with alot of info but one thing I would LOVE is to see the value of the sql params that where sent to the database. For now I have this ( parital listing ) in the email: