RE: Form Filling w/ activePDF Toolkit

2004-09-10 Thread Micha Schopman
I am using Active PDF also, so I am also interested in form code examples :P .. Could you mail it to me also, if you have any bandwidth left ;) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo

RE: Report Generator - Crystal Reports?

2004-09-10 Thread Micha Schopman
Personally I would burn the Crystal Reports box... The quality of the software is so bad, it is unbelievable. I have to come up with one developer which actually likes Crystal Reports and indeed worked with it. - invalid formattings, you need to do a lote of odd save, close, and re-open things

Amazon AIMS

2004-09-10 Thread James Smith
Has anyone here managed to get Amazons AIMS system working with ColdFusion? I am pulling my hair out over this and Amazon are unable to help. I someone has even got it working in a different language (Perl or asp for example) that may help also. -- James Smith [EMAIL PROTECTED] [Todays Threads]

Re: Amazon AIMS

2004-09-10 Thread Stephen Moretti (cfmaster)
James Smith wrote: Has anyone here managed to get Amazons AIMS system working with ColdFusion? I am pulling my hair out over this and Amazon are unable to help. I someone has even got it working in a different language (Perl or asp for example) that may help also. Are you talking about

Re: WWOT: OS X for Intel?

2004-09-10 Thread Thomas Chiverton
On Friday 10 Sep 2004 05:11 am, Dave Watts wrote: pretty crappy Windows application. The only reason I use it is because it syncs easily with the iPod. So does WinAmp :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited

RE: reference in cfc

2004-09-10 Thread Pascal Peters
I believe the bugs have been fixed in a hotfix (hf53813_61). I have no errors on my server anymore. The hotfix introduces a bug with cfdump (of the cfcatch structure) I think. There were some discussions on that topic on this list. Pascal -Original Message- From: Michael Hodgdon

Re: poll DB

2004-09-10 Thread daniel kessler
I'm also working on a poll systems and I decided to keep the number for each option in the same table as the option and just increment the value for example id_poll (fk) id_poll_option (pk) poll_option poll_option_description poll_option_votes if you are going to put the votes in a

RE: Amazon AIMS

2004-09-10 Thread James Smith
Has anyone here managed to get Amazons AIMS system working with ColdFusion? I am pulling my hair out over this and Amazon are unable to help. I someone has even got it working in a different language (Perl or asp for example) that may help also. Are you talking about the Amazon

uploading jpegs - cffile

2004-09-10 Thread Daniel Kessler
I'm allow the upload JPG and GIF files to our server through a web page using cffile.In the accept, I had accept=image/jpeg,image/jpg,image/gif Still, I was told that there were files that were receiving a incorrect file type error, so after looking around I found that those files were of the

RE: uploading jpegs - cffile

2004-09-10 Thread Tangorre, Michael
http://www.hyperdictionary.com/dictionary/Progressive+JPEG Not too common in my experiences yet. We also ran into this issue awhile back. Michael T. Tangorre I'm allow the upload JPG and GIF files to our server through a web page using cffile.In the accept, I had

Re: uploading jpegs - cffile

2004-09-10 Thread daniel kessler
http://www.hyperdictionary.com/dictionary/Progressive+JPEG Not too common in my experiences yet. We also ran into this issue awhile back. ah. . . ah, right.I totally forgotabout them.I remember that Flash doesn't (or didn't) import them. thanks [Todays Threads] [This Message]

RE: poll DB

2004-09-10 Thread Ewok
Looks good to me, here is a layout from one I did… tbl_Polls PollID autonumber PK PollQuestiontext DateAddeddate/time PollStatus number tbl_PollAnswers AnswerIDautonumber PK PolIDnumber SortID number Tbl_PollResults ResultIDautonumber PK PollID number AnswerIDnumber

Re: uploading jpegs - cffile

