RE: DNS not specific to ColdFusion

2007-10-18 Thread James Smith
It is also worth noting that Google can mark you down for duplicate content so if you have multiple domains and multiple sub-domains pointing to the same site your page rank can suffer. What I do here where I have about 20 domains pointing to the same site with and without www on is to have one

RE: 301 Redirect

2007-10-18 Thread Hugo Ahlenius
You have loads of options... It also depends on if you want to redirect indivual/specific pages/requests - e.g. should http://olddomain/index.cfm?page=about redirect to http://newdomain/about.cfm or retain query strings etc? If you want to do a blanket redirect, I would do it in IIS. Otherwise I

Re: RDS not working with CF8

2007-10-18 Thread Tom Chiverton
On Wednesday 17 Oct 2007, [EMAIL PROTECTED] wrote: Any ideas as to how to solve this problem? What's your web server set up like ? We've got CF8 on (non-production) Linux boxes here fine, RDS'n'all. -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and

Re: SOT: DNS not specific to ColdFusion

2007-10-18 Thread Tom Chiverton
On Wednesday 17 Oct 2007, [EMAIL PROTECTED] wrote: Simple question hard to Google. Where does one configure ones systems so that users do not have to provide the sub-domain in their urls? I.E myDomain.com rather then www.myDomain.com. Assuming you already have @ in a x.y.z.k

RE: cfchart and spry tabs

2007-10-18 Thread Will Swain
Found a solution to this involving increasing the timeout settings in cf install path\lib\webcharts3D.xml http://cfchart.blogspot.com/2005/06/image-expired-trouble.html Just for the record... will -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: 16 October 2007

File disappears after cffile rename

2007-10-18 Thread Michael E. Carluen
Has anyone experienced having a file literally disappear after a cffile action=rename ? This happens on CF8. but code works fine on 7.0.2. Any ideas? ~| Download the latest ColdFusion 8 utilities including Report

file.encoding not being set

2007-10-18 Thread Simon Whittaker
Hi There, I have a problem with the file.encoding in my jvm config, on one server(installed in UK) the locale etc is en_GB and the file.encoding is cp1252. On a machine we have in Moscow(originally installed in Russian locale) I have managed to change the java default locale to be en_GB but

Re: file.encoding not being set

2007-10-18 Thread Paul Hastings
Simon Whittaker wrote: locale) I have managed to change the java default locale to be en_GB but the locale is stubbornly staying at cp1251. We believe this may be having an cp1251 is a windows codepage (encoding), not a locale. effect on some of the number formatting etc but can't get it to

Re: SYS-Con relies on dead technology

2007-10-18 Thread Neil Middleton
seems Adobe could learn as well : http://weblogs.macromedia.com/mxna/ Element CONFIG.VARS.RECORDSPERPAGE is undefined in APPLICATION.Neil On 10/16/07, Raymond Camden [EMAIL PROTECTED] wrote: Then go and set a site wide error handler. You can leave the file blank. Even that is better than what

Re: SYS-Con relies on dead technology

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: seems Adobe could learn as well : http://weblogs.macromedia.com/mxna/ Element CONFIG.VARS.RECORDSPERPAGE is undefined in APPLICATION.Neil At least it's not spitting things like the local filesystem path out :-) -- Tom Chiverton. Are you a

IN CF 7 and beying - using smallint instead of bit - true?

2007-10-18 Thread coldfusion . developer
Another CF developer mentioned to me the other day that it's better to store 1,0 values in a smallint compared to using bit value for on of off functionality within an app in CF7 or greater. Thoughts? Thanks D ~| Check out

Re: SYS-Con relies on dead technology

2007-10-18 Thread Raymond Camden
Fixed btw. On 10/18/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: seems Adobe could learn as well : http://weblogs.macromedia.com/mxna/ Element CONFIG.VARS.RECORDSPERPAGE is undefined in APPLICATION.Neil At least it's not spitting things like

