RE: Expiring time of cookies for session management

2005-09-13 Thread Kevin Roche
Dave, If you use: cfapplication setclientcookies=Yes The cookies themselves are permanent which has some consequences for most applications. I have in the past come back to an application and found myself still logged in after being away for a week! I now use: cfapplication

RE: Click-once submit button techniques?

2005-09-13 Thread Hugo Ahlenius
how about onclick=javascript:this.disabled=true;return true (didn't test this, but you get the idea, right?) -- Hugo Ahlenius - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project OfficerPhone:

consume cf web service in asp.net page via soap request

2005-09-13 Thread Zhou Yu
hi I have a web service which is written in coldfusion. Now I need consume it by it's wsdl file myserive.cfc?wsdl from an asp.net page via soap request. Anyone has done this before? a sample code will be a great help! thanks in advance

Re: SOT: Fusebox 4.1 specification format?

2005-09-13 Thread Michael Traher
thanks to all. ~| 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 it for free with a 15 day

RE: Is there a way to see webservice request generated by CFMX?

2005-09-13 Thread kola.oyedeji
Stacy did you try using the TCPMonitor tool which ships with cf? Technote http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19352 Flash Video http://www.macromedia.com/support/coldfusion/ts/documents/tcpmonitor/tcpmon. htm Tips on using it with webservices

RE: USPS test 400 Bad Request

2005-09-13 Thread Russ
Perhaps ask them for some sample code... or use their desktop tool, and sniff the requests that it's doing (perhaps using something like proxomitron). Also try using cfhttp url=someurl method=get redirect=no What I notice a lot of times is that the request gets redirected to a different page,

I18N Help

2005-09-13 Thread Dov Katz
Fellow Developers, I'm looking for someone to help me adapt my existing codebase to a multilingual site. (Hebrew in particular). Please contact me offline if this is something you have experience with and are interested in. I dont have things set up with java ResourceBundles but I'm

RE: USPS test 400 Bad Request

2005-09-13 Thread Hua Wei
I think the url of the cfhttp should look like this: http://testing.shippingapis.com/ShippingAPITest.dll?API=RateV2XML=#USPSRequest# Hua -Original Message- From: Stan Winchester [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 8:28 PM To: CF-Talk Subject: USPS test 400 Bad

OT: Windows internals

2005-09-13 Thread Qasim Rasheed
Hi I am looking for a COM object or an open source Java API that I can use to retrive information about a Windows machine e..g Hard drive space, services etc. Has anyone done this before and are there any resources that I can take a peek. Thanks Qasim

OT: Source Code Control Setup

2005-09-13 Thread Kazmierczak, Kevin
For whoever is using some sort of source code control, I'm curious on how you have successfully set it up in a multi user environment working on a shared server. Here is my problem (currently using vss): You have 3 developers working on a site and they all have the site's directory setup as

Re: OT: Windows internals

2005-09-13 Thread Ryan Guill
Take a look at the filesysteobject COM object. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/FSOoriFileSystemObject.asp if this doesn't answer your questions, do a google search for Scripting.FileSystemObject. On 9/13/05, Qasim Rasheed [EMAIL PROTECTED] wrote:

RE: OT: Windows internals

2005-09-13 Thread Kevin Aebig
You can also check out the components zip at www.keslabs.com/crd The statistics.cfc specifically has a few things you could use. Cheers, !K -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: September 13, 2005 9:58 AM To: CF-Talk Subject: Re: OT: Windows internals

RE: Replacement for cfdirectory

2005-09-13 Thread Kerry
Just a thought, not at all sure if it would be more performant: why not loop through the db, and copy each file into another directory, then delete or rename the original directory and rename the new directory to the same as the original? This way you could also do the queries in batches e.g. 100

Studio 8 available for download

2005-09-13 Thread Damien McKenna
FYI the various Studio 8 tools are now available for download from macromedia.com. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h ~|

RE: OT: Click-once submit button techniques?

2005-09-13 Thread Damien McKenna
-Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Are using something like cfif isdeifned('form.button') Process the form vars /cfif (or form.button.x) I'm actually passing the ID of the page to load next as the button name, e.g go5 etc. -- Damien McKenna

Re: OT: Source Code Control Setup

2005-09-13 Thread Barney Boisvert
Each developer should have their own private working directory that only they can touch. That's a fundamental principle with collaborative development. At my office, we run developer-specific subdomains for our working directories (mine is bb.piersystem.dev, for example), in addition to stage

CFMX Exam Buster and Hurricane Katrina

2005-09-13 Thread Brian Simmons
Hello CF'ers, As many of you know, Centrasoft donated 100% of the profits from all sales of CFMX Exam Buster for the eight day period of Friday, September 2nd, 2005 through Friday, September 9th, 2005 to the American Red Cross (for Hurricane Katrina victims). It is my pleasure to report back that

RE: CF-Talk: Digest almost every hour

2005-09-13 Thread RADEMAKERS Tanguy
Hello, Are hourly digests down? Don't seem to be getting any from the list this afernoon... /t ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent

Adding cfquery.executiontime to a query result set?

2005-09-13 Thread Pete Ruckelshaus
I need to display query executiontime to my result sets. I had forgotten that this isn't a value that is available at the query level (i.e. myquery.executiontime) but is tag-level and only applies to the most recent query run in-code. I can certainly set a number of temp variables to grab those

RE: Source Code Control Setup

2005-09-13 Thread Jim Davis
-Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 11:41 AM To: CF-Talk Subject: OT: Source Code Control Setup For whoever is using some sort of source code control, I'm curious on how you have successfully set it up in a multi

Re: Adding cfquery.executiontime to a query result set?

2005-09-13 Thread Ryan Guill
store the query in a structure, with one key being resultset and another being execution time. On 9/13/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I need to display query executiontime to my result sets. I had forgotten that this isn't a value that is available at the query level (i.e.

Storing UDF in application scope

2005-09-13 Thread Dave Phillips
Hi, I want to store a UDF in the application scope. Anyone know a trick to this and/or any issues regarding it? Here's what I tried that didn't work: cfscript function MyFunc() { ...function definition... } /cfscript CFLOCK SCOPE=application TYPE=exclusive TIMEOUT=10 CFSET

Re: Storing UDF in application scope

2005-09-13 Thread Ryan Guill
put it in a component, and then create an object of the component in the application scope. It wont be directly in the application scope, but in a variable in the application scope. application.myudfs.myudf() On 9/13/05, Dave Phillips [EMAIL PROTECTED] wrote: Hi, I want to store a UDF in

RE: Source Code Control Setup

2005-09-13 Thread Damien McKenna
-Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] You have 3 developers you have two cows... http://en.wikipedia.org/wiki/You_have_two_cows Seriously though, this is an inherent flaw both in VSS and in how people perceive source control to work. In the