2004-09-10 Thread joe velez
Are there any other types of jpegs or gifs that I should add to this list? You might consider adding PNG files. jv [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: uploading jpegs - cffile

2004-09-10 Thread daniel kessler
You might consider adding PNG files. Do browsers read those now? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

inserting structure data into a database

2004-09-10 Thread Tim Laureska
Just learning structures, but here goes: When I insert structure data into a database, it's inserted into each field as a comma delimited list. In this scenario, I'm inserting audio cassette tape information into the database from a form when multiple cassettes are entered at one time. There are

Re: uploading jpegs - cffile

2004-09-10 Thread joe velez
yes, thats why i mentioned it :) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: [Spam?] Re: uploading jpegs - cffile

2004-09-10 Thread Pascal Peters
Euh... YES -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: 10 September 2004 14:17 To: CF-Talk Subject: [Spam?] Re: uploading jpegs - cffile You might consider adding PNG files. Do browsers read those now? [Todays Threads] [This Message]

Re: Amazon AIMS

2004-09-10 Thread Adam Haskell
I never called it AIMS but I think if you are talking about the Merchant program feeds where you update stock, products ect then yes 2 other developer have. Myself and someone else I have been helping :) Adam H On Fri, 10 Sep 2004 12:37:11 +0100, James Smith [EMAIL PROTECTED] wrote: Has

RE: inserting structure data into a database

2004-09-10 Thread Micha Schopman
Serialize the struct using wddx, and insert the wddx package :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast

RE: inserting structure data into a database

2004-09-10 Thread Ewok
Does your structure, for some reason, look like this?? Title = “title1,title2,title3” Issue = “Issue1,issue2,issue3” IssueDate = “date1,date2,date3” Let’s see your structure/array code. I’m sure I’ve got a cfc around here somewhere that’ll fit your needs _ From: Tim Laureska

Re: inserting structure data into a database

2004-09-10 Thread Dick Applebaum
Tim One of the basic rules of good relational db design is that each entity (record, row, column) should be atomic -- represent only one thing, You should not insert a structure into a db Rather, insert each cassette as a separate row (record) in the db If there is a relationship among the

RE: poll DB

2004-09-10 Thread Ewok
This crap is getting annoying Your message is a reply to anothers post and is more than 100 lines of text. Unless you are a major writer, your probably adding a lot of the previous replies. Please trim your posts when replying. Thank you. Looks good to me, here is a layout from one I did…

Re: [Spam?] Re: uploading jpegs - cffile

2004-09-10 Thread Brendan Canty
If you want to allow png's, you will need to accept image/png and image/xpng. We had the same trouble with image/pjeg, but in our experience it was only IE that was causing this problem (as with the image/xpng). For what it's worth, Firefox played much nicer with cffile. Brendan On Fri, 10 Sep

RE: Amazon AIMS

2004-09-10 Thread James Smith
Then have you any idea why the following would return a NO_FILE_ATTACHED error? cfhttp method=post timeout=30 url=""> cfhttpparam type=filename=#FileName# file=#CurrentDirectory#BUFiles\#FileName# cfhttpparam type=cookie name=session-id value=(VARHEREREMOVED) cfhttpparam type=cookie

Re: inserting structure data into a database

2004-09-10 Thread Dave Francis
I absolutely second this. - Original Message - From: Dick Applebaum To: CF-Talk Sent: Friday, September 10, 2004 8:32 AM Subject: Re: inserting structure data into a database Tim One of the basic rules of good relational db design is that each entity (record, row, column) should be

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
Dick,when I first posed the question of how to insert multiple data entries at one time, the subject of structures and arrays came up and that's why I'm in this direction... is this the wrong direction for this effort? -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]

Re: uploading jpegs - cffile

2004-09-10 Thread daniel kessler
yes, thats why i mentioned it :) thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
body Wow, that was a great array of responses ...the code for inserting the data that I have played with initially is below.I'm really looking to understand what the best way of inserting data from a structure into a database... is this an illogical question to begin with? cfset me = structNew()

