Re: Coldfusion Install Hangs on Installing Web Connectors

2008-08-22 Thread Jochem van Dieten
Bob Wright wrote: I am trying to install CF8 x64 on a Windows Server 2008 x64 box. Unfortunately, The installer hangs when trying to install the web connectors. First install CF with the builtin webserver and verify that everything works correctly, then install the connectors from the command

Re: Repost: cfgrid and cfform enctype=multipart/form-data

2008-08-22 Thread gary gilbert
Hi David, Are you planning on submitting binary data from your grid? If not there isn't any reason to use the multipart. I also received the error when submitting the page. I do believe this is a bug and should be reported. Gary Gilbert http://www.garyrgilbert.com/blog On Thu, Aug 21, 2008

Web Services CERT

2008-08-22 Thread Randy Adkins
We are creating a web service (CFC / WSDL) on a box and when I attempt to access it via browser, I am prompted to login (network). We have to lock down alot of items and was wondering if we installed a CERT on the box, would we be able to access the Web Service w/o the login? The CFC functions

e/pop conferencing CF authentication

2008-08-22 Thread Paul Ihrig
Hey Guys Is any one here using e/pop conferencing? i am trying to figure out a way to force users who register on our site to pass un/pw to the epop server. but i cant find much documentation on it. so was just going to see if any one here is using it, and how. right now our users just get a

Re: Query Too Complex for Access?