Re: CFMail Errors when mass mailing (not spam)

2005-09-13 Thread Claude Schneegans
I'm just fine tuning a newsletter system. Does anyone know issues when running CF5? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

RE: Storing UDF in application scope

2005-09-13 Thread Dave.Phillips
Ryan, Thanks. I know that I can do that. I need to find out if there's a way to put it in the application scope WITHOUT using a component. Thanks, Dave -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 12:26 PM To: CF-Talk Subject: Re:

cfchart scaleto scalefrom problem

2005-09-13 Thread Rick Root
I'm trying to generate a line chart with a scale from 0 to 250,000,000 My scaleFrom and scaleTo attributes are being ignored. I see from the documentation that others have also had this problem in CFMX7, but I can't find a solution. Any ideas out there? Rick

Re: cfchart scaleto scalefrom problem

2005-09-13 Thread Barney Boisvert
You have to apply a hotfix to make it respect those attributes. There are several with CFCHART fixes. cheers, barneyb On 9/13/05, Rick Root [EMAIL PROTECTED] wrote: I'm trying to generate a line chart with a scale from 0 to 250,000,000 My scaleFrom and scaleTo attributes are being ignored.

(admin) outage

2005-09-13 Thread Michael Dinowitz
This morning the provider upline from the host of House of Fusion (AHPHosting.net) had an outage which affected all of its downline customers, including House of Fusion, Fusion Authority, CFTips and all other related sites. Things are fixed now but mail may be a bit 'wonky' (the technical term)

Re: Can't use a CF mapping with CFFORMS? is this correct?

2005-09-13 Thread Raymond Camden
It sounds like on your production server that the /CFIDE virtual directory is simply not set up correctly. Just fix that and all should be well. Or, if you want to keep stuff in formscripts, and formscripts is under root, you should be able to always do, scriptsorce=/formscripts and that should

