Re: Interacting with SOAP

2007-02-01 Thread Robertson-Ravo, Neil (RX)
This is expected, as I can no doubt say that the web service you are calling is .NET and that the return variable is not of type string. If the result is XML or any other complex object, CF/Axis will *not* comsume it the way you expect, it may not even consume it correctly at all in that the stub

OT: deployment with ANT and CVS

2007-02-01 Thread Michael Traher
We already have a deployment process which works within our LAN environment, which uses an ANT script to extract code from CVS and rsync this with the target site on a web server. We now have a remote site and have found that while it still works it takes too long to copy the whole site prior to

RE: Reading from an Excel file through ColdFusion.

2007-02-01 Thread Robertson-Ravo, Neil (RX)
Not sure there are any docs but it is in CF at the following location: it is being used by cfdocument (possibly other things) C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\lib\ -Original Message- From: Eric Roberts [mailto:[EMAIL PROTECTED] Sent: 01 February 2007

RE: deployment with ANT and CVS

2007-02-01 Thread Tero Pikala
Anyone know of a way to get the password to be passed to CVS via ANT with no prompt? Maybe you could consider setting up SSH private key authentication without password at all? I know it's not ideal from security point of view but it could solve the issue. Tero Pikala

Re: CFEclipse Vs Dreamweaver

2007-02-01 Thread Mark Drew
hmm.. I dont know.. try it :) Actually, I have briefly tested it and it seems fine... let me know if you find any bugs... MD On 25 Jan 2007, at 17:50, Andy Matthews wrote: Mark... Is the current build of CFEclipse up to the 3.3M4 milestone? -Original Message- From: Doug Bezona

Re: CFEclipse Vs Dreamweaver

2007-02-01 Thread Mark Drew
Dreamweaver is a generic web editor, CFEclipse is aimed as an integrated development environment for ColdFusion There are differences here I understand but I code a lot of CF... and I do a little HTML (a little) so I guess its the percentage thing MD On 25 Jan 2007, at 15:30, Heather

duplication while inserting data from cf end

2007-02-01 Thread kanidapu Govindarajulu
Did you ever resolve this?whenever i am trying to insert some data in sqlserver database the data is duplicating from fornt end. It will create duplicates occasionally and not all of the time.Anyone have any ideas?please respond.

thread-saftey of application-instantiated components

2007-02-01 Thread Leitch, Oblio
If I create a component (potentially long-running) and instantiate it into the application scope (so all pages can access it), how thread-safe will it be? That is, if two pages call it simultaneously is there any chance one will get the results of the other? Or maybe I'm being paranoid and don't

Re: hiding url variables

2007-02-01 Thread Richard White
thanks for all your replies. I think your right i will have to use hidden fields and form posts as much as possible. and when i need to use the URL then i will use the encrypt / decrypt link that was added in the replies. this is very useful, thanks very much for all your help

Daily procedures for using Subversion

2007-02-01 Thread Peterson, Chris
I am having a hard time fitting Subversion into my general coding procedures. I have been a 1-man coder at a company that has nothing to do with programming for the longest time (transportation related business). Now we are branching out to providing programming services, and I want to ensure I

Re: deployment with ANT and CVS

2007-02-01 Thread Michael Traher
Thankds Tero, actually that is the line we are investigating currently in consultation with our security experts. On 2/1/07, Tero Pikala [EMAIL PROTECTED] wrote: Anyone know of a way to get the password to be passed to CVS via ANT with no prompt? Maybe you could consider setting up SSH

Re: thread-saftey of application-instantiated components

2007-02-01 Thread James Holmes
Yes, the separate calls could get inconsistent data. This is what the CFLOCK tag is for. On 2/1/07, Leitch, Oblio [EMAIL PROTECTED] wrote: If I create a component (potentially long-running) and instantiate it into the application scope (so all pages can access it), how thread-safe will it be?

RE: Daily procedures for using Subversion

2007-02-01 Thread Leitch, Oblio
We have three developers working on various parts of a single site. We each have our own development branch; I only commit to mine occasionally. My branch contains a copy of the entire site, as does everyone else. When our branch is stable or an update needs to be rolled out, we checkout the

RE: Daily procedures for using Subversion

2007-02-01 Thread Richard Kroll
You said that you thought of putting the entire web root under source control. Is the web root one project, or do you have multiple applications running under it? If it is one project then can create a repository where the trunk would be your entire web root. The repository structure would look

