Web Service - this gets error . can anyone see why?

2004-02-02 Thread Mike Kear
I want to consume a web service for converting currencies(at http://www.webservicex.net/CurrencyConvertor.asmx?wsdl )and I used the EXCELLENT implementation in DreamweaverMX to write the code.That drag and drop is an absolute gem for this! Anyway, the resulting page give an error and I cant see

RE: displaying comma delimited text

2004-02-02 Thread Pascal Peters
If it's just for html display you can use cfloop list=#yourList# indexi #i#br /cfloop OR #Replace(yourList,,,br,all)# -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: zondag 1 februari 2004 19:49 To: CF-Talk Subject: displaying comma delimited text Hello

from 4.5.1 to MX

2004-02-02 Thread Steff
Hello I wan't to know what I should think to avoid problems when I will migrate my coldfusion applications from ColdFusion Server 4.5.1 to ColdFusion Server MX. Can you tell me more or give me urls? Thanks Cordially Steff Stphane Vauclaire c.com production +352 48 30 15 21 02 [EMAIL

Re:cftransaction HELP Please...

2004-02-02 Thread Spectrum Web
Right?? It's possible to insert another CF scripts inside cftransaction tags? Do you recommend? Thanks once again This is possible. However, you have an error with your cftransaction tags. They ALWAYS require an end tag. cfif IsOK cftransaction action="" cfelse cftransaction action = ""

Any ideas??

2004-02-02 Thread [EMAIL PROTECTED]
I keep getting the error: 8170f80c-8436-483b-84b5-ee351daffc0f must be interprettable as a valid number in the current locale. Without getting into too much detail ,all I am doing in the code is a QoQ on a query containing a few int and varchar columns, along with a SQL GUID column. We are

RE: Web Service - this gets error . can anyone see why?

2004-02-02 Thread Michael Traher
Hi Mike, I'm a bit of a novice at this stuff but I have found that just putting the webservice URL into my browser and then taking a look at the XML displayed is a useful way to solve these kind of issues if there is no better documentation. >From a quick look I would say that rather then two

Re: Web Service - this gets error . can anyone see why?

2004-02-02 Thread Stephen Moretti
Mike, The issue you have is that Currency, which is the data type for fromCurrency and toCurrency is an enumerated data type. There is a issue with CF/Axis and enumerated types.I believe that Macromedia is aware of it, but have no idea what the status is or if there is a decent work around.

Re: OT: Scrolling Div

2004-02-02 Thread Thomas Chiverton
On Saturday 31 Jan 2004 15:18 pm, Ubqtous wrote: .notes-box {background-color : White; overflow : auto; height: 200px; border : 1px solid Silver;} Is there a live example of that working anywhere ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL

RE: from 4.5.1 to MX

2004-02-02 Thread Darren Daniel
Try http://www.macromedia.com/devnet/mx/coldfusion/migrating.html -Original Message- From: Steff [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 10:03 To: CF-Talk Subject: from 4.5.1 to MX Hello I wan't to know what I should think to avoid problems when I will migrate my coldfusion

RE: cftransaction HELP Please...

2004-02-02 Thread Pascal Peters
It is possible, but I do not recommend. -Original Message- From: Spectrum Web [mailto:[EMAIL PROTECTED] Sent: maandag 2 februari 2004 10:19 To: CF-Talk Subject: Re:cftransaction HELP Please... Right?? It's possible to insert another CF scripts inside cftransaction tags? Do you

Re: OT: Making Combo Box from select

2004-02-02 Thread David Fafard
maybe http://www.mattkruse.com/_javascript_/autocomplete/ dave - Original Message - From: Andy Ousterhout To: CF-Talk Sent: Sunday, February 01, 2004 7:36 PM Subject: RE: OT: Making Combo Box from select Thanks.I've already incorporated what you sent into my code. -Original

Re: from 4.5.1 to MX

2004-02-02 Thread Doug White
CFMX comes with a utility called code analyzer. You can run this against each web site and it will list any function or syntax that will need to be changed in order to run without error. When we moved from CF 5.0 on several web sites, after running the Code Analyzer, we found all of then ran just

Re: Storing SQL SP's in VSS]

2004-02-02 Thread Dan O'Keefe
Michael Wolfe wrote: I found a nice little app called SQL Source Control. It takes Query Analyzer, mixes it with VSS, and adds a dash of IntelliSense.What you get is a very nice IDE for SQL development, and you get projects that are integrated with VSS. Sweet! Almost forgot the URL...

RE: CFMX 6.1, JDBC, settings??

2004-02-02 Thread Douglas.Knudsen
We are using the standard driver that ships with CFMX.We are running the J2EE install on JRun. thanks for the FYI Doug -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 7:12 PM To: CF-Talk Subject: RE: CFMX 6.1, JDBC, settings?? My DBA

configure cf server

2004-02-02 Thread Won Lee
Hello, I know I asked this question last week, but I am at a lose. Perhaps it just got lost as the subject started to shift away from my initial question. For the life of me I can not create an ODBC datasource in CF 5.0 administrator. I know I must be doing something wrong somewhere.I just

RE: from 4.5.1 to MX

2004-02-02 Thread Jim Davis
The only problem I’ve seen is with COM objects (which MXs Java architecture doesn’t handle all that well).They should still work, but maybe not completely as expected. Also you should consider doing a serious performance analysis on the converted application.I’ve found that in some cases slow

RE: OT: Making Combo Box from select

2004-02-02 Thread Andy Ousterhout
David, Thanks. Andy -Original Message- From: David Fafard [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 7:22 AM To: CF-Talk Subject: Re: OT: Making Combo Box from select maybe http://www.mattkruse.com/_javascript_/autocomplete/ dave - Original Message - From:

RE: Any ideas??

2004-02-02 Thread Jim Davis
Well - that's a GUID value - are you calling it as a number anyplace? Trying to do math on it or use an aggregate mathematical function? Posting some code would be the best way to help. Jim Davis _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004

Weird: CF Debug info Firebird

2004-02-02 Thread Josh Remus
I'm just finally getting to the point where I'm using Firebird as my browser full-time.But I just realized the weirdest thing When I turn on debugging for a page, I see the debug info in IE, but not in Firebird on identical pages! If I view source on both browsers, I see the closing HTML

RE: Oracle Stored Procedure and CF 5.0

2004-02-02 Thread David Jones
This was exactly what I was looking for.But when I did it I created a package and pass the cursor from the procedure to the package. I did this because this is how it was explained on the macromedia website (I should have looked on the site before asking the question).Do I not have to do this? Was

RE: Weird: CF Debug info Firebird

2004-02-02 Thread Robert Bailey
I get debugging info on my firebird Robert Bailey Aesir Network Technologies Direct: (214) 432-5865 Main: (903) 238-8211 Support: (903) 238-8212 Toll Free: (877) 238-8211 Fax: (903) 238-8251 From: Josh Remus [mailto:[EMAIL

Re: Obtaining Request URL

2004-02-02 Thread Jamie Jackson
Unfortunately, we do Government work, so we can't rely on _javascript_. So the answer's no? ;-) Jamie On Thu, 29 Jan 2004 14:25:07 -0500, in cf-talk you wrote: You could just use _javascript_. That way it wouldn't matter what version of CF you are using. Ben -Original Message-

Re: Weird: CF Debug info Firebird

2004-02-02 Thread Stephen Moretti
I'm just finally getting to the point where I'm using Firebird as my browser full-time.But I just realized the weirdest thing When I turn on debugging for a page, I see the debug info in IE, but not in Firebird on identical pages! If I view source on both browsers, I see the closing

Re: Weird: CF Debug info Firebird

2004-02-02 Thread Jochem van Dieten
Josh Remus said: When I turn on debugging for a page, I see the debug info in IE, but not in Firebird on identical pages! If I view source on both browsers, I see the closing HTML tag, but on Firebird that's as far as it goes, while on IE it continues onto the debug info. I can understand

RE: CFMX 6.1, JDBC, settings??

2004-02-02 Thread Dave Watts
We are using the standard driver that ships with CFMX.We are running the J2EE install on JRun. What is the default isolation level within your database? Is it READ COMMITTED? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 [Todays Threads]

RE: Oracle Stored Procedure and CF 5.0

2004-02-02 Thread Plunkett, Matt
-Original Message- From: Rob Rohan Sent: Friday, January 30, 2004 12:00 PM To: CF-Talk Subject: Re: Oracle Stored Procedure and CF 5.0 cfstoredproc procedure=sp_login datasource=#request.dsn# debug=no cfprocparam dbVarName=ipaddress value=#cgi.REMOTE_ADDR# CFSQLtype=CF_SQL_VARCHAR

Re: Weird: CF Debug info Firebird

2004-02-02 Thread Thomas Chiverton
On Monday 02 Feb 2004 16:08 pm, Robert Bailey wrote: I get debugging info on my firebird :nods FB 0.7/Linux Can I recommend the excellent AdBlock plugin ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business

Re: Flash HTML Editor?

2004-02-02 Thread Thomas Chiverton
On Friday 30 Jan 2004 19:46 pm, Rob Rohan wrote: Does anyone know of a free flash or java html editor? (At any level of development) Perl and PHP both have methods for generating flash. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED]

RE: Oracle Stored Procedure and CF 5.0

2004-02-02 Thread David Jones
Yeah, I actually found all this information on the macromedia website right after I posted this.This is really cool, and works very nicely. I played with it this weekend, I really like that you can return multiple record sets with one procedure. Thanks, David -Original Message- From:

Re: Flash HTML Editor?

2004-02-02 Thread cf
lol, not quite what he meant ;) On Friday 30 Jan 2004 19:46 pm, Rob Rohan wrote: Does anyone know of a free flash or java html editor? (At any level of development) Perl and PHP both have methods for generating flash. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749

RE: Weird: CF Debug info Firebird

2004-02-02 Thread Josh Remus
Well, I don't running 0.7 on Windoze.Anyone else running this combo that can verify this problem?I don't have any weird plugins either (gestures, google toolbar, etc).My settings all look okay, although there doesn't seem to be a setting that would influence this.Hmpf. -Original Message-

RE: Web Service - this gets error . can anyone see why?

2004-02-02 Thread Tom Jordahl
Mike, Yes, enumeration is the problem here. I have fixed this, and I am working to try and get this fix available to customers. I apologize for this bug.No test for a situation means it doesn't work. Now we have an enumeration test. :-) In the mean time, try this workaround: cfscript ws =

RE: Weird: CF Debug info Firebird

2004-02-02 Thread Josh Remus
nevermind, I figured it out.A difference in the way firebird IE handle proxies, I had to specifically add the internal dev server to the don't proxy list, and then came the debug info. -Original Message- From: Josh Remus [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 11:42 AM

RE: Web Service - this gets error . can anyone see why?

2004-02-02 Thread JT
WebserviceX.NET is under maintenance. This site will be up soon Sorry for this inconvenience. Webservices Users ,Please use following IP addresstill maintenance complete. http://66.165.154.102/[Service Name] -Original Message- From: Tom Jordahl [mailto:[EMAIL PROTECTED] Sent: Monday,

CFC won't return variable

2004-02-02 Thread Bryan Stevenson
Hey All, I have a CFC that takes the FORM scope as an argument collection (do do some form data validation and spit back an errMsg var).I've verified that the code in the CFC is getting run, but no matter what (i.e. trying different var names etc.) it will NOT return the variable I specified in

Why Webservices Stink

2004-02-02 Thread Bryan F. Hogan
-Original Message- From: JT [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 11:49 AM To: CF-Talk Subject: RE: Web Service - this gets error . can anyone see why? WebserviceX.NET is under maintenance. This site will be up soon Sorry for this inconvenience. Webservices Users

Re: Why Webservices Stink

2004-02-02 Thread Matt Liotta
See http://archive.devx.com/javaSR/articles/guestop/liotta-1.asp for coverage on this topic. -Matt On Feb 2, 2004, at 11:54 AM, Bryan F. Hogan wrote: -Original Message- From: JT [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 11:49 AM To: CF-Talk Subject: RE: Web Service

RE: CFC won't return variable

2004-02-02 Thread Raymond Camden
How about sharing some code? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFC won't return variable

2004-02-02 Thread Bryan Stevenson
Well I don't think the code will help because the same code works elsewherebut here's the short version: !--- instantiate the Transaction component --- cfobject name=MyTx component=components.test !--- validate form data --- cfinvoke component=#MyTx# method=ChkCardInfo

RE: Why Webservices Stink

2004-02-02 Thread Bryan F. Hogan
Great Article! -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 12:09 PM To: CF-Talk Subject: Re: Why Webservices Stink See http://archive.devx.com/javaSR/articles/guestop/liotta-1.asp for coverage on this topic. -Matt [Todays Threads]

CFC getting lost?

2004-02-02 Thread Ian Skinner
Ok, I'm not really sure what is going on here, but this is very confusing. I've got a form that calls an action CFC that in turn calls a method of a CFC instance in the session scope.This CFC is a composite of several other CFC's that encapsulate different aspects of the system.Inside these CFC's

RE: CFC won't return variable

2004-02-02 Thread Raymond Camden
The code does help. You have a typo. retrunvariable should be returnvariable. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Flash HTML Editor?

2004-02-02 Thread Thomas Chiverton
On Monday 02 Feb 2004 16:41 pm, [EMAIL PROTECTED] wrote: Does anyone know of a free flash or java html editor? (At any level of development) Perl and PHP both have methods for generating flash. lol, not quite what he meant ;) Oops :-) ( ( ( ( free flash) or (java html) ) editor ) OR (

SOLVED: CFC won't return variable

2004-02-02 Thread Bryan Stevenson
FYI...it's best to spell returnvariable and not retrurnvariable LOL Just call me Monday Morning Loser Boy!! ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

Re: CFC won't return variable

2004-02-02 Thread Bryan Stevenson
LOL...thanks Ray ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Re:Obtaining Request URL

2004-02-02 Thread Jeremy Brodie
Jamie wrote: Unfortunately, we do Government work, so we can't rely on _javascript_. Could you elaborate why? Every US Government contract I've worked on did not prohibit the use of _javascript_. Also, could you elaborate what you are attempting to do? This way the group can figure out the best

help with modifying Forta shopping cart CFC

2004-02-02 Thread Jim
Posted this Friday but list traffic seemed light over the weekend so I'm reposting hoping to get some ideas... Recently upgraded from 4.5 to MX and am trying to leverage some of the new MX features.Currently reworking an old shopping cart and am trying to use the shoppingcart.cfc example in

Das cf eclipse plug-in

2004-02-02 Thread Rob Rohan
I worked on the cf plug-in this weekend a bit, and I am letting lose another version. I wont have time to work on it from this point for a while as I have to actually write cf code (get paid etc) hehehe - plus, to me, it's now in a pretty usable state. The new version is 1.0.8 and it has the

Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
Hi guys, I've got an update field where I'm. you guessed it, updating a table. I keep getting: [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria _expression_. My code is below: CFQUERY NAME=AgentDetails datasource=020

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Robert Redpath
Shouldn't #Form.PropertyAgentStreetNumber# be a text datatype? What if someone is 101A Main Street? As well as #Form.PropertyAgentTelephoneNumber#.Shoudn't that be a text datatype too? 555-555-1212 is text. As well as #Form.PropertyAgentContactMobile#. And therefore use ' around your

RE: CFMX 6.1, JDBC, settings??

2004-02-02 Thread Douglas.Knudsen
From the DBA...answer to Is it READ COMMITTED? - Yes, it is. That's also the oracle default. I did see in the jrun-resources.xml file this isolation-levelREAD_UNCOMMITTED/isolation-level but its part of a commented out block.This becasue of the 6 to 6.1 changes?I suspect so. The DBA is

Microsoft Data Access Internet Publishing Provider Protocol Discovery

2004-02-02 Thread Dave Carabetta
Using the cferror tag on our site to catch problems, I occasionally get error e-mails from clients who are using Microsoft Data Access Internet Publishing Provider Protocol Discovery as their browser (from the Error.Browser variable). I've been doing some research as to exactly what this is

Re: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread cf
make sure ur formatting the dates correctly going into the date/time fields of the db. access chokes if its empty or formatted wrong 99% of the time this is where that error message comes from Hi guys, I've got an update field where I'm. you guessed it, updating a table. I keep getting:

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Nathan Mische
I would also recommend using CFQUERYPARAM. cfquery name=AgentDetails datasource=020 UPDATE PropertyAgent SET PropertyAgentCompanyName = cfqueryparam value=#Form.PropertyAgentCompanyName# cfsqltype=CF_SQL_VARCHAR /, PropertyAgentFlatNumberHouseName = cfqueryparam

Re:Obtaining Request URL

2004-02-02 Thread MILAN MUSHRAN
Try a custom tag called verveCFGetURL on www.hotscripts.com From: Jeremy Brodie [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re:Obtaining Request URL Date: Mon, 02 Feb 2004 12:52:07 -0400 Jamie wrote: Unfortunately, we do Government work, so we can't rely

Re:Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stan Winchester
Another thing I would do is analyze at the results of the query in the actual error message before you use CFQUERYPARAM and see what values are actually being passed, though I agree you should use CFQUERYPARAM, but not during debugging. You may find you are passing a text string rather than a

CF Outlook

2004-02-02 Thread Kelly Matthews
I have a cf application where people can register for events. When they register a vcs file is created to import the event into their outlook calendar.It works fine but we found something weird happening recently.There is an event scheduled for April 16th, the time is from 12:00 - 1:00 yet when

RE: cftransaction HELP Please...

2004-02-02 Thread Spectrum WebDesign
Why? Performance loss? Security? - Original Message - From: Pascal Peters [EMAIL PROTECTED] Date: Mon, 2 Feb 2004 14:14:18 +0100 To: CF-Talk [EMAIL PROTECTED] Subject: RE: cftransaction HELP Please... It is possible, but I do not recommend. -Original Message- From: Spectrum

RE: CF Outlook

2004-02-02 Thread Ian Skinner
Could it also be time zone.Maybe how that one event was set up, Outlook thinks it is for the next time zone over and is adjusting accordingly? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA -Original Message- From: Kelly Matthews

SOT: Web server's www publishing service keeps shutting down

2004-02-02 Thread Earl, George
We are running CF 5.0 Enterprise on Windows 2003 Advanced Server with IIS 5.0. The server is a quad-processor (700MHz) with 4GB RAM and 2 NICs. We have a strange problem with our intranet site. On a fairly regular basis the WWW Publishing service shuts down rendering the web server invisible so

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
Actually Robert, yeah you are probably right about that.I will change them to text.But it still doesn't solve the very weird problem. -Original Message- From: Robert Redpath [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 18:37 To: CF-Talk Subject: RE: Simple UPDATE Stuff Driving Me

RE: cftransaction HELP Please...

2004-02-02 Thread Tom Kitta
Mainly performance loss, you don't want to hold a 'lock' on DB for too long. Keep anything inside cftransaction tag to the minimum, especially don't print long data results to the screen, or worse, do IO operations. TK -Original Message- From: Spectrum WebDesign [mailto:[EMAIL PROTECTED]

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
In my text field that the database received its info from is: cfinput name=PropertyAgentContactMobile type=text value=#AgentDetails.PropertyAgentContactMobile# size=25 maxlength=20 required=no class=formSTYLE2 Where it says type=text could I have put number?I have been HTMLing for years but

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
Maybe that could be part of the problem as there is a date field but it only gets filled on the insert when the user first joins up. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 19:02 To: CF-Talk Subject: Re: Simple UPDATE Stuff Driving Me

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
I've heard a lot about that cfqueryparam. why is it so important, what does it do? -Original Message- From: Nathan Mische [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 19:04 To: CF-Talk Subject: RE: Simple UPDATE Stuff Driving Me Insane... I would also recommend using

Re: Obtaining Request URL

2004-02-02 Thread Jamie Jackson
Hi Jeremy, You're right in that we can use JS, but as I wrote, we can't *rely* on it. IOW, we have to have some failsafe way to accomplish the same task if the user has JS turned off. This has to do with 508 compliance as well as specific client requirements. (Besides AFAIK, JS could only tell me

Re: Obtaining Request URL

2004-02-02 Thread Jamie Jackson
On Mon, 02 Feb 2004 19:06:28 +, in cf-talk you wrote: Try a custom tag called verveCFGetURL on www.hotscripts.com Hi Milan, Thanks for the reply, but this is actually less robust than mine, since it doesn't consider those less-often used URL bits (e.g. port). It only considers the server

RE: SOT: Web server's www publishing service keeps shutting down

2004-02-02 Thread Mike Brunt
George, when you say IIS shuts down does it literally show as stopped in the Services running list. Also do you have to manually restart it? Kind Regards - Mike Brunt Original Message --- We are running CF 5.0 Enterprise on Windows 2003 Advanced Server with IIS 5.0. The

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread cf
well there is your answer, you are trying to put an empty value in that date field and its throwing an error, i guarantee it. if i am wrong tony will pay u $100;) Maybe that could be part of the problem as there is a date field but it only gets filled on the insert when the user first joins up.

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Dave Watts
I've heard a lot about that cfqueryparam. why is it so important, what does it do? This should answer some of your questions: http://www.macromedia.com/devnet/mx/coldfusion/articles/cfqueryparam.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202)

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread cf
here u go straight from the mothership Error '80040e07' - Data type mismatch in criteria _expression_ Issue The SQL error 80040E07 occurs when attempting to use the Insert Record or the Update Record server behavior to set the value of a column in Microsoft Access with an empty string ().

RE: Obtaining Request URL

2004-02-02 Thread Dave Watts
This is more of an academic question (since I have working, albeit imperfect, workarounds): Is there a natural, server-side way to get the requested URL in CFMX? (A yes or no answer would be fine ;-) To the best of my knowledge, there's no single variable available within CFMX that contains

OT: IIS Headaches

2004-02-02 Thread David Keevil
Just finished a routine installation of IIS under WINXP-PRO but the results are anything but routine. Any attempt to access anything under http://127.0.0.1/ from the local machine triggers a Windows login prompt for a Username Password. Any help in resolving this issue would be much appreciated.

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Nathan Mische
I agree you should use CFQUERYPARAM, but not during debugging Interesting. I find using CFQUERYPARAM makes debugging easier as it generates very clear error messages such as: Error Executing Database Query. Invalid data 123-456-7890 for CFSQLTYPE CF_SQL_NUMERIC. [Todays Threads] [This

RE: IIS Headaches

2004-02-02 Thread Schuster, Steven
Just turn on Anonymous Access in the properties under IIS -Original Message- From: David Keevil [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 2:20 PM To: CF-Talk Subject: OT: IIS Headaches Just finished a routine installation of IIS under WINXP-PRO but the results are

RE: IIS Headaches

2004-02-02 Thread DURETTE, STEVEN J (AIT)
David, IIS tends to set integrated authentication on by default.Go into your iis website properties and make sure that only anonymous is checked under authentication. Steve -Original Message- From: David Keevil [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 2:20 PM To:

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Ian Skinner
Nope, just don't update it.You only need to update the fields you want to change, just ignore any you want to leave alone, so remove that line from SQL statement. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA -Original Message- From:

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Jerry Johnson
Can you send us an example of the exact info entered for the mobile number on the form that throws an error? It may be that the data being entered for the mobile number is having a hard time being wedged into a NUMERIC field. Jerry Johnson [EMAIL PROTECTED] 02/02/04 03:35PM So even though I

Re: SOT: Web server's www publishing service keeps shutting down

2004-02-02 Thread Won Lee
At 02:40 PM 2/2/2004 -0500, you wrote: We are running CF 5.0 Enterprise on Windows 2003 Advanced Server with IIS 5.0. The server is a quad-processor (700MHz) with 4GB RAM and 2 NICs. What do you use for a DB? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re:Obtaining Request URL

2004-02-02 Thread Jeremy Brodie
Jamie, See answers below Hi Jeremy, Jamie worte: You're right in that we can use JS, but as I wrote, we can't *rely* on it. IOW, we have to have some failsafe way to accomplish the same task if the user has JS turned off. This has to do with 508 compliance as well as specific client

Better way to deal with corrupted Verity (spider) collections?

2004-02-02 Thread Jamie Jackson
Once the following happens, I usually have to start everything from scratch (delete collection from filesystem and start from square one). Is there an easier way to recover from this? Thanks, Jamie C:\WINNT\system32SET path=c:\cfusion\verity\_nti40\bin\ C:\WINNT\system32vspider -cmdfile

RE: IIS Headaches

2004-02-02 Thread Stefan Salzbrunn
Also make sure that the Account used for anonymous access has the correct rights to all directories you are using... This might include the coldfusion dirs. Stefan Dr. Stefan Salzbrunn Geschftsfhrer InterLake - The Web Enabler

Re: SOT: Web server's www publishing service keeps shutting down

2004-02-02 Thread peter . tilbrook
IS CF5.0 even supposed to run under Win2003? CFMX wouldn't until version 6.1. Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Won Lee [EMAIL PROTECTED]To: CF-Talk [EMAIL PROTECTED]

Re: CF Outlook

2004-02-02 Thread peter . tilbrook
One of the machines is set on daylight savings time? Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Kelly Matthews [EMAIL PROTECTED]To: CF-Talk [EMAIL PROTECTED] gcc: Subject:CF

Re: Obtaining Request URL

2004-02-02 Thread Jamie Jackson
On Mon, 2 Feb 2004 15:27:16 -0500, in cf-talk you wrote: This is more of an academic question (since I have working, albeit imperfect, workarounds): Is there a natural, server-side way to get the requested URL in CFMX? (A yes or no answer would be fine ;-) To the best of my knowledge, there's

Re: Any ideas??

2004-02-02 Thread peter . tilbrook
Are you using ColdFusion's own CreateUUID() functions? These are not valid MSSQL UUID's. You need something like the MSSQLCreateUUID() UDF at http://www.cflib.org/udf.cfm?ID=512. Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding

RE: CF Outlook

2004-02-02 Thread Andy Ousterhout
Kelly, If this is an application that you can share, I'd love to see how you create the vcs file. Andy -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 12:28 PM To: CF-Talk Subject: CF Outlook I have a cf application where people can

Content Editor for the web

2004-02-02 Thread Michael Hodgdon
I am curious to find out peoples experiences with any content editors on the market.We are thinking about integrating eWebEditPro but wanted to know other options before committing. Anyone care to share? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Simple UPDATE Stuff Driving Me Insane...

2004-02-02 Thread Stuart Kidd
So even though I am not putting that into my UPDATE statement it still needs something in there?What if I don't want to put something in there. the date field is when they signed up.I don't want to change it. does that mean I have to read it on the previous form (as hidden text field) and then

RE: Content Editor for the web

2004-02-02 Thread Barney Boisvert
I've had less than stellar luck with eWebEditPro.I've had better luck with soEditor.Neither runs on a Mac, though eWeb does support Netscape.I just ran across KTML (http://www.interakt.ro/products/KTML/) this weekend, and it seems like it might be a good option IE6+ or Mozilla 1.4+, and it'll run

[Stats] CF-Talk: January 2004

2004-02-02 Thread Bill Doerrfeld
Searchable archives for this list are available at http://www.listsearch.com/cf-talk.lasso CF-Talk Stats January, 2004 Note: Up/Down % as compared with December, 2003 Posts:3182 (Up 11%) Authors: 392 (Up9%) Threads: 678 (Up 19%) Top 20 Contributors by Number of Posts Dave Watts125 Jochem van

Re: Content Editor for the web

2004-02-02 Thread Massimo, Tiziana e Federica
wanted to know other options before committing. http://www.fredck.com/FCKeditor/ http://www.cfmentor.com/code/index.cfm?action=""> If you use DW this can be worth too: http://www.massimocorner.com/beta/cf.htm Massimo Foti http://www.massimocorner.com Co-Author

RE: Content Editor for the web

2004-02-02 Thread peter . tilbrook
Or FCK Editor (Free) from http://www.fredck.com/FCKeditor/ and ActivEdit from http://www.cfdev.com/ Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Barney Boisvert [EMAIL

RE: Content Editor for the web

2004-02-02 Thread Rob Rohan
Well in their defense Safari is not done. Meaning some features wont work quite right. I found this out when trying to write a java html editor (http://www.rohanclan.com/products/openHTMLeditor.cfm if you want to see - the source part is the best :-D ) and found that you can't script between

Re: Obtaining Request URL

2004-02-02 Thread Jamie Jackson
Hi Jeremy, On Mon, 02 Feb 2004 16:17:30 -0400, in cf-talk you wrote: I understand the need to make sure applications work without the use of _javascript_. However, this client requirement has nothing to do with Section 508! Okay, instead of using the phrase section 508, I should have written

RE: Content Editor for the web

2004-02-02 Thread Barney Boisvert
Interesting.I didn't know that.Though KTML certainly isn't java, I wonder what they're using. -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 2:26 PM To: CF-Talk Subject: RE: Content Editor for the web Well in their defense Safari is

RE: Content Editor for the web

2004-02-02 Thread Rob Rohan
On Mon, 2004-02-02 at 14:37, Barney Boisvert wrote: Interesting.I didn't know that.Though KTML certainly isn't java, I wonder what they're using. Well whatever it is it doesn't work on linux + mozilla I go there and get a plain textarea that says KTML safe mode - if that helps ya any. (Someone

Re: Content Editor for the web

2004-02-02 Thread Michael Hodgdon
Hi Barney, what were some of the problems you have had with eWebEditPro?Were they mainly client interface issues or were you unsattisfied with the HTML that is generated? Michael S Hodgdon Web Development Project Manager 617 - 669 - 7183 [EMAIL PROTECTED] - Original Message - From:

RE: Content Editor for the web

2004-02-02 Thread cf
get josh duras flash one. works great. u can pop it up off a page to save space and post it to the insert cfm page, its quicker than making a reg one but its flash so it scares 1/2 u away On Mon, 2004-02-02 at 14:37, Barney Boisvert wrote: Interesting.I didn't know that.Though KTML certainly

RE: Content Editor for the web

2004-02-02 Thread Barney Boisvert
The biggest problem is that it's like a 7MB install for every computer that wants to use it.That was hell over phone lines.And then on several corporate networks, it's impossible for users to install software, so they had to have their IT folks install it for them. It's also very inflexible with

  1   2   >