RE: Source Code Control Setup

2005-09-13 Thread Jim Davis
-Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 12:32 PM To: CF-Talk Subject: RE: Source Code Control Setup -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] You have 3 developers you

Storing UDF in application scope

2005-09-13 Thread Dave.Phillips
Hi, I want to store a UDF in the application scope. Anyone know a trick to this and/or any issues regarding it? Here's what I tried that didn't work: cfscript function MyFunc() { ...function definition... } /cfscript CFLOCK SCOPE=application TYPE=exclusive TIMEOUT=10 CFSET

cfchart scaleto scalefrom problem

2005-09-13 Thread Rick Root
I'm trying to generate a line chart with a scale from 0 to 250,000,000 My scaleFrom and scaleTo attributes are being ignored. I see from the documentation that others have also had this problem in CFMX7, but I can't find a solution. Any ideas out there? Rick

Re: Storing UDF in application scope

2005-09-13 Thread Ryan Guill
well i wasnt sure before, but you can do this then instead. instead of CFSET application.MyFunc = MyFunc try CFSET application.MyFunc = variables.myfunc / That should work. (it just did on my machine) On 9/13/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ryan, Thanks. I know that I

Re: OT: Source Code Control Setup

2005-09-13 Thread John Paul Ashenfelter
On 9/13/05, Kazmierczak, Kevin [EMAIL PROTECTED] wrote: For whoever is using some sort of source code control, I'm curious on how you have successfully set it up in a multi user environment working on a shared server. Here is my problem (currently using vss): You have 3 developers

Re: Source Code Control Setup