RE: thread-saftey of application-instantiated components

2007-02-01 Thread Richard Kroll
There is the possibility for race conditions, so it depends what your component is doing. If your component has the following method: cffunction name=performMath cfargument name=num1 type=numeric required=true / cfargument name=num2 type=numeric required=true / cfset var

RE: thread-saftey of application-instantiated components

2007-02-01 Thread Richard Kroll
Yes, the separate calls could get inconsistent data. This is what the CFLOCK tag is for. This is true only if the method is calling / using instance data. Rich Kroll ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7

What does applicationToken actually do?

2007-02-01 Thread Leitch, Oblio
Can anyone explain what applicationToken actually does in cflogin? I've got two applications on the same server, and, though I have this attribute, authorizing under one context does not show me authorized under the other. If that's not its function, what is it there for? TIA, Oblio This email

Re: Showing actual used value from cfqueryparam tag

2007-02-01 Thread Patrick Farabee
Example code. cfquery name=test datasource=myDS select cfqueryparam cfsqltype=cf_sql_integer value=1.5 /cfquery I was under the impression that CFQUERYPARAM just validates and typecasts the value as you specify... so you would get something like (not sure of exact syntax being sent)

RE: OT-Image Maps

2007-02-01 Thread Terry Troxel
Sounds like you need to start by first creating a dynamic gif with your coordinates and the shading and then create dynamically create the coresponding image map with the links. Terry Troxel -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 31,

Re: Interacting with SOAP

2007-02-01 Thread Tony Hicks
That is extremely helpful. It won't help me get it done, but near as I could figure, it wasn't my programming. I hate the idea of submitting the xml manually, but if it must be done, it must be done. I've never worked with such an undocumented web service in my life. Here is how getMyAuctions is

RE: Daily procedures for using Subversion

2007-02-01 Thread Russ
Chris, You should probably ask for some help on the svn-users list. The version number thing comes up there all the time, and svn has a single revision number for the repository, not for each file. You should not worry about that revision number. The way we work is: Every developer has

Re: images not respecting clear in cfdocument PDF

2007-02-01 Thread Zoe Gillenwater
Ok, I know it's been months since I started this thread, but I had to put this project on hold for quite awhile, and also wait for my IT guy to install the latest update to CF on the server to make sure that wasn't the cause of the problem. The problem is still happening. Since it's been so

previous date

2007-02-01 Thread Orlini, Robert
I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous date of 0 as opposed to 31. How do I get it to generate the previous date as the 31st as opposed to 0? I'm still new as to understanding this. Thanks! Robert O. HWW

RE: thread-saftey of application-instantiated components

2007-02-01 Thread Tero Pikala
Typically you would have something like this in your cfcs: cffunction name=action returntype=Any cfset var local = StructNew() [actual implementation] cfreturn local.retval /cffunction Using cfset var creates separate scope for each

Re: previous date

2007-02-01 Thread Jacob Munson
Use DateAdd On 2/1/07, Orlini, Robert [EMAIL PROTECTED] wrote: I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous date of 0 as opposed to 31. How do I get it to generate the previous date as the 31st as opposed to 0? I'm still new as

RE: previous date

2007-02-01 Thread Porter, Benjamin L.
#DateFormat(DateAdd(d,-1,Now()),dd)# -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 10:45 AM To: CF-Talk Subject: previous date I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous

Re: previous date

2007-02-01 Thread Charlie Griefer
dateAdd('d', -1, now()) day(dateAdd('d', -1, now())) On 2/1/07, Orlini, Robert [EMAIL PROTECTED] wrote: I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous date of 0 as opposed to 31. How do I get it to generate the previous date as the

Re: previous date

2007-02-01 Thread Jim Wright
Orlini, Robert wrote: I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous date of 0 as opposed to 31. How do I get it to generate the previous date as the 31st as opposed to 0? #DateFormat(Now()-1,dd)#

RE: previous date

2007-02-01 Thread Ben Forta
You want #DateFormat(Now()-1, dd)# -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 11:45 AM To: CF-Talk Subject: previous date I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the previous

Re: previous date

2007-02-01 Thread Dan Vega
Jacob is right, you want to use dateAdd here cfset dateAdd(d,-1,now()) On 2/1/07, Jacob Munson [EMAIL PROTECTED] wrote: Use DateAdd On 2/1/07, Orlini, Robert [EMAIL PROTECTED] wrote: I using #DateFormat(Now(),dd)-1# to get a previous date. However, using it today it gives me the