Re: Amazon AIMS

2004-09-10 Thread Adam Haskell
Ahh you are using flat filewe used XML . 2 things I suggest would be in the htto request define it is multiplart maybe add the mimetype for the file. If that fails try posting to yourself and look at how the post looks by dumping it. Adam H On Fri, 10 Sep 2004 13:43:34 +0100, James Smith

RE: inserting structure data into a database

2004-09-10 Thread Ewok
One of the basic rules of good relational db design is that each entity (record, row, column) should be atomic -- represent only one thing, I think that’s the problem he has noticed. Tim, Yes, your analysis is correct. You will have MANY problems with it this way, and Yes, you can use the

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
To follow-up on Dick's comments below.. that is my initial question ... is a structure appropriate for the scenario I described or is there a better way ... I see it as either use structures, but somehow break out the data from the structure into separate rows-OR- use some other method You should

RE: inserting structure data into a database

2004-09-10 Thread Steven Brownlee
To answer your most basic question, the best way to insert structure values into a database would be to parse each value of the structure into a local variable and insert those values.Structures are complex objects and database fields are simple constructs. Investigate looping over the values

Re: uploading jpegs - cffile

2004-09-10 Thread Claude Schneegans
Are there any other types of jpegs or gifs that I should add to this list? There is also jpe, a jpeg format + information about digital camera, etc. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send

Re: inserting structure data into a database

2004-09-10 Thread Dick Applebaum
1) you could insert a record into the db as you build each structure entry (cassette) 2) you could insert a record into the db as you display each structure entry (cassette) Does your input form allow multiple cassette entries on 1 form submission? If not, do you plan to store multiple form

Re: inserting structure data into a database

2004-09-10 Thread Dick Applebaum
Yes! What you should do is loop thru the multiple entries, and do a db insert for each entry. If you continue in the current direction (non-atomic) you will create a nightmare -- Just consider what you (and the db engine) will need to do to find records in the db: -- All cassettes with an

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
Here' the code I'm using cfset me = structNew() cfset me.mytitle = #form.title# cfset me.mydate1 = #form.date1# cfset me.mypublication = #form.publication# cfset me.myissue = #form.issue# cfset item1 = #me.mytitle# cfset item2 = #me.mydate1# cfset item3 = #me.myissue# cfoutput table cfloop

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
OK ... so much for a structure in this case ... now onto the challenge of creating the loop coding you reference I'm not sure whereI was convinced to go the structure route... If I may ask, what is a typical scenario when you DO use a structure? -Original Message- From: Dick Applebaum

RE: Amazon AIMS

2004-09-10 Thread James Smith
I did try the multipart=Yes and I also had text/plain as the mime type but neither of these gave any different results :-( Any other ideas? -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: 10 September 2004 14:10 To: CF-Talk Subject: Re: Amazon AIMS Ahh you

Re: Report Generator - Crystal Reports?

2004-09-10 Thread Mark Drew
Wouldnt a output XML and add XSLT for PDF and transformations help? MD On Fri, 10 Sep 2004 08:52:18 -0400, Rick Root [EMAIL PROTECTED] wrote: Jeff Chastain wrote: I am working on an application that will need to generate a wide variety of reports and invoices, preferable with output to

Connection Reset by peer?

2004-09-10 Thread Claremont, Timothy
Trying to execute a query that has worked just fine for months. Today I get this error message when I try to access the cfm page: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver]TCP/IP error, connection reset by peer. Any ideas as to what it means? -Tim [Todays Threads]

Eclipse?

2004-09-10 Thread Jake
All, I've downloaded and installed Eclipse (and CFEclipse) after much discussion here in order to compare to Homesite. Eclipse is just so HUGE. Is there a real advantage of it over HS or it just a comparable alternative? Thanks! Jake [Todays Threads] [This Message] [Subscription] [Fast

ColdFusion Blog