2005-09-13 Thread Barney Boisvert
No reason you have to have your working directories local (though that'd usually be prefered). We have all our working directories on a shared dev server, with multiple CF instances (one per directory), and corresponding vhosts, so each app works in isolation from the others. cheers, barneyb On

Enforcing 128-bit SSL

2005-09-13 Thread Mike Chabot
We are running Sun ONE Web server (similar to Apache) and CFMX 6.1. Sun ONE has a feature where you can show an error message if the Web browser does not support 128-bit SSL. With CF5 this feature worked fine. With CFMX, however, the restriction only applies to images, html files, and style

Re: Storing UDF in application scope

2005-09-13 Thread Mike Chabot
An example using the server scope. In Application.cfm: cfif NOT structKeyExists(server,'debug') cflock timeout=10 throwontimeout=No name=debug type=EXCLUSIVE cfif NOT structKeyExists(server,'debug') cfinclude template=/includes/debug_udf.cfm /cfif /cflock /cfif In debug_udf: cfset

Re: Source Code Control Setup

2005-09-13 Thread John Paul Ashenfelter
Regarding the former, many older revision management systems only allow one person to work on a file at any given time, hence locks whereby a developer locks a file to stop others editing it. This is IMHO a flaw in these older systems and is one of the key features that newer systems

Re: Enforcing 128-bit SSL

2005-09-13 Thread Barney Boisvert
How about just not allowing non-128-bit SSL connections? That's a snap with Apache, just edit the directive that specifies the encryption types to allow to only include the ones you want. cheers, barneyb On 9/13/05, Mike Chabot [EMAIL PROTECTED] wrote: We are running Sun ONE Web server

RE: Storing UDF in application scope

2005-09-13 Thread Jim Davis
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 11:40 AM To: CF-Talk Subject: Storing UDF in application scope Hi, I want to store a UDF in the application scope. Anyone know a trick to this and/or any issues regarding it?

Create Excel file

2005-09-13 Thread Phill B
Is there a way to create an Excel spreadsheet with multiple tabs using html and CF? -- Phil ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a

Re: Source Code Control Setup

2005-09-13 Thread Douglas Knudsen
we ran into this same issue with regards to our authenticating against an LDAP. The LDAP uses IP filtering for a few reasons. As PC workstations in our company run DHCP and the IPs do change, this would be a headache to take care of. Luckily we could just setup a webservice on the centralised

RE: Source Code Control Setup

2005-09-13 Thread Kazmierczak, Kevin
Thanks guys for the help. I was curious to see how other people had this setup. Kevin. -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 1:11 PM To: CF-Talk Subject: Re: Source Code Control Setup Regarding the former, many

FW: Is there a way to see webservice request generated by CFMX?

2005-09-13 Thread Stacy Young
I've used those tools before...but what I'm trying to outline here is that there *IS* no request to analyze...it won't even make it out of the cfmx box until the local call validates against the method signature of the service in question! 1) CFMX takes cfinvoke tag with arguments and attempts to

Re: FW: Is there a way to see webservice request generated by CFMX?

2005-09-13 Thread Robert Munn
Stacy, I had this same problem and ended up building the solution in Java using WSDl2Java and invoking the Java classes from CF. CF is great for simple Web service calls, but with complex Web service calls, it is extremely tough to get the data structure right, and there is absoluely no

Linked Lists

2005-09-13 Thread S . Isaac Dealey
I'm contemplating possibly creating a Linked List CFC as a means of creating in essence an array which is passed by reference instead of by value, and which would have some built-in sorting functionality. Could be useful for some memory resident structures like for instance a shopping cart, or

Re: FW: Is there a way to see webservice request generated by CFMX?

2005-09-13 Thread Bryan Stevenson
rhhhfor the 3rd time...try www.mindreef.net use their web-based webservice testing toolyou'll get what you're after in 5 minutes or less If you've already tried then reply telling me so and I'll shut up If you haven't...save yourself a tonne of grief (which I've

Re: Enforcing 128-bit SSL

2005-09-13 Thread Mike Chabot
Removing support for anything other than 128-bit connections is another option. The two concerns that come to mind are the error message that the user sees and whether or not I can lock down specific directories, as opposed to the entire site. The last time I tested removing support for 56-bit

Re: Click-once submit button techniques?

2005-09-13 Thread Larry Lyons
-Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 5:04 PM To: CF-Talk Subject: OT: Click-once submit button techniques? Anyone got a simple JS function to block multiple submit-button clicks? I've looked a few times but never found

OT: CSS and Firefox

2005-09-13 Thread Cutter (CF-Talk)
OK, I'm working on making all new sites I work on XHTML/CSS compliant, one step at a time. Not a heavy learning curve, but I am running into some small odd things that I don't understand. For instance, on http://i05.irieradio.com, on pages other than the home page and the blogs page, my

Re: Linked Lists

2005-09-13 Thread Barney Boisvert
How about just an Array CFC that has an internal array variable. Since it's the CFC being passed, you get the pass-by-reference. You could build whatever extra methods you wanted on it as well as the required accessor/modifier methods. Basically you'd be rewriting java.util.Vector with a CFC

Re: OT: Click-once submit button techniques?

2005-09-13 Thread Tony
charlie... in IE if you do not add ,this.form.submit(); to your idea, it never submits. input type=submit onclick=this.disabled=true, this.form.submit(); / tony On 9/12/05, Charlie Griefer [EMAIL PROTECTED] wrote: input type=submit onclick=this.disabled=true; / On 9/12/05, Damien

RE: Linked Lists

2005-09-13 Thread Matthew Small
Yes, I imagine that it's more trouble than it's worth. Linked lists are really only useful when you're dealing with a language that does not support dynamically-sized arrays but need that functionality. Classic construction requires the use of pointers to memory locations - a trait that CF does

Re: Enforcing 128-bit SSL

2005-09-13 Thread Barney Boisvert
Yeah, that's exactly what happens, the connection is denied. An you can only do it at the vhost level, I believe. N'mind then. ;) Just thought I'd throw it out there. cheers, barneyb On 9/13/05, Mike Chabot [EMAIL PROTECTED] wrote: Removing support for anything other than 128-bit

Re: OT: CSS and Firefox

2005-09-13 Thread Ryan Guill
If the css isnt changing from one page to another, its probably flowing too wide on those pages. Try taking your content div a little more narrow and see if that helps. On 9/13/05, Cutter (CF-Talk) [EMAIL PROTECTED] wrote: OK, I'm working on making all new sites I work on XHTML/CSS compliant,

Re: Storing UDF in application scope

2005-09-13 Thread Alan Rother
If your goal is to be able to use the function on any page in the application you could put it in a file that is then included in the application.cfm. This will make the function available for local use on any page called in the whole application. On 9/13/05, Jim Davis [EMAIL PROTECTED] wrote:

Re: Click-once submit button techniques?

