Coldfusion and XML

2004-05-07 Thread David Ashworth
Forgive me if this is a very stupid question or in some way wrong, However, I think I need to send an XML feed back to a client from the server, the client machine is a touch screen that will remotely make a call to, I think, a file on our webserver that will run a query on the database and

RE: Coldfusion and XML

2004-05-07 Thread David Ashworth
Thanks for the tips so far Can this be done using CF5 as opposed to MX? Thanks, Dave -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 07 May 2004 15:55 To: CF-Talk Subject: Re: Coldfusion and XML On Friday 07 May 2004 14:37 pm, Tony Weeg wrote: look @

CFMAIL PARAM

2004-04-22 Thread David Ashworth
Afternoon I am coding an email to send data that the destination will read as an ini file, the original code done using JMail and ASP placed the code in the body of the email - and it is required that the following is used: MMail.ContentType = application/x-gm-impdata which in ColdFusion

RE: Popularity of Cold Fusion

2004-04-02 Thread David Ashworth
not sure how reliable the survey is given the statement: Other large enterprises utilising ASP.NET include British http://www.bt.com/ Telecom but a visit to bt.com defaults to: http://www.bt.com/index.jsp tesco too appears to use java servlets too or have I missed

db error

2004-03-22 Thread David Ashworth
Morning, I keep getting the following error when trying to update a database, haven't had any problems when doing this before but this error is peristent and I can't work out what the problem is: It appears to be a problem with the query as opposed to the data, the query is as follows: !---

RE: db error

2004-03-22 Thread David Ashworth
#, #get_funds.fundid#, '#previousValue#', #CreateODBCDate( Now())# } /cfquery -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: 22 March 2004 11:29 To: CF-Talk Subject: db error Morning, I keep getting the following error when trying to update a database, haven't had any

RE: db error

2004-03-22 Thread David Ashworth
cfquery name=update_funds datasource=#request.dsn# insert into fundprevious { thisday, fundid, fundvalue, timeofchange } values { #thisfundday#, #get_funds.fundid#, '#previousValue#', #CreateODBCDate( Now())# } /cfquery -Original Message- From: David Ashworth [mailto:[EMAIL

RE: db error

2004-03-22 Thread David Ashworth
ahem that fixed it pass the dunces cap -Original Message- From: Neculai Macarie [mailto:[EMAIL PROTECTED] Sent: 22 March 2004 13:11 To: CF-Talk Subject: Re: db error Replace { with (: cfquery name=update_funds datasource=#request.dsn# insert into fundprevious ( thisday, fundid,

RE: Fieldnames in Form scope gone...

2004-03-22 Thread David Ashworth
try using attributes.fieldname not sure you use form.fieldname do you? -Original Message- From: Steini [mailto:[EMAIL PROTECTED] Sent: 22 March 2004 14:40 To: CF-Talk Subject: Fieldnames in Form scope gone... Hi all, This one has been bothering me for a while. How can it be

RE: server session settings

2004-03-18 Thread David Ashworth
Thanks for the help so far now, I implemented this code in my fbx_settings file - however, cutting and pasting the the URL still allows a user to bypass the login, is there something I have missed? cfif fusebox.IsHomeCircuit cfapplication name=funds clientmanagement=Yes sessionmanagement=Yes

RE: server session settings - UPDATE

2004-03-18 Thread David Ashworth
that they want two browsers open with different logins, so I need different ids to be generated! Thanks in advance Dave -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: 18 March 2004 10:50 To: CF-Talk Subject: RE: server session settings Thanks for the help so far now, I

user friendly error pages in Fusebox

2004-03-17 Thread David Ashworth
Right I need to develop some friendly error pages to appear in my applications instead of the ones you get for SQL and Fusebox errors within Fusebox applications - these are the Error occured whilst processing reports pages. IS there anyway of making them more user friendly and incorporate

server session settings

2004-03-17 Thread David Ashworth
Good afternoon. On both my development server and live server I have an application running which requires login. I have two scenarios that are occuring despite both servers having the same session settings and using the same code: On the live server, if you log in on one browser, you can

get the CFAPPLICATION name

2004-03-16 Thread David Ashworth
might be a really easy one this, but how do I output the CFAPPLICATION name? was thinking request.applicationname or something along those links but haven't figured it out or been able to find the answer thanks in advance [Todays Threads] [This Message] [Subscription] [Fast

Customised Alert Boxes

2004-03-11 Thread David Ashworth
Is there anyway of customising alert boxes to make them look nicer and more user friendly. Alternatively, has anyone ever used a pop up window to act in the same way as an alert box - where you submit a form, the pop up comes up and you can either continue or cancel and close the box - presume

RE: Customised Alert Boxes

2004-03-11 Thread David Ashworth
To: CF-Talk Subject: RE: Customised Alert Boxes Modal dialogues are probably your best bet, though some browsers don't respond well with them.In Longhorn, that sounds like more of what they're going for. John Burns -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent

catching session timeouts

2004-03-04 Thread David Ashworth
Within a web app, using fusebox, how is the best way to check that the session hasn't timed out before going to a page that requires session variables - would it be in the fbx_switch file? all ideas appreciated thanks Dave [Todays Threads] [This Message] [Subscription] [Fast

upgrading to Coldfusion MX

2004-02-19 Thread David Ashworth
Hello, I am upgrading from Coldfusion 5 to Coldfusion MX 6.1 are there any known issues in doing so? what happens to 5 once 6.1 is installed, is it going to overwrite it? If so, are there any rollback issues if we do experience problems? Thanks in advance, Dave [Todays Threads]

testing procedures

2004-02-16 Thread David Ashworth
Can someone point me the direction of documentation that can be used for testing web apps developed using coldfusion? Any thing to do with usuability etc would also be useful. Thanks in advance, Dave [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Which is quicker

2004-02-12 Thread David Ashworth
you wouldn't have to code it twice using CFIF just have the CFIF around the checked parameter input type=checkbox name=cbox value=yes cfif x=ychecked/cfif -Original Message- From: Bill Grover [mailto:[EMAIL PROTECTED] Sent: 12 February 2004 12:47 To: CF-Talk Subject: RE: Which is

RE: Which is quicker

2004-02-12 Thread David Ashworth
doh still in the transitional phase from ASP to ColdFusion but you catch my drift -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: 12 February 2004 14:26 To: CF-Talk Subject: RE: Which is quicker or outside the tag: cfif x=y isChecked = checked else

Coldfusion and ASP

2004-02-11 Thread David Ashworth
is it possible to have Coldfusion and ASP execute on the same page? if so, how? thanks in advance [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cfmail

2004-02-11 Thread David Ashworth
this article shows you how to do that http://www.houseoffusion.com/cf_lists/index.cfm/method=messages http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadi d=126forumid=20 threadid=126forumid=20 -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]

accessing COM objects using Coldfusion

2004-02-10 Thread David Ashworth
Hello, I have installed the component aspZip.EasyZIP that is used to unzip files, here is the code in ASP: const AddDirNames= 1 const AddZipTime= 2 const AddRecurseDirs= 4 const AddHiddenFiles= 8 const AddEncrypt = 16 const AddSeparateDirs = 32 dim ZIP, zipItem1 set ZIP =

RE: accessing COM objects using Coldfusion

2004-02-10 Thread David Ashworth
on cfobject or cfscript?? -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: 10 February 2004 17:01 To: CF-Talk Subject: Re: accessing COM objects using Coldfusion Is Unzip a method? cfmzipper.UnZip; or cfmzipper.UnZip(); On Tue, 2004-02-10 at 08:56, David Ashworth wrote