2004-09-10 Thread Eric Davis
Could someone recommend a Blog application that is written in ColdFusion? We are currently running ColdFusion Server Version 5, 0, 0, 0, on Windiws NT 4.0, Service Pack 6. Thanks! Eric Davis Webmaster, Worthington Public Library 820 High St. Worthington, Ohio 43085 E-mail: [EMAIL

RE: Eclipse?

2004-09-10 Thread Micha Schopman
I installed it, used it for 2 days to get a feeling, but I am back at my old editor. The color coding in CF eclipse is to bright and too basic, most is colored blue, and I am too lazy to find out how to change color codings ) As far as I could see, it was fast, stable, but I missed some

Re: Eclipse?

2004-09-10 Thread Mark Drew
I could wax lyrical here but cfeclipse (and eclipse) provide you with some different tools to do the job I have converted to CFEclipse completely now and miss very little of homesite (CFStudio) except RDS MD On Fri, 10 Sep 2004 08:41:34 -0500, Jake [EMAIL PROTECTED] wrote: All, I've

Re: ColdFusion Blog

2004-09-10 Thread John Beynon
Fuseblog, fusebox3 application runs on cf5 download from http://www.riahsoftware.com/downloads/fuseblog2.zip jb. On Fri, 10 Sep 2004 09:47:50 -0400, Eric Davis [EMAIL PROTECTED] wrote: Could someone recommend a Blog application that is written in ColdFusion? We are currently running

Re: ColdFusion Blog

2004-09-10 Thread Jaye Morris
Try this: http://www.camdenfamily.com/morpheus/blog/The blog is on the raight hand panel under My Tool.Have fun.. - Original Message - From: Eric Davis [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 09:47:50 -0400 Subject: ColdFusion Blog To: CF-Talk [EMAIL PROTECTED] Could someone recommend a

Re: charset issue

2004-09-10 Thread Douglas Knudsen
anyone? On Thu, 9 Sep 2004 17:22:49 -0400, Douglas Knudsen [EMAIL PROTECTED] wrote: running CFMX 6.1 on winblows with the almighty oracle.We are grabbing some data from another server running CFMX 6.1 on Unix with MySql via a webservice.Seems the data we get is not displaying correctly.Things

OT: JS checkboxes

2004-09-10 Thread Damien McKenna
OT again. I'm attempting to write a small bit of JS code to ensure that if a checkbox is selected that a) another checkbox is deselected and b) an alert is displayed, and then when the form is submitted it will also verify script language=_javascript_1.2 type=text/_javascript_ function

Re: inserting structure data into a database

2004-09-10 Thread Dick Applebaum
On Sep 10, 2004, at 6:37 AM, Tim Laureska wrote: OK ... so much for a structure in this case ... now onto the challenge of creating the loop coding you reference I'm not sure where  I was convinced to go the structure route... If I may ask, what is a typical scenario when you DO use a

Re: OT: JS checkboxes

2004-09-10 Thread S . Isaac Dealey
The first two issues I see are here: mySelect(f); 1) Any attribute in your (x)html beginning with on is an event-handler, and doesn't require the predecessor _javascript_:, so the attribute should read (The _javascript_: string is used in the href attribute of a link for instance because

Re: Eclipse?