Re: IN CF 7 and beying - using smallint instead of bit - true?

2007-10-18 Thread Ben Doom
I generally do, simply because there have been so many times I've had to expand the flag field to be more that on/off. Paid/unpaid/bounced kinds of things. (Yes, I realize I could have just added a second flag field, but that isn't always the case.) I'm not sure if it has any effect on

Re: CF WEB HOSTING: Best solution ? For 50,000-100,00 outgoing emails a month?

2007-10-18 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Huh, so this software will act as an SMTP server but it actually just send the email directly to the recipients incoming mail server. So does this skip over and restrictions that an ISP or cable comapny like Comcast might have setup to block port 25 or other measures? Thanks Guys. Ims-lite is

Re: CF WEB HOSTING: Best solution ? For 50,000-100,00 outgoing emails a month?

2007-10-18 Thread Aaron Rouse
One problem you might run into is not port 25 being blocked but the IP addresses assigned to people connecting to say Comcast might be flagged as spammers. I have run into this at home where I have a small personal web page and it will bounce emails from the page off my own mail server out to me.

Re: file.encoding not being set

2007-10-18 Thread Simon Whittaker
Sim locale) I have managed to change the java default locale to be en_GB but the locale is stubbornly staying at cp1251. We believe this may be having an cp1251 is a windows codepage (encoding), not a locale. effect on some of the number formatting etc but can't get it to change to it

2007 Web Design Survey

2007-10-18 Thread Andy Matthews
Discuss amongst yourselves. http://alistapart.com/articles/2007surveyresults/ Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com

http headers showing up in page

2007-10-18 Thread Steve Logan
I have an application that's been running fine for years (we're getting ready to upgrade from CF5 to CF8), but we just noticed something odd on one template. The template is a client detail page, so coming in to it we know the client's ID and all queries on this template are selects. At the

SPRY XML Problems

2007-10-18 Thread Chad McCue
I am pulling some data from a database, in the database it looks like this level Mechanical/Architectural Draftsman to support... 9/19/2007 until 11/18/2007 Categories: Architectural Service Engineering Job Type: Regular Full/Part Time... J When SPRY loads it and creates the XML it looks

Re: Setting a value for CFTEXTAREA (richtext) via Javascript

2007-10-18 Thread Mike Demahy
Any luck with this? Is anyone really familiar with the way CF8 implements FCK? I'm trying to set the innerHTML value for a richtext field via javascript, and am having no luck finding the property. CF8 provides a nifty ColdFusion.getElementValue() function, but no setElementValue function :( .

Re: Setting a value for CFTEXTAREA (richtext) via Javascript

2007-10-18 Thread Mike Demahy
I am trying to do the exact thing. Any luck with this? Is anyone really familiar with the way CF8 implements FCK? I'm trying to set the innerHTML value for a richtext field via javascript, and am having no luck finding the property. CF8 provides a nifty ColdFusion.getElementValue() function, but

Re: cf8 cftextarea richtext - niggles

2007-10-18 Thread Mike Demahy
I am trying to set a value in the cftextarea with javascript. Having a hard time with the syntax. It works with a straight textarea gut does nothing when using a cftextarea. Mike Having given the new FCKeditor functionality the once-over I'm far from convinced. I've been using FCK for quite

Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Davide Campo
Hi to all, i have to create a Database Server to work with ColdFusion. I'd like to know what is (obvious by your personal opinion) the best Database Engine to use (performance level, easiest sql language,compatibility, etc...). That are my requirements: - Op.System: Windows 2003 r2 Standard

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Bruce Sorge
Go for SQL Server 2005 since you are on Windows. If you were on Linux I would say MySQL. Davide Campo wrote: Hi to all, i have to create a Database Server to work with ColdFusion. I'd like to know what is (obvious by your personal opinion) the best Database Engine to use (performance

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Rizal Firmansyah
That depends on your requirement and budget... But for enterprise use, i'd say Oracle and SQL Server 2000. Personally i don't think SQL Server 2005 is worth an upgrade :) Rizal At 11:42 PM 10/18/2007, you wrote: Hi to all, i have to create a Database Server to work with ColdFusion. I'd like to