2005-09-13 Thread Russell Patterson
How about this? input type=submit value=Log In onClick=if(this.value == 'Log In') this.form.submit(); this.disabled= 'true'; this.value = 'Please Wait...'; I did not test this though... Russell - Original Message - From: Larry Lyons [EMAIL PROTECTED] To: CF-Talk

RE: CSS and Firefox

2005-09-13 Thread Damien McKenna
Its simply a case of your content being too wide. I made the following change and it worked fine: #primaryContent { width:455px; } I suggest adding the following to your main DIVs to see where everything is *really* positioning: border: 1px dashed red; -- Damien McKenna - Web

Flex - CFC Argument

2005-09-13 Thread Greg Johnson
I am creating 2 list boxs. One gets filled with departments onload, the other I want to populate with people in the dept when someone clicks on a dept. This is my 2ed day learning flex so I can make a major app with it. Here is the code sofar ?xml version=1.0 encoding=utf-8? mx:Application

Re: USPS test 400 Bad Request

2005-09-13 Thread Stan Winchester
After looking at your example, I see I posted the wrong test snippet. I should have posted this one: cfsavecontent variable=USPSRequesthttp://testing.shippingapis.com/ShippingAPITest.dll?API=RateXML=RateRequest USERID=x PASSWORD=xPackage

Re: Storing UDF in application scope

2005-09-13 Thread Ryan Guill
You may check this page out too, it tells you how to do it and why you might want to do it as well, the same as I did. http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=0263.htm On 9/13/05, Alan Rother [EMAIL PROTECTED] wrote: If your goal is to be

Re: Storing UDF in application scope

2005-09-13 Thread Ryan Guill
oops, wrong link, try this one http://livedocs.macromedia.com/coldfusion/7/htmldocs/1003.htm On 9/13/05, Ryan Guill [EMAIL PROTECTED] wrote: You may check this page out too, it tells you how to do it and why you might want to do it as well, the same as I did.

Re: Storing UDF in application scope

2005-09-13 Thread Ryan Guill
gosh, does anyone else ever have trouble with sending pages from the livedocs? Lets try this one last time. This is the link i am referring to: http://livedocs.macromedia.com/coldfusion/7/htmldocs/1016.htm Sorry for spamming the list. On 9/13/05, Ryan Guill [EMAIL PROTECTED] wrote: oops,

jrRecv failed errors under SSL

2005-09-13 Thread Larry Lyons
Hi, we're getting a lot of errors with pages not showing up in the browser when running a CF app under SSL, on a solaris box, with apache 2.x, CFMX 6.1 Enterprise running on top of Jrun4 with updater 2. Here's a typical log file entry: jrApache[17651: 4336] jrRecv failed[31]: 131 131

Re: Flex - CFC Argument *ignore* figured it out

2005-09-13 Thread Greg Johnson
Greg Johnson wrote: I am creating 2 list boxs. One gets filled with departments onload, the other I want to populate with people in the dept when someone clicks on a dept. This is my 2ed day learning flex so I can make a major app with it. Here is the code sofar ?xml version=1.0

RE: USPS test 400 Bad Request

2005-09-13 Thread Hua Wei
I replaced USERID and PASSWORD with mine, your code worked fine. Here is what I got in the cfhttp.FileContent ?xml version=1.0? RateResponsePackage

Re: Linked Lists

2005-09-13 Thread S . Isaac Dealey
How about just an Array CFC that has an internal array variable. Since it's the CFC being passed, you get the pass-by-reference. You could build whatever extra methods you wanted on it as well as the required accessor/modifier methods. Basically you'd be rewriting java.util.Vector with

RE: Linked Lists

2005-09-13 Thread S . Isaac Dealey
Yes, I imagine that it's more trouble than it's worth. Linked lists are really only useful when you're dealing with a language that does not support dynamically-sized arrays but need that functionality. That was sort of my thinking... Arrays and actually queries, given that at least if

Re: OT: Click-once submit button techniques?

2005-09-13 Thread Charlie Griefer
hmmdid not know that. somebody else had posted a similar response but appended a return true; after the this.disabled=true. wonder if it was for the same reason...? On 9/13/05, Tony [EMAIL PROTECTED] wrote: charlie... in IE if you do not add ,this.form.submit(); to your idea, it never

Detecting CFLOCK

2005-09-13 Thread Jay Greer
Is there any way to programatically detect when CF releases an exclusive named CFLOCK? ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

CFC help