2004-09-10 Thread Mark Drew
Window - Preferences -CFEclipse - CFML Colours Window - Preferences -CFEclipse - HTML Colours As for selecting the root dir right clickon your project root and select preferences CFEclipse Properties and you can add a project URL (this is opened up in the internal browser when you start up)

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
So, is this a reverse of what you were saying (don't use structures for the scenario I was describing) in that I could use a structure and break it apart to insert data in individual rows using the code below ?? Tim -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent:

RE: JS checkboxes

2004-09-10 Thread Joe Gooch
I'm assuming f is your form name. Firefox uses document.f to reference the form, instead of just the form name.I believe this is one of many things IE does that doesn't conform to standards. If I were you I'd use this.form instead, since it'll always reference the right object when called from

RE: Eclipse?

2004-09-10 Thread Micha Schopman
Interesting, I'll try to give it a shot again :-) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Best Practices Connecting CFMX to SQL Server?

2004-09-10 Thread Dave Watts
What are the best practices for connecting a CFMX web app (in a shared hosting environment) with SQL server 2000? I know not to use the sa account with a null password, but how restrictive can/should I get with permissions? You should be as restrictive as possible! Those are the best

Re: inserting structure data into a database

2004-09-10 Thread Dick Applebaum
On Sep 10, 2004, at 7:33 AM, Tim Laureska wrote: So, is this a reverse of what you were saying (don't use structures for the scenario I was describing) in that I could use a structure and break it apart to insert data in individual rows using the code below ?? Tim Not necessarily! If you

RE: WWOT: OS X for Intel?

2004-09-10 Thread Dave Watts
Yes, with a little different emphasis -- they (Apple) are an experience company that sells the bundle (hardware and software) that delivers the desired experience I am no expert, but I suspect that the typical PC comes with reasonably standard hardware that could deliver a pretty good

Re: charset issue

2004-09-10 Thread Mark Woods
running CFMX 6.1 on winblows with the almighty oracle.We are grabbing some data from another server running CFMX 6.1 on Unix with MySql via a webservice.Seems the data we get is not displaying correctly.Things like the - char display as a wierd backward E among other things.Is there a way to mod

RE: WWOT: OS X for Intel?

2004-09-10 Thread Dave Watts
joke I was playing with my PocketPC on the train the other day, and I realized the most robust and stable applications on windows is Solitaire and Notepad - neither have froze a system or had a buffer overflow exploit - perhaps the Solitaire team should write the OS :-D /joke You might

Re: Report Generator - Crystal Reports?

2004-09-10 Thread David Mineer
I think I might have sent this straight to David instead of to the list.If it double posts on the list, I apologize.If the attachment doesn't work on the list I will post somewhere else. This is a sample of the email I send out to those who inquire.I have had many inquiries so I have made a

Re: WWOT: OS X for Intel?

2004-09-10 Thread Larry Lyons
Apologies in advance for the WOT,but there is more knowledge practical brainpower on this list than , well anywhere I know of. When OSX was just a gleam in Apple's OS team, there was a project underway to develop a version of the Mac OS for intel systems in the early 90's - this was when Apple

Re: Connection Reset by peer?

2004-09-10 Thread Alexander Sherwood
At 09:40 AM 9/10/2004, you wrote: Trying to execute a query that has worked just fine for months. Today I get this error message when I try to access the cfm page: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver]TCP/IP error, connection reset by peer. Any ideas as to what it

Verity or a classic search?

2004-09-10 Thread Jean Marc Bottin
Hi guys, I looking for some advice. I have a DB with a table book which contains a field keywords. This field will be fill in with word separated by comma like (IT, Computer, Coldfusion, CFML, Web). This field can be updated and key words can be added or deleted. The user will use an UI with

Re: ColdFusion Blog

2004-09-10 Thread John Beynon
he said he only has v5 cold fusion, rays blog uses cfcs - only available in v6 and above :) On Fri, 10 Sep 2004 09:56:51 -0400, Jaye Morris [EMAIL PROTECTED] wrote: Try this: http://www.camdenfamily.com/morpheus/blog/The blog is on the raight hand panel under My Tool.Have fun.. -

Re: CFEclipse 1.1.16 released

2004-09-10 Thread Dave Carabetta
Trying to download this, but the link on the tigris site leads to an error: No matches to your request were found. Any ideas? Regards, Dave. On Thu, 9 Sep 2004 17:44:54 -0700, Spike [EMAIL PROTECTED] wrote: Just thought I'd let you all know we put out a newrelease of cfeclipse today. We

Re: ColdFusion Blog