2008-08-22 Thread David Moore
Have you tried: AND Works.ThisInventory not in (#listQualify(valueList(getActiveWorks.ThisReference),')#) Dave I went in and applied the solution to all my other queries where I was having a problem and it works great. You were right. None better. Thanks! Already I am learning a lot from

Text to image for Non CSS font resolution

2008-08-22 Thread David Moore
I have a client who must use Scala Sans for their Titles and still wants everything dynamic. As I explained over and over again that Scala Sans is not universally available on every computer and that every time they want to have a header it would have to be an image, I am trying to find a

Re: Flummoxed bya simple query

2008-08-22 Thread Richard Dillman
Have you checked that the field name does NOT have a trailing Space? FoxPro and access allow spaces in field names. [BasicInfo].[mcaidrecda ] isnt the same as [BasicInfo].[mcaidrecda] On Thu, Aug 21, 2008 at 5:39 PM, Andy Matthews [EMAIL PROTECTED]wrote: That's not a bad idea. Have you tried

cfform and setting default values

2008-08-22 Thread Phill B
I have a cfform with a cfselect. I want the cfselect to populate itself onLoad with the value of the cfc method that its bound to. Any suggestion on how do I go about this? Thanks -- Phil ~| Adobe® ColdFusion® 8 software 8 is

Re: Coldfusion Install Hangs on Installing Web Connectors

2008-08-22 Thread Bob Wright
First install CF with the builtin webserver and verify that everything works correctly, then install the connectors from the command line with the verbose option to see some debug output. Thank you for the reply, Jochem. I can't find anywhere how to install the web connectors from the

Connect/Create com opbject to MS Word Viewer

2008-08-22 Thread Chuck Weidler
I want to open a MS Word Document (.doc) file and get the contents of the file. The issue that I'm having is that on our server we have MS Word Viewer 2003 installed and I cannot figure out how to create or connect to this com object. The code I have works perfectly on the workstation, but I

Centering text written on an image

2008-08-22 Thread Kevin Roche
Hi, I want to add some text to an image but have it centered rather than left justified. Does anyone know how to do that? Kevin Roche ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: Coldfusion Install Hangs on Installing Web Connectors

2008-08-22 Thread Jochem van Dieten
Bob Wright wrote: First install CF with the builtin webserver and verify that everything works correctly, then install the connectors from the command line with the verbose option to see some debug output. Thank you for the reply, Jochem. I can't find anywhere how to install the web

RE: Centering text written on an image

2008-08-22 Thread David Moore, Jr.
Are you doing this dynamically using cfimage or Photoshop or just how? ~David Subject: Centering text written on an image From: [EMAIL PROTECTED] To: cf-talk@houseoffusion.com Date: Fri, 22 Aug 2008 11:09:37 -0400 Hi, I want to add some text to an image but have it centered rather than left

Re: Connect/Create com opbject to MS Word Viewer

2008-08-22 Thread Sonny Savage
My guess is that the Viewer would have a different com object name. I'd recommend installing the viewer on your workstation and invoking it there. Otherwise, you'll need to install the full version of Word on the server. You can't expect consistent results otherwise. On Fri, Aug 22, 2008 at

Re: Connect/Create com opbject to MS Word Viewer

2008-08-22 Thread Scott Stewart
I'm taking a guess here, because the MS Word Viewer 2003 exe is wordview.exe and not word.exe, wouldn't that change the class in the object call to wordview.application? just a shot in the dark.. Chuck Weidler wrote: I want to open a MS Word Document (.doc) file and get the contents of the

Re: Centering text written on an image

2008-08-22 Thread Kevin Roche
I am using ColdFusion to write some text on an image and I don't know in advance what the string is going to be so I can't guess where to start writing it. Is there a way to say write this text around a particular point? I can check from the image how wide it is and work out where the centre

delete rows w/o creating new file

2008-08-22 Thread MJ R
Hello Everyone, I m wondering if there is any way to delete first few rows in csv file without parsing the entire file and then creating a new file. My csv file is huge. To remove the first few rows(which contains header) only, I do: cfloop get each row from source file store/append it in

delete rows w/o creating new file

2008-08-22 Thread MJ R
Hello Everyone, I m wondering if there is any way to delete first few rows in csv file without parsing the entire file and then creating a new file. My csv file is huge. To remove the first few rows(which contains header) only, I do: cfloop get each row from source file store/append it in

Re: delete rows w/o creating new file

2008-08-22 Thread Greg Morphis
Are you taking and uploading the .csv file? If so, you could leave the header info and just ignore the first few lines (if it's static). On Fri, Aug 22, 2008 at 11:01 AM, MJ R [EMAIL PROTECTED] wrote: Hello Everyone, I m wondering if there is any way to delete first few rows in csv file

RE: Connect/Create com opbject to MS Word Viewer

2008-08-22 Thread Weidler, Wilfred C.
I have already tried that, but thanks for the suggestion. Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, August 22, 2008 11:24 AM To: CF-Talk Subject: Re: Connect/Create com opbject to MS Word Viewer I'm taking a guess here, because the MS Word

Re: delete rows w/o creating new file

2008-08-22 Thread denstar
cfloop get each row from source file cfif currentrow neq 1 store/append it in destination file /cfif /cfloop ? The obligatory you can probably use a database-specific tool or feature to do this a *whole lot faster* is required. -- I was a veteran, before I was a teenager. Michael

Re: Centering text written on an image

2008-08-22 Thread Alan Rother
Hey Kevin, I ran into a similar problem. The main issue you are going to face is not knowing how long the final rendered string will be once it's turned into a graphic. So far I've found no solution using the native CF8 image tools. If you really HAVE to accomplish this then the only (easy) way

RE: Centering text written on an image

2008-08-22 Thread Dave Watts
I am using ColdFusion to write some text on an image and I don't know in advance what the string is going to be so I can't guess where to start writing it. Is there a way to say write this text around a particular point? I can check from the image how wide it is and work out where

RE: Web Services CERT

2008-08-22 Thread Dave Watts
We are creating a web service (CFC / WSDL) on a box and when I attempt to access it via browser, I am prompted to login (network). We have to lock down alot of items and was wondering if we installed a CERT on the box, would we be able to access the Web Service w/o the login? The CFC

cftimer does not work

2008-08-22 Thread Developer MediaDoc
Hi all, CF 8.01 Standard Windows 2003 I cannot get cftimer to display anything -- dont think it is even running. I HAVE checked the following boxes in CFADMIN Debug Output Settings - Enable Robust Exception Information (CHECKED) - Enable AJAX Debug Log Window (CHECKED) - Enable Request

Re: Web Services CERT

2008-08-22 Thread Randy Adkins
Well the web service is on an Intranet but will be accesible by other servers within the agency. According to the docs (other developer is no longer here), the cfinvoke command was not utilizing the username/pass auth method. The server has Anonymous Access turned off since it is internal. I can

RE: Web Services CERT

2008-08-22 Thread Dave Watts
Well the web service is on an Intranet but will be accesible by other servers within the agency. According to the docs (other developer is no longer here), the cfinvoke command was not utilizing the username/pass auth method. The server has Anonymous Access turned off since it is

Sending Mail with CF

2008-08-22 Thread Randy Adkins
Situation (environment): Windows 2003 Server CFMX 7.1 We have a box on the intranet (Anonymous Access turned off) and using CFMAIL to send email to department heads when a user creates a request within the CF Application. Problems is the error in the CF mail.log is: Client was not authenicated

RE: Centering text written on an image

2008-08-22 Thread David Moore, Jr.
Kevin Wrote I am using ColdFusion to write some text on an image and I don't know in advance what the string is going to be so I can't guess where to start writing it. Is there a way to say write this text around a particular point? I can check from the image how wide it is and work

Re: Web Services CERT

2008-08-22 Thread Randy Adkins
If I provide it within the CFAdmin when registering, the account has to reside on the domain I know. Have to find out if we have a default account for this specific use. On 8/22/08, Dave Watts [EMAIL PROTECTED] wrote: Well the web service is on an Intranet but will be accesible by other

Re: Text to image for Non CSS font resolution

2008-08-22 Thread David Moore
Is there any CF solution to apply some kind of text to image conversion ~David G. Moore, Jr. And then a thread comes along that gives me an answer without answering my question at all: cfset ImageDrawText(myImage,Congratulations!,10,50,attr) One day I will learn ColdFusion? ~David

RE: Sending Mail with CF

2008-08-22 Thread Dave Watts
We have a box on the intranet (Anonymous Access turned off) and using CFMAIL to send email to department heads when a user creates a request within the CF Application. Problems is the error in the CF mail.log is: Client was not authenicated We have the mail server setup in the CF Admin

Re: Sending Mail with CF

2008-08-22 Thread Randy Adkins
Thats what I thought as well. Just needed clarrification. I am working with the SA to get an account on the LAN for this type of use and the use of Web Services. On 8/22/08, Dave Watts [EMAIL PROTECTED] wrote: We have a box on the intranet (Anonymous Access turned off) and using CFMAIL to

Re: Centering text written on an image

2008-08-22 Thread Chris Blackwell
Hi, I want to add some text to an image but have it centered rather than left justified. Does anyone know how to do that? Kevin Roche http://imageutils.riaforge.org/ - getCenteredTextPosition() ~| Adobe® ColdFusion® 8

Re: Repost: cfgrid and cfform enctype=multipart/form-data

2008-08-22 Thread Dave Byers
Yes... for the purposes of the test files I created, I'm not doing any binary file posting. However, in the actual application, the intention is for the user to select and item from the grid and post a binary file. The test files are the most basic, reproduceable example of the problem I was

Integration with Kuali Enterprise Workflow?

2008-08-22 Thread Dan LeGate
Has anyone done any integration with Kuali Enterprise Workflow? http://kew.kuali.org/ Looks like a pretty cool open-source workflow platform. Just curious if anyone has worked with it, or integrated any CF apps with it. Thanks, Dan

cflayout weird problem

2008-08-22 Thread BJ McShane
I'm using the cflayout for tabs on my form. When the form submits, I check a couple of the fields for error checking and if the fields are wrong or not filled in I send the user back using the history.back() function. The forms returns but all the input the user put in is gone. If I take off

CF/SVN SOT question

2008-08-22 Thread Eric Roberts
Anyone know of any cf based packages that can handle merging from branch to branch to trunk as well as updating directories on other servers? I am looking for something that can centralize the promotion process from a single server so I don't have to remote into each box to do this? Any advice

RE: cflayout weird problem

2008-08-22 Thread Dave Phillips
To my knowledge, this is a browser issue, not a cflayout issue, as you will get different results in different browsers. You can avoid this completely by using javascript to validate your fields. Dave -Original Message- From: BJ McShane [mailto:[EMAIL PROTECTED] Sent: Friday, August

Does anyone here use @wiki ?

2008-08-22 Thread s. isaac dealey
Does anyone here use @wiki ( http://atwiki.com ) ? Any thoughts about the service? Good? Bad? Indifferent? Would this be a good way to create a wiki for an open-source project? I've been thinking about creating a wiki for the onTap framework and DataFaucet. I'm not thrilled about the idea of

Re: cflayout weird problem

2008-08-22 Thread BJ McShane
Dave, thanks for the reply. I did run it in firefox and the data doesn't get wiped out in that browser. So you are right it looks like it is a browser issue. I've never validated with just javascript, I'll have to look around for examples. thanks bj

A year as a ColdFusion developer... now what?

2008-08-22 Thread henry ho
Hi all, I'm lost in my career path and I need your advice. What should I do after a year of CF under my light belt? http://henrylearnstorock.blogspot.com/2008/08/life-as-new-coldfusion-developer.html Please give it a quick read and I'd really appreciate if you can leave me a comment on the

RE: A year as a ColdFusion developer... now what?

2008-08-22 Thread Andy Matthews
Henry... It might be a non-technical question, but it IS a career one, and I think that's well worth the consideration of everyone on this list. -Original Message- From: henry ho [mailto:[EMAIL PROTECTED] Sent: Friday, August 22, 2008 4:11 PM To: CF-Talk Subject: A year as a ColdFusion

RE: cflayout weird problem

2008-08-22 Thread Dave Phillips
BJ, Post your form code (or a snippet) and what fields you're trying to validate and what you want validated and we can help. Also, check out the CF docs for CFFORM as it has a lot of built-in javascript validation that you can utilize through CF tags like CFINPUT and so on. Dave -Original

Re: A year as a ColdFusion developer... now what?

2008-08-22 Thread Phillip M. Vector
Umm.. Get more years of CF under your light belt? :) 1 year experience won't really help much when it comes to your career. henry ho wrote: Hi all, I'm lost in my career path and I need your advice. What should I do after a year of CF under my light belt?

Using a signature pad on a web form...

2008-08-22 Thread Aaron C
I posted this in the newbie talk, but someone suggested that I may get more help here. Does anyone here have experience using a signature pad to capture a signature on a web form (intranet in this case) from which the data entered along with the signature are then entered into a PDF? I've got a

Re: CF/SVN SOT question

2008-08-22 Thread denstar
I've got some stuff that uses SVNkit, the java subversion deal. Pretty slick, looks as if anything you'd want to do, you could do through CF. Create / *Duplicate* / Checkout repositories, alter repositories- branch, merge, commit, etc.. I'll I've got going is the browsing and committing to

Re: cflayout weird problem

2008-08-22 Thread BJ McShane
Dave, I am using cfform and some of the validation on tags with it. The two places I don't is a custom tag I'm using cf_betterselect and the regular select. the betterselect allows the user to type and narrow down the list. the select tag I want the user to select a location and not have

Re: Does anyone here use @wiki ?

2008-08-22 Thread denstar
Personally, I'd slap canvas on there, and that way you really control the code, even if you don't need to, yet. http://canvas.riaforge.org/ I'm still torn between making people learn wiki-eese, or using FCKEditor tho... But hosted deals seem to be not unpopular, so, whatever floats the boat,

RE: cflayout weird problem

2008-08-22 Thread Dave Phillips
BJ, Okay, not familiar with cf_betterselect, but the below should still work for you: Change your cfform tag to this: cfform action=NewEmployeeEntry.cfm name=newEmpInsertForm method=POST onsubmit=return doSubmit(); IN your head area, add the following: script function doSubmit() { var

Re: cflayout weird problem

2008-08-22 Thread BJ McShane
Dave, I'll try it and let you know. Thanks for the help. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive:

Re: A year as a ColdFusion developer... now what?

2008-08-22 Thread Doug Brown
Might not be the suggestion that you like, but I always find myself pretty much a pointed person. Why would you quit your job? I like to think that with the proper persuasion, you can get companies like the one you were working for to come around to your way of thinking and get them to try and

Re: SQL injection attack on House of Fusion

2008-08-22 Thread Matthew Smith
I've upgraded to the latest version of Mary Jo's tool to filter attempts at SQL injection. It works well, but I found three interesting false positives today. My site has community profiles for cities and towns. The URL for these profiles includes the county name as well as the city or town

Re: Does anyone here use @wiki ?

2008-08-22 Thread James Holmes
How about making the app available on riaforge where all the other CF stuff is hosted these days? That gives you a wiki out of the box. On Sat, Aug 23, 2008 at 4:58 AM, s. isaac dealey [EMAIL PROTECTED] wrote: Does anyone here use @wiki ( http://atwiki.com ) ? Any thoughts about the service?

Re: Does anyone here use @wiki ?

2008-08-22 Thread s. isaac dealey
Personally, I'd slap canvas on there, and that way you really control the code, even if you don't need to, yet. http://canvas.riaforge.org/ I'm still torn between making people learn wiki-eese, or using FCKEditor tho... But hosted deals seem to be not unpopular, so, whatever floats the

Re: A year as a ColdFusion developer... now what?

2008-08-22 Thread s. isaac dealey
It might be a non-technical question, but it IS a career one, and I think that's well worth the consideration of everyone on this list. There is however also a cf-jobs-talk list on houseoffusion that's probably more appropriate for this kind of question... I don't personally mind this being

Re: Text to image for Non CSS font resolution

2008-08-22 Thread Kay Smoljak
Have a look at sIFR - http://wiki.novemberborn.net/sifr Uses JavaScript and Flash to dynamically replace text headings with the desired font. It degrades gracefully so that user agents with no flash or no javascript will just get the text. Search engine friendly and no additional markup in your

Re: SQL injection attack on House of Fusion

2008-08-22 Thread Mary Jo Sminkey
Can anyone suggest a modification to the code that would eliminate the false positives without substantially weakening the filter? The one in there now is by Luis Melo and his email is in the credits. You might want to send them along to him as I know he plans to work more on reducing the

Re: SQL injection attack on House of Fusion

2008-08-22 Thread Mary Jo Sminkey
My site has community profiles for cities and towns. The URL for these profiles includes the county name as well as the city or town name. There are Union counties in North Carolina, New Jersey and Ohio. Or...maybe you could just get the states to rename that county. ;-)

RE: CF/SVN SOT question

2008-08-22 Thread Eric Roberts
Thanks Den...I'll have to check that out. The only mods should be the ones in dev. Test is a combo of testing and staging where we do final testing before putting it live...so something like that should work. Eric /*-Original Message- /*From: denstar [mailto:[EMAIL PROTECTED] /*Sent:

Variable ImageInputStream is undefined.

2008-08-22 Thread Mike Kear
I'm getting an error from an image upload routine i use that's been working fine until we shifted everything to a new box. Im assuming the problem is something we havent configured correctly on the new box - can anyone help me be more specific please?Have we not given ColdFusion the right

Re: A year as a ColdFusion developer... now what?

2008-08-22 Thread Mike Kear
Do you honestly think that with a year developing coldfusion under your belt, that you know all there is to know that's worth knowing? If so, then it's time to find a new career or a new branch of this one. However I suspect that in truth you've barely scratched the surface. If you're only doing