2005-09-13 Thread Ken
Hi. I am new to CFCs and need to create a function that does the following. - TYPE_ID_LIST is a comma delimited list of the different types that the user has chosen from the form - It will delete any records from CategoryTypes table, that are not in the list of TypeIDs (for that user) - It

Re: CSS and Firefox

2005-09-13 Thread John Paul Ashenfelter
On 9/13/05, Damien McKenna [EMAIL PROTECTED] wrote: Its simply a case of your content being too wide. I made the following change and it worked fine: #primaryContent { width:455px; } I suggest adding the following to your main DIVs to see where everything is *really*

Re: OT: CSS and Firefox

2005-09-13 Thread Mike Kear
As a general rule, I seriously suggest NOT using IE to develop with. I suggest using Firefox instead as your main browser. This is not any ideological, anti-Microsoft thing, it's a simple truth that Firefox is CSS compliant and IE isnt. (It's not the only CSS compliant browser, but it's the

Re: CFC help

2005-09-13 Thread S . Isaac Dealey
Hi. I am new to CFCs and need to create a function that does the following. - TYPE_ID_LIST is a comma delimited list of the different types that the user has chosen from the form - It will delete any records from CategoryTypes table, that are not in the list of TypeIDs (for that user)

Re: Detecting CFLOCK

2005-09-13 Thread S . Isaac Dealey
Is there any way to programatically detect when CF releases an exclusive named CFLOCK? Umm... well... isn't that what CFLOCK is designed to do? What exactly are you trying to accomplish? I mean... I know of a way to accomplish it (although it's a hack), I just can't imagine a purpose for doing

Querying across two datasources example?

2005-09-13 Thread Eric Hoffman
Is there such a beast that is pretty concise? I have a app that needs to query some data from an external datasource now. Just looking at theory: So, I query our data. Then query their data. Then query what? A query of queries or something? Or shortcuts? Thanks! Eric

RE: Linked Lists

2005-09-13 Thread Jim Davis
-Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 3:23 PM To: CF-Talk Subject: Re: Linked Lists That's possible... Not what I had in mind, but it's possible... It doesn't encapsulate the instructions the way I was imagining.

ATAN2 function in Coldfusion MX?