Re: cf8 cftextarea richtext - niggles

2007-10-18 Thread Cutter (CFRelated)
Not sure what you mean? You're trying to set content after it's already rendered? You'll probably need to access the FCKEditorAPI object, but I don't know if it's running in a custom name space in the CF rendered format. I have form validation written on a custom FCKEditor implementation,

RE: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Andy Matthews
I've never had experience with mySQL on a windows machine in production, but I have had 3+ yrs with it on a Linux platform and loved it. It's easy, powerful, and straightforward. I also have about a yrs worth of exp with SQL Server 2k5 on a Windows platform, and don't care all that much for it.

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Bruce Sorge
He is not upgrading though. Sounds to me that he is going for a fresh setup, so why not get the latest that they offer. You know that since SQL Server 2005 is out 2000 is going to be dropped from support in a few years. That is the Microsquash way. I was lucky in my job that they started with

Web Service HELL

2007-10-18 Thread david adress
I can't for the life of me figure out why this is not working. I keep getting Web service operation Login could not be found. I tried deleting the web service from cf admin. I tried stopping and starting the service. I am using cf7 and running local on a windows xp machine. The code is:

Web Service Help

2007-10-18 Thread David Adress
I can't for the life of me figure out why this is not working. I keep getting Web service operation Login could not be found. I tried deleting the web service from cf admin. I tried stopping and starting the service. I am using cf7 and running local on a windows xp machine. The code is:

RE: Web Service Help