2004-09-10 Thread Jaye Morris
that's sad :-(.He's missing out on all the fun. - Original Message - From: John Beynon [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 16:13:14 +0100 Subject: Re: ColdFusion Blog To: CF-Talk [EMAIL PROTECTED] he said he only has v5 cold fusion, rays blog uses cfcs - only available in v6 and

Re: Verity or a classic search?

2004-09-10 Thread Lawrence Ng
i'd stick with verity myself because you could use various search tools/processing techniques like soundex, etc. [EMAIL PROTECTED] 9/10/2004 8:12:25 AM Hi guys, I looking for some advice. I have a DB with a table book which contains a field keywords. This field will be fill in with word

Re: Verity or a classic search?

2004-09-10 Thread Andrew Dixon
Personally I would use a verity search as you get a summary and score returned so you can create a results output similar to Google which most people are now fimilar with. Andrew. - Original Message - From: Jean Marc Bottin [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 17:12:25 +0200 Subject:

Re: Report Generator - Crystal Reports?

2004-09-10 Thread Larry Lyons
Well at the rate the client keeps growing this project, it may never get finished.I had heard about some of the reporting in Blackstone, but no details.I signed up for the beta, but I guess I will have to wait. Any other solutions out there if Blackstone is not ready or suitable? Thanks --

Re: WWOT: OS X for Intel?

2004-09-10 Thread Dick Applebaum
On Sep 10, 2004, at 8:08 AM, Larry Lyons wrote: Apologies in advance for the WOT,  but there is more knowledge practical brainpower on this list than , well anywhere I know of. When OSX was just a gleam in Apple's OS team, there was a project underway to develop a version of the Mac OS for

Re: Verity or a classic search?

2004-09-10 Thread Douglas Knudsen
go with verity.Which will be faster?Probably depends on volume of data really.Which is more robust out of the box? Verity. Doug - Original Message - From: Andrew Dixon [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 16:23:07 +0100 Subject: Re: Verity or a classic search? To: CF-Talk [EMAIL

Re: OT: JS checkboxes

2004-09-10 Thread Damien McKenna
On Sep 10, 2004, at 10:16 AM, S. Isaac Dealey wrote: 1) Any attribute in your (x)html beginning with on is an event-handler, and doesn't require the predecessor _javascript_:, so the attribute should read > OK, that worked well. 2) I don't see where a value is being set for a global variable

RE: inserting structure data into a database

2004-09-10 Thread Tim Laureska
Dick... thanks for all your help.. I think I'm going to try to get this structure scenario to work in this case, just so I have the experience and get exposed to the coding... I've got some e-commerce apps coming up that I'm sure will make the experience worthwhile -Original Message-

Re: ColdFusion Blog

2004-09-10 Thread Jake .
Could someone recommend a Blog application that is written in ColdFusion? We are currently running ColdFusion Server Version 5, 0, 0, 0, on Windiws NT 4.0, Service Pack 6. Check out BlogFusion (www.countersinkdg.com). I've written it for MX, but I've had several people modify it pretty quickly

Re: charset issue

2004-09-10 Thread Douglas Knudsen
thanks for the input Mark. hmm, the webservice is built in CF pulling from a MySQL DB all on SunOS 5.8. I was wondering, the DSN setup in CFAdmin has a ckbox for 'Enable Unicode...' wondering if this might cure it.Thoughts? using some stupid replacing like this function at the moment, but its

Re: CFEclipse 1.1.16 released

2004-09-10 Thread Nathan Strutz
Yes, the download link is broken. Looks like Ollie forgot to upload the build. Best bet is to install it through eclipse's auto-update feature. It actually makes it very easy to set up and keep it updated. That's under help software updates find and install, then make a new update site with

RE: Amazon AIMS

2004-09-10 Thread James Smith
Using the more than one way to skin a cat method of programming I have switched from cfhttp to cfexecute and cURL.exe and that is working fine so I can only assume it is something that cfhttp isn't doing quite right. -- Jay -Original Message- From: James Smith [mailto:[EMAIL

Re: Verity or a classic search?

2004-09-10 Thread Jean Marc Bottin
Thanks for your advice, guys. Jean-Marc Douglas Knudsen wrote: go with verity.Which will be faster?Probably depends on volume of data really.Which is more robust out of the box? Verity. Doug - Original Message - From: Andrew Dixon [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 16:23:07 +0100

Re: ColdFusion Blog

2004-09-10 Thread Terry Troxel
If the author of the program is selling the program, don't you think he sould make these few tweaks that are needed to make it work in CF5 rather then having someone buy the app and not know what these tweaks are or what to do. Thats' usually why someone buys an app rather then write their own.

RE: ColdFusion Blog

2004-09-10 Thread Mark W. Breneman
I have been looking for the exact same thing now for a few weeks. I am Kinda hoping to find something with RSS 1.0 or better support. Check out http://www.daydreaminc.com/demoblog/index.cfm it is simple basic Blog that would be a really good starting point to build something personalized

RE: Amazon AIMS

2004-09-10 Thread Russ
Well CFHTTP is VERY buggy, so if you are posting cookies and you're on CF above 4.5, you have to take care of how the server expects the cookies. Everything above CF 4.5 will URLEncode the cookies values(and some versions will URLEncode the names). Supposively there is a workaround by doing

REPOST: First time Web Service

2004-09-10 Thread Ian Skinner
I’m reposting this message.I am trying to set up my first web service.Of the three servers I work with, this only works on one of them.The other two throw the error reported in my original message.As best as I can tell, this error is due to some configuration problem in the jrun under ColdFusion,

Re: REPOST: First time Web Service

2004-09-10 Thread Neculai Macarie
I’m reposting this message.I am trying to set up my first web service.Of the three servers I work with, this only works on one of them.The other two throw the error reported in my original message.As best as I can tell, this error is due to some configuration problem in the jrun under ColdFusion,

Re: WWOT: OS X for Intel?

2004-09-10 Thread Dick Applebaum
On Sep 10, 2004, at 7:57 AM, Dave Watts wrote: I am no expert, but I suspect that the typical PC comes with reasonably standard hardware that could deliver a pretty good experience on any current hardware -- maybe not as good as an integrated hw/sw solution, but close enough. With the

Re: charset issue

2004-09-10 Thread Mark Woods
At 16:46 10/09/2004, you wrote: thanks for the input Mark. hmm, the webservice is built in CF pulling from a MySQL DB all on SunOS 5.8. I'm not a MySQL user, but it's very possible that if MySQL is told to store a character with code position 150, it will store it. It has no idea what the

Re: REPOST: First time Web Service

2004-09-10 Thread Ian Skinner
Sorry, I should have revied the post, in my searches I found some indication that undersores may have been a problem, so I changed the name to xmltest.cfc http://www.bloodsource.org/xmltest.cfc?wsdl Unfortunatly this has not changed anything. [Todays Threads] [This Message] [Subscription]

Re: Amazon AIMS

2004-09-10 Thread Adam Haskell
I use the XML based stuff with amazon without a problem. I have yet to get thier WSDL into a format that Coldfusion will use, so I use cfhttp. Amazon's system is picky picky and not very forgiving at all, nor is it accurate about the errors sometimes. Adam H On Fri, 10 Sep 2004 12:11:14 -0400,

Re: ColdFusion Blog

2004-09-10 Thread Greg Luce
Not if he's selling it as a CFMX application. What if I buy it and re-write it in ASP? Should we blame the author for not writing it in ASP also? - Original Message - From: Terry Troxel [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 09:01:35 -0700 Subject: Re: ColdFusion Blog To: CF-Talk [EMAIL

Re: ColdFusion Blog

2004-09-10 Thread Qasim Rasheed
Even though its not a CF blogging system but .Text is reallu nice with a whole set of features http://www.gotdotnet.com/workspaces/workspace.aspx?id=e99fccb3-1a8c-42b5-90ee-348f6b77c407 - Original Message - From: Mark W. Breneman [EMAIL PROTECTED] Date: Fri, 10 Sep 2004 11:12:22 -0500

Re: ColdFusion Blog

2004-09-10 Thread Jake .
I have been looking for the exact same thing now for a few weeks. I am Kinda hoping to find something with RSS 1.0 or better support. Check out http://www.daydreaminc.com/demoblog/index.cfm it is simple basic Blog that would be a really good starting point to build something personalized out

Re: REPOST: First time Web Service

2004-09-10 Thread Neculai Macarie
Sorry, I should have revied the post, in my searches I found some indication that undersores may have been a problem, so I changed the name to xmltest.cfc http://www.bloodsource.org/xmltest.cfc?wsdl Unfortunatly this has not changed anything. Just tried your example locally and the wsdl is

RE: Amazon AIMS

2004-09-10 Thread Russ
Not sure if this went through. so sending it again. _ From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 12:23 PM To: CF-Talk Subject: RE: Amazon AIMS Well CFHTTP is VERY buggy, so if you are posting cookies and you're on CF above 4.5, you have to take care of how the

Re: WWOT: OS X for Intel?

2004-09-10 Thread Rob
On Fri, 10 Sep 2004 11:01:57 -0400, Dave Watts [EMAIL PROTECTED] wrote: joke I was playing with my PocketPC on the train the other day, and I realized the most robust and stable applications on windows is Solitaire and Notepad - neither have froze a system or had a buffer overflow

Setting up CF MX in IIS6

2004-09-10 Thread Jacob
I am upgrading from Website Professional to IIS6.I am using CF MX. How do I associate .htm files with ColdFusion.I know how to do it in Website Pro, but not IIS. All of all .htm files now have CF templates, so they have to be read by CF. Thanks Jacob [Todays Threads] [This Message]

Re: REPOST: First time Web Service

2004-09-10 Thread Ian Skinner
Just tried your example locally and the wsdl is generated properly (no error). Maybe a CF restart would help ? -- mack / The server has been restarted many times this morning.I also can get it to work on an enternial server.The best I can tell it is something to do with the configuration of the

Re: Setting up CF MX in IIS6

2004-09-10 Thread Jacob
Okay.. I added the extenstion under Home Directory - Configuration.Now I get: Server Error :Either the Macromedia application server is unreachable or it does not have a mapping to process this request. If I change the file name to index.cfm, it works.index.htm give this error. At 09:38 AM

Re: poll DB

2004-09-10 Thread Dwayne Cole
But then wouldn't I be writing an entry in the pollDB for every time that it's answered? So, when I make a poll, I write an entry for every different option/answer available.Then I also write an entry for every answer made?Am I understanding correctly? It doesn't seem like a good use of DB space

Re: ColdFusion Blog

2004-09-10 Thread Calvin Ward
I agree with Greg. System requirements clearly stated and all. Besides, CF 5 is a five year old tech at this point too... Calvin -Original Message- From:Greg Luce Date:9/10/04 12:31 pm To:CF-Talk Subj:Re: ColdFusion Blog Not if he's selling it as a CFMX application. What if I buy it

Updater Installation error

2004-09-10 Thread David Mineer
The updater worked just fine on 2 development and testing machines. However, on my production machine it gives an error.After looking at the installation log this seems to be the offender: Execute ANT Script: Script: cfmx-patch-move-files-all.xml Status: ERROR Additional Notes: ERROR -

Re: Setting up CF MX in IIS6

2004-09-10 Thread Lawrence Ng
Its simply a mapping issue to associate file extensions. read your IIS doc on how to do that. its pretty straightforward. I don't have it off the top of my head .. [EMAIL PROTECTED] 9/10/2004 9:38:13 AM I am upgrading from Website Professional to IIS6.I am using CF MX. How do I associate .htm

  1   2   >