CFC DAO/Bean Generator

2007-02-01 Thread Marco Antonio C. Santos
Anyone know a good CFC DAO and Bean generator other than CFCCreator? Cheers ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Links to Network shares in Safari

2007-02-01 Thread Jacob Munson
I've got some local users that use Macs, and one of our Intranet pages has videos that people can view. This works in IE, but not in Firefox or Safari: href=file:///\\midland\info\#enewsVideo# Any ideas on what I could do for non-IE users? I've done this before but can't remember what I did.

RE: Interacting with SOAP

2007-02-01 Thread Robertson-Ravo, Neil (RX)
I can say that from that dump you will never be able to consume it using CF. -Original Message- From: Tony Hicks [mailto:[EMAIL PROTECTED] Sent: 01 February 2007 15:47 To: CF-Talk Subject: Re: Interacting with SOAP That is extremely helpful. It won't help me get it done, but near as

Re: CFC DAO/Bean Generator

2007-02-01 Thread Josh Nathanson
Brian Rinaldi's Illudium P-36 Code Generator. http://code.google.com/p/cfcgenerator/downloads/list - Original Message - From: Marco Antonio C. Santos [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, February 01, 2007 8:53 AM Subject: CFC DAO/Bean Generator

SQL QUestion

2007-02-01 Thread Bruce Sorge
I have a lot of duplicate information in a table. I know how to query to find the dupes, but I am having problems with deleting them (there are thousands). I tried this: DELETE FROM CODES WHERE Code = (SELECT Code, COUNT(Code) AS NumOccurrences FROM Codes GROUP BY Code HAVING ( COUNT(Code) 1 ))

RE: previous date

2007-02-01 Thread Orlini, Robert
Thanks all. Fixed! -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 11:50 AM To: CF-Talk Subject:RE: previous date You want #DateFormat(Now()-1, dd)# -Original Message- From: Orlini, Robert [mailto:[EMAIL

Re: SQL QUestion

2007-02-01 Thread Doug Brown
Bruce, One way to accomplish this is to query your (unique) records and populate another table with the same structure with that data. Once it is done, then you can re-populate that table from the table you created. Hope that makes sense. Doug B. - Original Message - From: Bruce

RE: SQL QUestion

2007-02-01 Thread Adrian Lynch
Without looking too hard, would using a TOP 1 in the sub select work? -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: 01 February 2007 17:26 To: CF-Talk Subject: SQL QUestion I have a lot of duplicate information in a table. I know how to query to find the dupes,

Re: SQL QUestion

2007-02-01 Thread Jim Wright
Bruce Sorge wrote: I have a lot of duplicate information in a table. I know how to query to find the dupes, but I am having problems with deleting them (there are thousands). I tried this: DELETE FROM CODES WHERE Code = (SELECT Code, COUNT(Code) AS NumOccurrences FROM Codes GROUP BY

Re: SQL QUestion

2007-02-01 Thread Bruce Sorge
OK, I figured it out pretty much. So now I have this: CREATE TABLE #tempduplicatedata ( Code NVARCHAR(20) ) --Identify and save dup data into temp table INSERT INTO #tempduplicatedata SELECT Code FROM Codes GROUP BY Code HAVING COUNT(Code) 1 --Confirm number of dup rows SELECT @@ROWCOUNT AS

Re: CFC DAO/Bean Generator

2007-02-01 Thread David Mineer
I was looking for a code generator a few weeks ago. I was using http://rooibos.maestropublishing.com/ for generating beans. It was great, but I wanted something for my DAO CRUD methods also. I spent a night figuring out Transfer ORM (ttp://www.compoundtheory.com/?action=transfer.index) and I

RE: SQL QUestion

2007-02-01 Thread Russ
I actually bloged about this earlier this month. See here: http://www.ruslansivak.com/index.cfm/2007/1/10/Deleting-duplicate-rows-from- SQL-Server Russ -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 12:26 PM To: CF-Talk Subject:

Re: SQL QUestion

2007-02-01 Thread Paul Hastings
Bruce Sorge wrote: I have a lot of duplicate information in a table. I know how to query to find the dupes, but I am having problems with deleting them (there are thousands). I tried this: create a clone of your table but make your key duplicated column as a unique key setting the index to

RE: BUG in cfchart url??

2007-02-01 Thread Brad Wood
So does the lack of reply mean no one has ever heard of this? I guess I could go submit it as a bug to Adobe. I just did a Google search and the only hit I could find was a link to my original post. (Wow, the Google bots are FAST) Does someone have the link handy to submit a bug to Adobe?

OT: sql question

2007-02-01 Thread Tim Do
I have a stored procedure that is taking 15-20 seconds to run. However, if I take the query inside the stored procedure and run it... it only takes 2-3 seconds. I've read something about parameter sniffing but not sure if it applies to my stored procedure. Here is my sp: CREATE PROC

RE: sql question

2007-02-01 Thread Brad Wood
How many records are coming back? How are you calling it? I have ran tests before for where running exec sp_name in side of a cfquery was faster than cfstoredproc. Just a thought. Also are you sure the stored proc is really taking 20 seconds to run OR is the CF page just taking 17 seconds to

RE: sql question

2007-02-01 Thread Gaulin, Mark
You may want to recompile the sp... It may have been compiled before the statistics for the tables involved were updated. You could check the query plan of the sp vs. the query to see how they differ. (Not sure what db you are using...) Mark -Original Message- From: Tim Do

Re: cfdirectory loading time issue

2007-02-01 Thread Keith McGee
LISTINFO=name is great for performance, Question this removes all information about the file/directory. So in a cftree how would you define the difference between a file and directory? ~| Upgrade to Adobe ColdFusion MX7

Re: Links to Network shares in Safari

2007-02-01 Thread Zaphod Beeblebrox
as a warning, it's probably going to stop working on IE7. At least that's been our experience with our intranet. On 2/1/07, Jacob Munson [EMAIL PROTECTED] wrote: I've got some local users that use Macs, and one of our Intranet pages has videos that people can view. This works in IE, but not

Variables Magically Vanish?

2007-02-01 Thread Patrick Farabee
I have addressed this particular annoyance by putting an isdefined() check on my value before attempting to use it, but does anyone know what could cause this? In the beginning of a CFM page, I have: cfset ST_userid='' This is not in any block other than the main body of the script... that is,

Variables Magically Vanish?

2007-02-01 Thread Patrick Farabee
I have addressed this particular annoyance by putting an isdefined() check on my value before attempting to use it, but does anyone know what could cause this? In the beginning of a CFM page, I have: cfset ST_userid='' This is not in any block other than the main body of the script... that is,

Re: Links to Network shares in Safari

2007-02-01 Thread Jacob Munson
Thanks for the warning, but I just tried it in IE 7 and it works fine. On 2/1/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: as a warning, it's probably going to stop working on IE7. At least that's been our experience with our intranet. On 2/1/07, Jacob Munson [EMAIL PROTECTED] wrote:

GoDaddy and FlashForms

2007-02-01 Thread Bruce Sorge
Anyone using GoDaddy and have Flash Forms running? I just loaded an app and my flash forms are not showing. I can look at the source and see that everything is there for Flash, but nothing shows up. http://www.daleprizes.com/index.cfm is the first page where the form should appear. I am working

Disregard GoDaddy Flash Form

2007-02-01 Thread Bruce Sorge
Well I just found out that is working. Something is up with IE, it works great in FF. Funny thing is, It works on my machine! -- Bruce Sorge I'm a mawg: half man, half dog. I'm my own best friend! ~| Upgrade to Adobe

Re: OT-Image Maps

2007-02-01 Thread Patrick Farabee
Not that I would ever suggest using something this resource intensive on a website, but you might want to check out the javascript vector graphics project at: http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm With some hacking and slashing you might be able to make his stuff workable as you

RE: GoDaddy and FlashForms

2007-02-01 Thread Andy Matthews
I'm getting some sort of js error in IE7. Line 42 (object expected). -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 2:01 PM To: CF-Talk Subject: GoDaddy and FlashForms Anyone using GoDaddy and have Flash Forms running? I just loaded an

Re: GoDaddy and FlashForms

2007-02-01 Thread Bruce Sorge
Yeah, me too. weird thing is that it works fine in Firefox and not IE. Bruce Sorge I'm a mawg: half man, half dog. I'm my own best friend! On 2/1/07, Andy Matthews [EMAIL PROTECTED] wrote: I'm getting some sort of js error in IE7. Line 42 (object expected).

Validating dates based on select field?

2007-02-01 Thread mjs
Hi All, I have a form that I am trying to fulfill the following scenario. Does anyone have any advise/solutions? I have a registration form. On the form are the following fields: US State Pulldown Country Pulldown 5 Night Hotel Pulldown 3 Night Hotel Pulldown Arrival Date (pop-up calendar)

Re: GoDaddy and FlashForms

2007-02-01 Thread Bruce Sorge
Here is what is on line 42: script type=text/javascript charset='utf-8' CF_RunContent('object id=\'CFForm_1\' classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-44455354\' codebase=\' http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,14,0\' width=\'100%\' height=\'100\' \n

Re: Validating dates based on select field?

2007-02-01 Thread Patrick Farabee
Are you looking for a CF solution or are you looking to validate using javascript before the form is submitted? If you are looking for CF solution, then DateDiff() is your friend. It's basically just DateDiff(D,startdate,enddate) to get the difference in days between two dates... so

Re: Validating dates based on select field?

2007-02-01 Thread Christopher Jordan
I'd suggest using AJAX to allow ColdFusion to do the form validation without the page needing to refresh. This solution would really be a combination of JavaScript and CF. Patrick Farabee wrote: Are you looking for a CF solution or are you looking to validate using javascript before the form

RE: GoDaddy and FlashForms

2007-02-01 Thread Dave Watts
Anyone using GoDaddy and have Flash Forms running? I just loaded an app and my flash forms are not showing. I can look at the source and see that everything is there for Flash, but nothing shows up. http://www.daleprizes.com/index.cfm is the first page where the form should appear. I am

Re: GoDaddy and FlashForms

2007-02-01 Thread Doug Brown
This probably has absolutely nothing to do with it but...Do you have access to the cfide directory on the server? I know other people have had similar issues and had to set a copy of the cfide in the root of their site. Doug B. - Original Message - From: Bruce Sorge [EMAIL PROTECTED]

Re: GoDaddy and FlashForms

2007-02-01 Thread Bruce Sorge
I am not sure. Need to ask the techs that question. However, I would guess that it is since the application works fine in FF but not in IE (have not gotten around to downloading/installing Netscrape to test). Bruce Does the appropriate virtual directory for /CFIDE exist? Dave Watts, CTO,

Re: GoDaddy and FlashForms

2007-02-01 Thread Doug Brown
I can see it in nutscrape Doug B. - Original Message - From: Bruce Sorge [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, February 01, 2007 3:30 PM Subject: Re: GoDaddy and FlashForms I am not sure. Need to ask the techs that question. However, I

Re: GoDaddy and FlashForms

2007-02-01 Thread Bruce Sorge
Thanks. I emailed their tech support. Hopefully I will hear from them soon, otherwise I have to redo the site using HTML forms. I suppose I could do a browser check, and if they have IE then direct them to an HTML version and FF/NS users get to see the pretty flash. Naw, need to get the issue

Re: GoDaddy and FlashForms

2007-02-01 Thread Doug Brown
Bruce, Look like this has been an issue for alot of people. Copy your cfide over from your dev box to your root directory and make sure that the cf_RunactiveContent.js is in there. Doug B. - Original Message - From: Doug Brown [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com

RE: Reading from an Excel file through ColdFusion.

2007-02-01 Thread Ben Nadel
Hussain, I am not sure why that would be erroring. I have tested with with multiple sheets and it seems to work nicely. It is, however, very early in the development stage, so it is bound to be buggy. If you send me the XLS file you are using, I can play around with it (ben [ .at. ]

RE: Interacting with SOAP

2007-02-01 Thread Ben Nadel
Tony, I ran into very similar problems when I tried to create my first Web service. The STUB file gets created and then you either have to reset it or update it manually. I am not sure. I found some great notes on it on bprucell.org and then came up with this:

RE: BUG in cfchart url??

2007-02-01 Thread Brad Wood
Man, I'm talking to a wall with this one I guess. SOMEBODY has to have that bug submission form for Adobe though. I think it ends with /wish. ~Brad -Original Message- From: Brad Wood Sent: Thursday, February 01, 2007 12:45 PM To: CF-Talk Subject: RE: BUG in cfchart url?? So does the

Re: Interacting with SOAP

2007-02-01 Thread Robertson-Ravo, Neil (RX)
The problem I think is Axis/CF will never be able to consume a non-rpc, ColdFusion based web service unless all it returns is a simple string. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,

Re: BUG in cfchart url??

2007-02-01 Thread Robertson-Ravo, Neil (RX)
Indeed, www.Adobe.com/go/wish This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is

Re: BUG in cfchart url??

2007-02-01 Thread Robertson-Ravo, Neil (RX)
And no, the Google bots are not FAST :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

RE: BUG in cfchart url??

2007-02-01 Thread Brad Wood
Lol Thanks for the link. Well, as far as the bots being fast, I posted this question to the list YESTERDAY. I Googled it TODAY and it was the FIRST result in the list. That sounds fast to me. Michael D said the other day that he has up to 6 bots hit houseoffusion.com in the same second.

Re: BUG in cfchart url??

2007-02-01 Thread Robertson-Ravo, Neil (RX)
My point was that FAST is a search engine (we use it) and that it is as good, if not better, than Google at it's job. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number

Ajax, RIA, and JavaScript

2007-02-01 Thread Brad Wood
Ok, here's a wide open question: We are going back through our application and trying to introduce more Ajax where we can to dynamically add content when we can instead of reloading the entire page. Example: we often use a tabbed interface, and for performance reasons, we only load the

RE: BUG in cfchart url??

2007-02-01 Thread Brad Wood
Lol *woosh* That was the sound of your joke flying over my head. ~Brad -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Thursday, February 01, 2007 5:37 PM To: CF-Talk Subject: Re: BUG in cfchart url?? My point was that FAST is a search engine (we use

CF and Windows Vista

2007-02-01 Thread John Cox
Perhaps this question has been raised and I have missed it, so apologies in advance. Has anyone had success installing the developer version of CF on Windows Vista? For some reason, the installer didn't configure IIS / CF (no mime, etc). It's been a while since I installed on XP with IIS or

Re: SQL QUestion

2007-02-01 Thread Jochem van Dieten
Bruce Sorge wrote: OK, I figured it out pretty much. So now I have this: CREATE TABLE #tempduplicatedata ( Code NVARCHAR(20) ) --Identify and save dup data into temp table INSERT INTO #tempduplicatedata INSERT INTO #tempduplicatedata (code) SELECT Code FROM Codes GROUP BY Code

Re: Multiple Instances and Virtual Directories...

2007-02-01 Thread Jochem van Dieten
Matthew Williams wrote: How am I the lucky one to find all the odd-ball issues. Because you don't tell your customers that running multiple clusters on one server and / or multiple clusters in one site is not supported beforehand :) Jochem

Re: SQL QUestion

2007-02-01 Thread Bruce Sorge
Damn! Always the simple shit that gets me. Thanks. On 2/1/07, Jochem van Dieten [EMAIL PROTECTED] wrote: Bruce Sorge wrote: OK, I figured it out pretty much. So now I have this: CREATE TABLE #tempduplicatedata ( Code NVARCHAR(20) ) --Identify and save dup data into temp table

Re: CF and Windows Vista

2007-02-01 Thread Bruce Sorge
I had the same problem on my XP Pro machine. When setting up CF, it is going to ask you where the IIS is residing (or something like that). Instead of selecting the default server, you need to actually point it to the inetpub/wwwroot directory. I know I have the naming wrong but I think that you

Re: Ajax, RIA, and JavaScript

2007-02-01 Thread Rey Bango
Brad, It sounds like what you're asking for is on-demand loading of JS or packaging. Try taking a look at these links for suggestions: http://www.nabble.com/dynamic-plugin-loading-tf2889880.html#a8077929 http://www.jspax.org/ Rey Brad Wood wrote: Ok, here's a wide open question:

Re: Multiple Instances and Virtual Directories...

2007-02-01 Thread Matthew Williams
Please point me to any document stating as much. Now, if the customers would write better code (rather their developers), I would have much fewer issues ;). Since they don't, and it takes near to 6 months to a year to affect changes, this is the only path I have to travel down. Please keep

Session not being maintained

2007-02-01 Thread Kevan Stannard
Hi I have an application on our server that is not being maintained across pages. I have set up a test directory with only two files: Application.cfm -- cfapplication name=test clientmanagement=Yes sessionmanagement=Yes

Re: Session not being maintained

2007-02-01 Thread AJ Mercer
does you browser accept cookies? try this for your refresh link a href=#urlSessionFormat('index.cfm')#Refresh/a ColdFusion works out if it needs to append CFID and CFTOKEN to the URL - like if cookies are not enabled. On 2/2/07, Kevan Stannard [EMAIL PROTECTED] wrote: Hi I have an

Re: Session not being maintained

2007-02-01 Thread AJ Mercer
does you browser accept cookies? try this for your refresh link a href=#urlSessionFormat('index.cfm')#Refresh/a ColdFusion works out if it needs to append CFID and CFTOKEN to the URL - like if cookies are not enabled. On 2/2/07, Kevan Stannard [EMAIL PROTECTED] wrote: Hi I have an

RE: Session not being maintained

2007-02-01 Thread Kevan Stannard
I have tested on a number of machines and all are set to allow cookies. I have tested in IE7 and IE6 with the same behaviour, but Firefox 2.0 seems to be fine. I have also tries changing the privacy setting within IE to allow all cookies for our test internal server, but the problem continues.

Re: Session not being maintained

2007-02-01 Thread James Holmes
OK, so you aren't using J2EE session variables, which means that persistent cookies are being set (rather than session-based ones); these are often treated more harshly by cookie blockers. Check again for the cookie settings in IE or any toolbars/helpers loaded into IE, as this is the problem. On

Re: Session not being maintained

2007-02-01 Thread AJ Mercer
Hi James, Is there any overhead using j2ee session variables? Is there any reason why you wouldn't want to activate them? On 2/2/07, James Holmes [EMAIL PROTECTED] wrote: OK, so you aren't using J2EE session variables, which means that persistent cookies are being set (rather than

RE: Session not being maintained

2007-02-01 Thread Kevan Stannard
Thanks James These are standard installs of IE with no fiddling with cookie settings AFAIK. No toolbars/helpers present on any of the test browsers. I have tried accessing my test page from both internally and externally and get the same results. I have also added the sites to the trusted sites

Re: Session not being maintained

2007-02-01 Thread James Holmes
No extra overhead of which I am aware. The difference in behaviour, when cookies are enabled, is that the session ends when the user closes the browser (or at the timeout, of course) rather than staying current between the browser opening and closing.This may or may not be a problem. J2EE sessions

Re: Session not being maintained

2007-02-01 Thread James Holmes
OK, for some reason the browser isn't accepting/setting the correct cookies, regardless of what it claims. Perhaps delete all cookies form the browser and clear the cache - then see what happens. On 2/2/07, Kevan Stannard [EMAIL PROTECTED] wrote: Thanks James These are standard installs of IE

RE: Session not being maintained

2007-02-01 Thread Kevan Stannard
One additional bit of information: I am accessing this site via a subdomain: http://testsite.ourdomain.com.au/test/ Internally, I can access the same code via a server's name: http://testsite/test/ This second option IS retaining the session. -Original Message- From: James Holmes

RE: Session not being maintained

2007-02-01 Thread Kevan Stannard
Some more info: I am accessing the site from 1) http://testsite.ourdomain.com.au/ - not working 2) http://testsite/ - working When I ping these domains they return different IP addresses (both external IPs). Thanks -Original Message- From: Kevan Stannard [mailto:[EMAIL PROTECTED]

Re: Session not being maintained

2007-02-01 Thread Doug Brown
http://www.coldfusionmuse.com/index.cfm/2006/7/28/sessions.and.subdomains Hope this helps Doug B. - Original Message - From: Kevan Stannard [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, February 01, 2007 6:58 PM Subject: RE: Session not being maintained

Re: EQ vs IS

2007-02-01 Thread Claude Schneegans
I use is for numeric comparisons and eq for all others. How about IS EQ ? That would be more correct syntaxically ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

RE: Session not being maintained - Problem solved

2007-02-01 Thread Kevan Stannard
Problem solved. The subdomain we were using contained an underscore. test_site.ourdomain.com.au Of course I never thought to include that in my emails to the list! The underscore is not a valid domain name character. We switched to using a hyphen and suddenly our cookies (and sessions)

RE: Session not being maintained - Problem solved

2007-02-01 Thread Kevan Stannard
Problem solved. The subdomain we were using contained an underscore. test_site.ourdomain.com.au Of course I never thought to include that in my emails to the list! The underscore is not a valid domain name character. We switched to using a hyphen and suddenly our cookies (and sessions)

Re: EQ vs IS

2007-02-01 Thread Doug Brown
It would even be more Syntactically correct :-p Doug B. - Original Message - From: Claude Schneegans [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, February 01, 2007 7:39 PM Subject: Re: EQ vs IS I use is for numeric comparisons and eq for all others.

  1   2   >