2007-10-18 Thread Brad Wood
Are you sure that the code in OneCallNow.asmx supports a method called login? Try logging into CF Admin and removing that webservice since it tends to cache things like methods and parameter types. ~Brad -Original Message- From: David Adress [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: Web Service Help

2007-10-18 Thread Bryan Stevenson
Could login be a reserved word? Can you provide any more details? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com Notice: This

RE: Web Service Help

2007-10-18 Thread Paul Vernon
cfinvoke webservice = http://www.devcallnow.com/WebService/OneCallNow.asmx?wsdl; method = LOGIN returnvariable = Token cfinvokeargument name=service value=1/ cfinvokeargument name=groupkey value=11/ cfinvokeargument name=pin value=/ /cfinvoke Not sure why you posted twice with

RE: Web Service Help

2007-10-18 Thread David Adress
I tried it with all case and I tried with the token being an argument as well. Still nothing. -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:52 PM To: CF-Talk Subject: RE: Web Service Help cfinvoke webservice =

RE: Web Service Help

2007-10-18 Thread David Adress
yes -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:51 PM To: CF-Talk Subject: RE: Web Service Help Are you sure that the code in OneCallNow.asmx supports a method called login? Try logging into CF Admin and removing that webservice

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Andy Chen
My vote is SQL Server 2000 since it is very mature and that is the one I have been using. I haven't tried MS SQL 2005, but I would let the beta testers.. umm... users work out the bugs first and then migrate SQL 2000 - SQL 2005 sometime in the future. In my opinion, don't go for mySQL if you

RE: Web Service Help

2007-10-18 Thread David Adress
This is what's in their web service guide: Login OCNErrorCode Login(int Service, int GroupKey, string PIN, ref string LoginToken) The Login method must be called prior to doing any other functionality through the web service. The Login function takes a Service, Group Key and PIN as input

RE: File disappears after cffile rename

2007-10-18 Thread Michael E. Carluen
I am still trying to wrangle this issue. cflock name=#CreateUUID()# type=exclusive timeout=30 throwontimeout=no cfset PAGE_clean_SERVERFILE = replace(cffile.SERVERFILE, ,_,all) cffile action=RENAME source=cffile.SERVERFILE# destination=#PAGE_clean_SERVERFILE# /cflock Since this is an

RE: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Jacob
I have used CF with the following databases... FoxPro (never again) Access (good for a site with a few hits a day) SQL 7 (ehh) SQL 2000 (better then SQL 7) SQL 2005 (a little better performance wise compared to SQL 2000) Jacob -Original Message- From: Andy Chen [mailto:[EMAIL PROTECTED]

RE: Web Service Help

2007-10-18 Thread Brad Wood
Did you try removing that web service from CF ADMIN. It's under Data Services Web Services. ColdFusion MX automatically registers WSDL URLs the first time they are referenced. Generally I only have caching problems when I change code in a web service AFTER calling it for the first time.

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Aaron Rouse
2005 has been out for a long time now, I'd thought by now a good bit of bugs have been worked out. Are people having big issues with it? I am running it on two boxes and never had an issue with it but I am much more of an Oracle person and use it a lot more. I think it would all boil down to

RE: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Ryan, Terrence
I think it's all a trade-off. I think MS Sql 2005 is great for developing. You get really good graphical execution plans, and it's pretty easy to tune your database. The gui tools make everything fairly easy to use. However setting it up is a bit of a pain. Especially if you are going for

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Brian Kotek
If cost is an issue, MySQL is free and runs fine on Windows. If you want more capability (there are still things MySQL won't do), go with SQL 2005. Either way, I'd make sure to run the database on a separate server from the CF server. On 10/18/07, Davide Campo [EMAIL PROTECTED] wrote: Hi to

Re: 2007 Web Design Survey

2007-10-18 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
I have only one but very strong response/opinion based on this survey. It just proves that this line of work has increased in the amount of knowledge required to do the job but the pay has been significantly descreased as the overall cost of living has increased dramtically. It no longer

Re: 2007 Web Design Survey

2007-10-18 Thread Bruce Sorge
While I agree with most of what you say, being self employed is not all that. I know, I have done it. It is fast or famine. I seem to recall several folks on this list who are self employed have gone through some great times and some bad times. Sure you get a shit load of tax breaks, but to me

RE: Web Service Help

2007-10-18 Thread Paul Vernon
I tried it with all case and I tried with the token being an argument as well. Still nothing. If I run the following code as is, I get a huge Java object being returned that seems to indicate that I have got incorrect details in the login post but I don't get a method not found error. You code

Re: Web Service Help

2007-10-18 Thread Brian Kotek
The WSDL states that you need to pass a complex object with properties. You're passing individual strings. On 10/18/07, Bryan Stevenson [EMAIL PROTECTED] wrote: Could login be a reserved word? Can you provide any more details? Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Cutter (CFRelated)
MS SQL 2005 has been out for awhile now, is a solid platform, has some very nice advanced features at the data management level, improved support for xml, and better support for today's larger, beefier machines. MySQL 5 is really nice, finally bringing some nice enterprise SQL functionality

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Bruce Sorge
Been using SQL Server 2005 since July and have not run into any issues as of yet. Seems pretty stable. We do the weekly Patch Tuesday dance and have not seen any patches for it yet. And of course, again there is always the issue of when the previous version will run out of support. All

Re: cf8 cftextarea richtext - niggles

2007-10-18 Thread Andy Chen
I am using the FCKEditor with a lot of modifications to it (download the CFM file from the FCKEditor's site, using CFFM for the file manager). From an earlier post, it looks like Adobe knows about the issues and will be working on some sort of fix in the future to at least make it easier for

RE: Web Service Help

2007-10-18 Thread David Adress
Yes -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 1:29 PM To: CF-Talk Subject: RE: Web Service Help Did you try removing that web service from CF ADMIN. It's under Data Services Web Services. ColdFusion MX automatically registers WSDL

RE: File disappears after cffile rename

2007-10-18 Thread Brad Wood
On a side note, I can't think of a reason you would want to use a named lock, but use a random name every time. Since the point of a named lock is to make sure only one thread at a time can execute the code inside cflocks of the same name; generating locks with random names seems pointless since

Re: SPRY XML Problems

2007-10-18 Thread Raymond Camden
Spry doesn't make XML. You make XML and Spry reads it. How are you creating the XML? On 10/18/07, Chad McCue [EMAIL PROTECTED] wrote: I am pulling some data from a database, in the database it looks like this level Mechanical/Architectural Draftsman to support... 9/19/2007 until 11/18/2007

Re: 2007 Web Design Survey

2007-10-18 Thread Brian Kotek
Note that the vast majority of respondents said they've only been doing web development for 1 or 2 years, which will definitely skew the salary numbers down. On 10/18/07, [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have only one but very strong response/opinion based on this

RE: Web Service Help

2007-10-18 Thread David Adress
Does this help at all? https://www.devcallnow.com/WebService/OneCallNow.asmx?op=Login -Original Message- From: David Adress [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 1:06 PM To: cf-talk@houseoffusion.com Subject: RE: Web Service Help I tried it with all case and I

RE: File disappears after cffile rename

2007-10-18 Thread Paul Vernon
cflock name=#CreateUUID()# type=exclusive timeout=30 throwontimeout=no cfset PAGE_clean_SERVERFILE = replace(cffile.SERVERFILE, , _, all) cffile action=RENAME source=cffile.SERVERFILE# destination=#PAGE_clean_SERVERFILE# /cflock Firstly, the CFLOCK as you have it is pointless.

RE: File disappears after cffile rename

2007-10-18 Thread Rick Faircloth
Hi, Michael... I've used cffile many times to upload documents, but never to rename them, so I'm speaking from a lack of experience. However, looking at the documentation, I see that the source is a full local system path with the filename, and the destination is also a full local system path,

RE: File disappears after cffile rename

2007-10-18 Thread Michael E. Carluen
Issue solved. (Or perhaps a CF8 bug) On: cfset PAGE_clean_SERVERFILE = replace(cffile.SERVERFILE, ,_,all) cffile action=RENAME source=#cffile.SERVERFILE# destination=#PAGE_clean_SERVERFILE# Apparently on CF8, if the cffile.serverfile name and the newly assigned name var are the same, the file

RE: Web Service Help

2007-10-18 Thread David Adress
Any idea on how I would do that? -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 1:15 PM To: CF-Talk Subject: Re: Web Service Help The WSDL states that you need to pass a complex object with properties. You're passing individual strings.

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Matt Quackenbush
Of the choices that you've presented, I would undoubtedly go with SQL Server 2005. And don't worry about the comment regarding beta testing it; the product has been out for several years now and is quite mature. :-) I have used all of the following: Access MySQL 3.x, 4.x, 5.x SQL Server 7 SQL

RE: Web Service Help

2007-10-18 Thread Paul Vernon
Following up from my previous response, if I change the cfdump in my example code to this cfdump var=#Token.getValue()# I get the response LoginFailedInvalidGroupOrPin So I guess it is working fine here... CF8 Developer on Vista w/Apache. Paul

Re: Best Database Engine for ColdFusion (Survey)

2007-10-18 Thread Matt Quackenbush
On 10/18/07, Brian Kotek wrote: I'd make sure to run the database on a separate server from the CF server. +1 to that. I meant to mention it, but forgot to. With any sort of traffic, database servers just like to have their own box - not to mention the security benefits (perceived or

Re: Web Service Help

2007-10-18 Thread Dominic Watson
Is the access set on the login method (i.e. private, public or remote)?. I think it should be set to remote if I'm not mistaken. Not being set correctly could throw that error. Dominic On 18/10/2007, David Adress [EMAIL PROTECTED] wrote: Does this help at all?

Re: Web Service HELL

2007-10-18 Thread Jochem van Dieten
david adress wrote: cfinvoke webservice = http://www.devcallnow.com/WebService/OneCallNow.asmx?wsdl; method = LOGIN returnvariable = Token Shouldn't that be Login instead of LOGIN? Jochem ~| Check out the new features and

RE: 2007 Web Design Survey

2007-10-18 Thread Rich
So go ahead, disagree, call me a bonehead, it's just one opinion. I think developers work very hard for their earnings and have high expectations. We're the gate keepers to the Web site world and I see us moving towards becoming a commoditity and it makes me sad. I hope you share some

Re: 2007 Web Design Survey

2007-10-18 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hey Bruce, Great response. I'm doing the same thing you're doing. I guess I just want to make that jump to a higher level beyond 9-5 and side jobs which is a great living. But I want to join those guys you see on their huge boat during the day wihc great tans after their month long vacation. I

RE: 2007 Web Design Survey

2007-10-18 Thread Rick Faircloth
Making a living as an independent developer is becoming more difficult. As you stated, webapps are becoming more commoditized and what I can build for a $3,000 can now be purchased for $25 per month. I'm looking at trying to develop some turn-key apps that I can sell repeatedly and more cheaply.

RE: File disappears after cffile rename

2007-10-18 Thread Michael E. Carluen
@ Paul, Rick, and Brad: Thanks a bunch for your comments, ideas, suggestions. The reason why I had the cflock was because directly after the cffile rename, was a cfexecute for ffmpeg. Without the lock, it seemed that ffmpeg begins to execute even before the actual file rename on the file system

CFLAYOUT/CFLAYOUTAREA help!

2007-10-18 Thread J W
I can't find the answer anywhere. Hope you guys would know. Can you change the actual TAB color itself? One of the tabs I want to make red. Is this possible? Or at the very least can you change the text color inside the actual TAB itself? Thanks, Jeff

RE: SPRY XML Problems

2007-10-18 Thread Chad McCue
I am using your toXML cfc to generate XML from a query result -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 2:05 PM To: CF-Talk Subject: Re: SPRY XML Problems Spry doesn't make XML. You make XML and Spry reads it. How are you creating

Re: SPRY XML Problems

2007-10-18 Thread Raymond Camden
So what does your XML look like? The message you posted earlier seemed a bit garbled. On 10/18/07, Chad McCue [EMAIL PROTECTED] wrote: I am using your toXML cfc to generate XML from a query result -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday,

Moving from CF to .Net - need training advice/direction

2007-10-18 Thread coldfusion . developer
It lookos like we may be making the move away from CF to .Net so the boss has tasked me to get going on .Net training. Can anyone recommend good on site training places near Boston, Southern New Hampshire? Also, what's the best book out there for ASP.Net? Am I going to have to learn C # as

Re: 2007 Web Design Survey

2007-10-18 Thread Crow T. Robot
Web Development, no, but move your way up a corporate chain into management, and you're getting closer... On 10/18/07, Dave Watts [EMAIL PROTECTED] wrote: But I want to join those guys you see on their huge boat during the day wihc great tans after their month long vacation. Then perhaps

Replace spaces with dashes

2007-10-18 Thread Steve Sequenzia
I need to take a string and replace all the spaces with dashes. I tried using the replace function but I am having issues with strings that have multiple spaces next to each other and/or a space or spaces at the end. Here is what I have: cfset dirName = #Replace(String, , -, ALL)# Any

Re: Web Service Help

2007-10-18 Thread David Adress
How do I set that? -- Original Message -- From: Dominic Watson [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 18 Oct 2007 19:52:30 +0100 Is the access set on the login method (i.e. private, public or remote)?. I think it should be set to

Re: Replace spaces with dashes

2007-10-18 Thread Aaron Rouse
Its been a couple of years but I seem to recall once running into an issue where replace would not replace everything in a similar fashion. I think the solution at the time was to run the replace function again, so something like cfset dirName = Replace(Replace(String, , -, ALL), , -, All)

Re: Replace spaces with dashes

2007-10-18 Thread morgan l
Trim(String) will get rid of leading or trailing spaces. You may need a RegEx and use ReReplace() if you want to replace multiple connsecutive spaces with just a single dash though. RegEx is not my bag, so I can't help with specifics. On 10/18/07, Steve Sequenzia wrote: I need to take a string

Re: Replace spaces with dashes

2007-10-18 Thread Charlie Griefer
On 10/18/07, Steve Sequenzia [EMAIL PROTECTED] wrote: I need to take a string and replace all the spaces with dashes. I tried using the replace function but I am having issues with strings that have multiple spaces next to each other and/or a space or spaces at the end. Here is what I have:

RE: 2007 Web Design Survey

2007-10-18 Thread Dave Watts
But I want to join those guys you see on their huge boat during the day wihc great tans after their month long vacation. Then perhaps web development is not the field for you. Web development isn't hard enough to warrant that kind of paycheck, Dave Watts, CTO, Fig Leaf Software

Re: Replace spaces with dashes

2007-10-18 Thread Aaron Rouse
Problem with trim is it gets rid of the spaces that should have been turned into dashes. On 10/18/07, morgan l [EMAIL PROTECTED] wrote: Trim(String) will get rid of leading or trailing spaces. You may need a RegEx and use ReReplace() if you want to replace multiple connsecutive spaces with

RE: Web Service Help

2007-10-18 Thread David Adress
When I use this code: cftry cfinvoke webservice=http://www.devcallnow.com/WebService/OneCallNow.asmx?wsdl; method=Login returnvariable=Token cfinvokeargument name=Service value=1/ cfinvokeargument name=GroupKey value=11/

Re: Replace spaces with dashes

2007-10-18 Thread Steve Sequenzia
@Everyone - Thanks for the help. @Charlie - The regex worked perfect. Thanks for the help. I need to take a string and replace all the spaces with dashes. I tried using the replace function but I am having issues with strings that have multiple spaces next to each other and/or a space or

Re: 2007 Web Design Survey

2007-10-18 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Dave, Crow, So true, so true. I hope to have my business. I own microfuelcell.com which is an emerging technology for powering portable devices which is predicted to replace the latest battery technologies. There's just the age old issue of time and money to get the thing off the ground.

Re: Replace spaces with dashes

2007-10-18 Thread [EMAIL PROTECTED]
after turning all the spaces into dashes, you can do a while loop looking for double dashes and turning them into single dashes... -Original Message -From: [EMAIL PROTECTED] -Date: Oct 18, 2007 13:41 -To: CF-Talkcf-talk@houseoffusion.com -Subj: Re: Replace spaces with dashes - -Problem

RE: Replace spaces with dashes

2007-10-18 Thread Dawson, Michael
Or, use the previously-mentioned regex to replace two or more consecutive spaces with a hyphen. M!ke -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 4:00 PM To: CF-Talk Subject: Re: Replace spaces with dashes after turning all the

Re: Replace spaces with dashes

2007-10-18 Thread morgan l
Only if ending spaces were intended to be dashes, which I understood to not be the case (as the original code would have done that, and was apparently wrong, according to the original message). On 10/18/07, Aaron Rouse [EMAIL PROTECTED] wrote: Problem with trim is it gets rid of the spaces that

Report Builder Questions

2007-10-18 Thread Becky McDermott
I have been playing around with the MX7 Report Builder and I have a few questions. I have a dynamic field which is defined by the following: query.AreaFull Area When the report is rendered, there is a big space between the two concatenated strings. For example, the text gets rendered as

RE: Moving from CF to .Net - need training advice/direction

2007-10-18 Thread Dave Francis
You'll certainly get more out of the training if you know c# - it's more-or-less a pre-req for many of the courses. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 2:56 PM To: CF-Talk Subject: Moving from CF to .Net - need training

RE: Web Service Help

2007-10-18 Thread Paul Vernon
David, If you are using correct details for your submissions, the Token.getValue() may throw an error. Try just cfdump var=#Token# instead to see what you get. Paul -Original Message- From: David Adress [mailto:[EMAIL PROTECTED] Sent: 18 October 2007 21:38 To: CF-Talk Subject: RE:

Re: Report Builder Questions

2007-10-18 Thread Chris Jordan
Becky, I had this same problem. The answer was to put the concatenation inside the field. What I mean is just put the field on the report. Then double-click it to bring up the expression editor (I think that's what it's called). In there you can put; Trim(query.AreaFull) Area !--- notice the

RE: Web Service HELL - SOLVED

2007-10-18 Thread David Adress
Paul, I just want to really thank you for all your help. I really appreciate it. Thanks again! Dave -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 10:30 PM To: CF-Talk Subject: RE: Web Service HELL - SOLVED Just to follow up on this, it

RE: Web Service HELL

2007-10-18 Thread David Adress
dont know -Original Message- From: AJ Mercer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 10:20 PM To: CF-Talk Subject: Re: Web Service HELL are the arguments case sensitive?? if so, it needs to be 'Pin' On 10/19/07, David Adress [EMAIL PROTECTED] wrote: that was an

Re[2]: Excel output formatting??

2007-10-18 Thread Michael David
Hi Dae! Try this for the cell in your table: td style=mso-number-format:\@;0003732/td -- Cheers! Michael David Thursday, October 18, 2007, 9:28:19 PM, you wrote: Yup. that the way I usually do it. I build it in html then I just add a content header to send it to Excel. On 10/18/07,

RE: Web Service HELL - SOLVED

2007-10-18 Thread Paul Vernon
Just to follow up on this, it seems that the webservice David was trying to consume using wsdl doesn't fit into the wsdl way of doing things in that it attempts to set one of the invoking arguments and pass that back as well as a complex object. To get around this, I've told him to invoke the

Re: Excel output formatting??

2007-10-18 Thread Aaron Rouse
Yeah, it is how my current export tag is setup but could not remember if it did this or not. I am pretty sure I have talked this issue before but done so many different Excel export methods over the years that they are all mixing up in my head. I do not think I used POI or building the XML to

RE: Moving from CF to .Net - need training advice/direction

2007-10-18 Thread Bruce Sorge
A great resource that helped me when I was learning .NET is http://www.4guysfromrolla.com/ As far as books, I read the following and was very helpful: ASP.NET Cookbook by O'Reily Visual C#.NET 2003 by Schmidt/Robinson Essential ASP.NET with Examples in C# by Onion For grins I also read Build

RE: Web Service HELL

2007-10-18 Thread David Adress
that was an older email...this is the new code cftry cfinvoke webservice=http://www.devcallnow.com/WebService/OneCallNow.asmx?wsdl; method=Login returnvariable=LoginToken cfinvokeargument name=Service value=1/ cfinvokeargument

Re: 2007 Web Design Survey

2007-10-18 Thread Cutter (CF Related)
Ever the optimist, eh Dave? Tell it to the guys who started Google. Seriously though, what is the American dream? To study hard, get a 'good' job, work yourself into the ground, and die an early death by heart failure before ever seeing your grandchildren born? No! We live in a free enterprise

RE: Encryption, on CF or on MS SQL 05?

2007-10-18 Thread Dave Watts
If I want to encrypt some sensitive data, should I use Encrypt() func in CF or use the built-in column based encryption by MS SQL 05? From the preliminary research on google, using MS-SQL 05 will eliminate storing the KEY in CFC/CFM, which to me sounds much safer. You will have to store

RE: Can cfqueryparam, cfprocparam and app.scriptProtect...

2007-10-18 Thread Dave Watts
Can cfqueryparam, cfprocparam and app.scriptProtect dodge all known SQL Injection attack? CFQUERYPARAM can, yes. There's nothing special about CFPROCPARAM; your stored procedures will be able to separate SQL code from data just like a prepared statement, in any environment from which they're

  1   2   >