2005-09-13 Thread Billy Jamme
I'm looking for the ATAN2 function in CFMX, but it appears that there isn't one. (unless I'm looking in the place) I've seen the ATN function, but it's not really what I'm looking for. I know Javascript has this function using the Math.atan2(y,x) function. Has anyone used wrote a simlar

Re: USPS test 400 Bad Request

2005-09-13 Thread Stan Winchester
Thanks for testing! I now have something to talk USPS about knowing the code works fine. I replaced USERID and PASSWORD with mine, your code worked fine. Here is what I got in the cfhttp.FileContent ?xml version=1.0? RateResponsePackage

Re: Detecting CFLOCK

2005-09-13 Thread Jay Greer
What exactly are you trying to accomplish? Thanks for your reply. I'm using CFDOCUMENT enclosed in an exclusive CFLOCK to create a _BIG_ PDF file in a shared server environment. Under typical server load it takes around 30 seconds or so to create the PDF. However, sometimes it can take much

Re: Enforcing 128-bit SSL

2005-09-13 Thread Anthony Prato
well it can differ between web servers but among the CGI variables the webserver will pass to CF there should be a CERT_KEYSIZE variable in the CGI scope. That's if you can't get it to happen on the server end, which should be possible. It was still called Netscape Enterprise Server the last I

Re: ATAN2 function in Coldfusion MX?

2005-09-13 Thread S . Isaac Dealey
I'm looking for the ATAN2 function in CFMX, but it appears that there isn't one. (unless I'm looking in the place) I've seen the ATN function, but it's not really what I'm looking for. I know Javascript has this function using the Math.atan2(y,x) function. Has anyone used wrote a simlar

Re: Detecting CFLOCK

2005-09-13 Thread Bryan Stevenson
I think the big question is why lock that process? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: Querying across two datasources example?

2005-09-13 Thread Jann E. VanOver
Are these two datasources on the same server? Which DBMS? Using SQL Server, I use a dot-dot notation to refer to other databases on the same server: STUFF is the datasource known to ColdFusion and it has a table named stuff. OtherStuff is a database on the same server that has a table named

Re: Detecting CFLOCK

2005-09-13 Thread S . Isaac Dealey
What exactly are you trying to accomplish? Thanks for your reply. I'm using CFDOCUMENT enclosed in an exclusive CFLOCK to create a _BIG_ PDF file in a shared server environment. Under typical server load it takes around 30 seconds or so to create the PDF. However, sometimes it can take much

Re: ATAN2 function in Coldfusion MX?

2005-09-13 Thread Billy Jamme
Thanks for the pointer Isaac. Unfortunately they only have the Atanh function. Anyone have any other suggestions? There's probably one of those on http://www.cflib.org ~| Discover CFTicket - The leading ColdFusion Help Desk

Re: CFC help

2005-09-13 Thread Ken
Thanks. I do understand the coding logic here. But since I've done CFC s before, It'll help if you can create an example cfc file for me. On 9/13/05, S. Isaac Dealey [EMAIL PROTECTED] wrote: Hi. I am new to CFCs and need to create a function that does the following. - TYPE_ID_LIST is

OT: More on subversion

2005-09-13 Thread Paul
The thread this morning about source control in a multi-developer environment makes me wonder how to set things up in our case. I am the sole developer for a non-tech company. Up to this point my projects have gone from my laptop to our live server with, you might guess, varying degrees of

RE: Storing UDF in application scope

2005-09-13 Thread Calvin Ward
I'm not a big fan of the live docs url rewriting and long urls and so forth... -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 2:42 PM To: CF-Talk Subject: Re: Storing UDF in application scope gosh, does anyone else ever have trouble with

RE: More on subversion

2005-09-13 Thread Damien McKenna
-Original Message- From: Paul [mailto:[EMAIL PROTECTED] I am the sole developer for a non-tech company. Lots of us geeks are :) Up to this point my projects have gone from my laptop to our live server with, you might guess, varying degrees of success. I've finally talked my way

RE: ATAN2 function in Coldfusion MX?

2005-09-13 Thread Damien McKenna
-Original Message- From: Billy Jamme [mailto:[EMAIL PROTECTED] Anyone have any other suggestions? Hit the Java directly? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

Re: Linked Lists

2005-09-13 Thread Barney Boisvert
Sure you would. The former is exactly what I'd envision. Just like you a Vector (though without the Iterator). The array would be totally hidden inside the Vector CFC - the calling code would never know there's an array in there (vs a linked list, or a backing DB table). Just the index-based

Re: Adding cfquery.executiontime to a query result set?

2005-09-13 Thread Qasim Rasheed
If you are running CFMX7 there is a new attribute to cfquery tag called result which can give you some useful information about the query which include execution time and SQL statement. HTH On 9/13/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I need to display query executiontime to my result

Re: OT: More on subversion

2005-09-13 Thread Barney Boisvert
SVN repos on you testing server. Your main working directory on your laptop. Another working directory on your testing server for testing against, and then you sync that working dir up to your production servers directly, so it's impossible to get anything into production without going through

Re: ATAN2 function in Coldfusion MX?

2005-09-13 Thread Rick Root
Damien McKenna wrote: -Original Message- From: Billy Jamme [mailto:[EMAIL PROTECTED] Anyone have any other suggestions? Hit the Java directly? That would be my suggestion too. The following works under Bluedragon 6.2... should work under CFMX too... easily converted to a UDF.

Re: ATAN2 function in Coldfusion MX?

2005-09-13 Thread Rick Root
(I just love java integration!) ~| 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 it for

Re: OT: CSS and Firefox

2005-09-13 Thread Claude Schneegans
If you try it the other way around, you'll have a nightmare time trying to force compliant browsers like Firefox to do what IE does. It's possible, but it is a LOT harder. On the contrary, I always use IE for developing: 1ยบ For Mozilla, I use an IE emulator that makes almost all

block forms from being filled out automatically

2005-09-13 Thread Mickael
Hi, One of my clients is getting bombarded by some jerk, connection to a form on his webpage and filling out the fields with junk and submitting the forms. What can I do to prevent a computer from filling out my forms. I don't really want to use that crazy jumbled image where to you type in

Re: block forms from being filled out automatically

2005-09-13 Thread Bryan Stevenson
it's probably related to the increase of mail form spamming.have alook in the recent archives (past few weeks)...somebody had the same problem...pretty sure I saw some sample code for some solutions ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems

  1   2   >