RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Micha Schopman
But I don't think you have to worry about collecting enough revenue to keep a business with 50+ employees running. Microsoft sells and Microsoft means raising the pricetag (and a benefit of that is you have more space for errors), plain and simple. You have to invest a lot more time to sell a

RE: Reference to complex var not destroyed

2004-11-18 Thread Pascal Peters
I think it is you who is misunderstanding Dave. request.a = StructNew(); //creates a structure with reference request.a request.b = request.a; //creates a reference request.b to the same structure StructDelete(request,a); // deletes the REFERENCE request.a (not the structure) I don't know the

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread dave
no i dont have to worry about that because im smart enough to not have to work for someone else. and thats great that u build 100k apps but how much of it do u get to keep? and how much of it does your boss get to sit on the beach while u work and count his $$? and yeah i do use stupid words

RE: Reference to complex var not destroyed

2004-11-18 Thread Taco Fleur
I think it is you who is misunderstanding Dave. Could be.. But, what both of you are saying I thought I already understood, and I thought I explained that in my message? If you update the original, the reference gets updated, so when you would delete the original you would think the reference

QofQ Problem

2004-11-18 Thread Andrew Dixon
Hi Everyone. I have a strange QofQ problem. The error message I'm getting is: USA must be interprettable as a valid number in the current locale. The column that contains the word USA is a column that contains both letters and numbers, for example: 10902 10909 USA HPH NO2H32 It appears to be

RE: Reference to complex var not destroyed

2004-11-18 Thread Pascal Peters
I don't think you are understanding what we are saying here. You are NOT deleting the original, but you are deleting your first REFERENCE to the original object. In CF, there is no way to actually delete the structure OBJECT, only references to it. It could be that, when you delete the last

RE: QofQ Problem

2004-11-18 Thread Pascal Peters
The problem is that CF is guessing the data type of the column by looking at the values in the first row. In this case CF thinks the column contains numeric data (because of the 10902 in the first row). This was discussed several times on this list and there should be solutions in the archives.

RE: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Andy McShane
Can you remember at all how you handled the column names? i.e. 'XML_F52E2B61-18A1-11D1-B105-00805F49916B'. -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: 17 November 2004 17:42 To: CF-Talk Subject: Re: SQL Query using 'FOR XML' Coldfusion Yes, you have to loop over the

Re: QofQ Problem

2004-11-18 Thread Andrew Dixon
Hi Pascal Thanks for that, inserting the dummy record works. Can I extract the data directly from the XML? I need to query the data to extract only certain records, is there a CF function to do this? Andrew. On Thu, 18 Nov 2004 11:28:15 +0100, Pascal Peters [EMAIL PROTECTED] wrote: The

RE: QofQ Problem

2004-11-18 Thread Pascal Peters
You can use XPath with XMLSearch(). Pascal -Original Message- From: Andrew Dixon [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 11:44 To: CF-Talk Subject: Re: QofQ Problem Hi Pascal Thanks for that, inserting the dummy record works. Can I extract the data directly from the

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Micha Schopman
Well, I promised to return back on this after the meeting. In short, ColdFusion will be history in this company, and it will be replaced by tadadad ASP.NET. Reasons in short: - Market demands Microsoft solutions - Company lost their trust in Macromedia, we used to do a lot of Spectra and

Re: QofQ Problem

2004-11-18 Thread Andrew Dixon
Ok... I will take a look at that. Thanks. On Thu, 18 Nov 2004 11:47:18 +0100, Pascal Peters [EMAIL PROTECTED] wrote: You can use XPath with XMLSearch(). Pascal -Original Message- From: Andrew Dixon [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 11:44 To: CF-Talk

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Mark Drew
The spectra move burnt a lot of companies I think. Many people have had egg on their faces with their customers because of this. I am sorry to hear that but that eches something that I am hearing too in companies. And although absolutely wrong its basically going mean that everybody will be doing

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Micha Schopman
Yep, it's basically eat or be eaten .. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 ~| Special thanks to the

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Calvin Ward
A company I'm working with is moving towards J2EE instead of .NET, the reasoning is different, but the end result will be the same. CF isn't taken seriously by the decision makers in many companies :( If this comes to pass for this company, I'm going to miss workintg with CF! - Calvin

RE: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Taco Fleur
The only way I found to do this is actually get an ADO stream, I wrote an SP that gets the result and stores it into a T-SQL variable. If you are interested I can post it when I find it..? Taco Fleur -Original Message- From: Andy McShane [mailto:[EMAIL PROTECTED] Sent: Thursday, 18

RE: Reference to complex var not destroyed

2004-11-18 Thread Taco Fleur
Ok, To make a long story short, you guys are saying a reference does not get deleted when the reference to the object (or the object) gets deleted, and this is normal behavior. It's the following comments though that are still vague, it could be and maybe. I'm just trying to fully understand what

RE: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Andy Mcshane
Thanks, I am definitely interested! This would be of a great help to me. Andy McShane Head of Development Scout7 Ltd, 324a Lichfield Road, Mere Green, Sutton Coldfield West Midlands United Kingdom B74 2UW Telephone: +44 (0)121 323 2640 Mobile : 07866 430783 Fax: +44 (0)121 323 2010

RE: Reference to complex var not destroyed

2004-11-18 Thread Micha Schopman
ColdFusion only creates a pointer to the variable :) If you want to completely copy the struct you need to use structcopy(structure). So if you clear out a variable references by a pointer, both will be history. The GC will eventually collect the wrecks and cleans up the memory. cfset a =

Re: Image color info?

2004-11-18 Thread Doug Hughes
Get the Alagad Image Component. It has a method getImageMode() (I think) which returns a string identifying the image type. I know it doesn't support cmyk so that format should either blow up or come back with unknown. http://www.alagad.com Doug On Wed, 17 Nov 2004 21:09:44 -0500, Emmet

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Joe Rinehart
[quote]Well, actually, have you checked out ASP.NET 2.0[/quote] no not really and i wont until billy comes over and sucks a fart outta my azz and refunds me all the money hes ripped me off for! haha Dave, your customers may appreciate it if you check it out. I've worked in positions where I

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Joe Rinehart
and yeah i do use stupid words partly because i have to be prof all day and most of the time i dont feel to do it here as well. This list has many readers. I actually think of it as a marketing tool. But im not like a lot of u who jump ship everytime the wind blows or u hear someone say

Re: Returning javascript variables to CFMX via hidden fields.

2004-11-18 Thread Arden Weiss
Thanks for pointing out the obvious to this Javascript newbie -- your revised code did the trick for this simple app -- next step will be to use your other advise for my real case of where I am creating the initial mover box contents from database tables. Thanks Again Pascal...

SOT: Outsourcing

2004-11-18 Thread Ryan Emerle
Has anyone had any success outsourcing large projects, or portions of large projects, overseas or to temporary/freelance employees? Any pros/cons to either? Any resources you can offer to someone exploring his options? Basically, we're looking to supplement our current resources while the

Re: Returning javascript variables to CFMX via hidden fields.

2004-11-18 Thread Arden Weiss
I also want to thank Steve Drucker for the initial example code snippets that show how to pass variables back and forth between CF and Javascript -- see following link for Chapter 19 of the The Cold Fusion Web Database Construction Kit that deals with Data Validation Techniques, etc...

RE: What sets the domain in default CFID cookies?

2004-11-18 Thread Gaulin, Mark
Hi If that cflocation is changing your user's host name then I'd suggest changing the cflocation, probably by removing the relative path stuff and using either a path that starts with / (without http), or, to be double-sure, putting the whole url there (http://#CGI.HTTP_HOST#/blah/blah). (This

RE: Outsourcing

2004-11-18 Thread Micha Schopman
We outsource in Romenia, Pro's: Cost per hour is low Con's: Quality of the code varies from good to awfull. You move the work from development to project management, you need to talk and explain a lot. Micha Schopman Software Engineer

RE: SOT: Outsourcing

2004-11-18 Thread Calvin Ward
Wouldn't there be some level of training/bringing up to speed on the requirements/business processes even if you outsource? Also consider that overseas may very well create a time lag which can impact critical portions of time sensitive project. - Calvin -Original Message- From:

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Dave Watts
Dave's a smart guy and says good things - I'd read them carefully instead of reacting brashly. I think I took a CF class from him once, but it may have been Flash. Thanks for the compliment, but if you took a Flash class from me you should seriously look into getting a refund! Dave Watts,

Oracle SQL date compare question...

2004-11-18 Thread Greg Morphis
I have a piece of a query thats throwing me off.. I've solved the problem but I dont understand the solution. In the SQL I'm comparing dates. I use some pretty fancy SQL to get the startdate of a week and enddate of a week and startdate of a quarter and enddate of a quarter to display a calender

RE: Reference to complex var not destroyed

2004-11-18 Thread Dave Watts
I don't think you understand me correctly, I understand that a REFERENCE is created and not a copy of the structure itself, if you read my message again you might see this. My question is: why is the reference not destroyed when the original structure is? When I update the original

Re: Reference to complex var not destroyed

2004-11-18 Thread Matthew Drayer
Hi Taco, Dave is correct. When you create a new structure, you are creating a container which is stored in memory. You can assign as many pointers to it as you want during its lifetime. When you delete all the references to the container, said container is essentially lost. At that point

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Joe Rinehart
LOL. Can I quote that to whoever answers the phone at Figleaf? It was either you or Steve Drucker for one of the Flash classes I took, but the other was from Branden Hall. -joe On Thu, 18 Nov 2004 09:49:48 -0500, Dave Watts [EMAIL PROTECTED] wrote: Dave's a smart guy and says good things -

Re: Oracle SQL date compare question...

2004-11-18 Thread Deanna Schneider
Because there's no such thing in Oracle as a date without a time. It defaults to midnight, I believe, on a standard install. So, while you may not have put a time in - it is in there. You have two options - format the startdate and finishdate to truncate their time portions - so that you're

Spectra

2004-11-18 Thread SStewart
Is anyone writing 3rd Party plugins for Spectra, similar to the stuff that's available for PHP Nuke and dot net nuke? Thanks sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 100 Chantilly, VA 20151 Phone: (703)

RE: SOT: Outsourcing

2004-11-18 Thread Dawson, Michael
At a previous employer, I was in the central time zone. I would ask questions of engineers in California. By the time they arrived for work, I would lose 2-3 hours depending on daylight saving time. Then, they had to ask their engineers in Japan, losing another day or more. All in all, it

Re: Spectra

2004-11-18 Thread Mark Drew
I would think not.. I think all the spectra bods moved to FarCry, I on the other hand am stuck with a badly implemented one :S MD On Thu, 18 Nov 2004 10:24:49 -0500, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is anyone writing 3rd Party plugins for Spectra, similar to the stuff that's

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Dan O'Keefe
Thanks for sharing. Sounds like you did not have a fighting chance and their minds were made up before the meeting. Can't blame them about the ill feelings regarding Spectra. In hind sight, it was a major mistake made by Allaire, and it affected them everywhere, including their earnings and stock

RE: Spectra

2004-11-18 Thread SStewart
I'm evaluating cheap/free CMS systems and one of the criteria is 3rd part modules sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 100 Chantilly, VA 20151 Phone: (703) 471-8400 Fax: (703) 834-5527 -Original

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Dan O'Keefe
sucks a fart outta my azz if u could pop out a turd with info in it dave, do you have a particular infatuation with the anus? Might try and find a more educated way of getting your point across. Never know when someone uses the list to do research on you, and the things you post now might come

Re: SOT: Outsourcing

2004-11-18 Thread Jeff Langevin
We've outsourced oversees and domestically. I think everyone involved in my company agreed that the oversees work was a disaster. The code that came back sometimes worked, sometimes didn't. Managing the project was a huge time sink. And the time difference it made everything an order of

CFMX / IIS Crash

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Anyone ever seen the situation where IIS comes to blows where IIS crashes when in use with CFMX - no real sign of why...just stops!? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in

Re: Oracle SQL date compare question...

2004-11-18 Thread Greg Morphis
aha... yeah it defaults to midnight, I did some research.. I already had a fix, as noted in my previous message but thanks for the explaniation On Thu, 18 Nov 2004 09:21:45 -0600, Deanna Schneider [EMAIL PROTECTED] wrote: Because there's no such thing in Oracle as a date without a time. It

Re: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Lawrence Ng
Those of us in IT can't just look at the technology anymore. We must adopt a mgmt mindset. Like anything else, if there are more say MS/ or Java/JSP or PHPor other developers than CF developers then it would stand to reason that mgmt would prefer to look at a platform that has a larger base. I

Re: An exception occurred when executing a Com method

2004-11-18 Thread Asim Manzur
This is not a JAVA component, I am aware that coldfusion is not good to initiate the NON JAVA Components. But this component is perfectly working in ASP. There must be a way to work around to initiate the component in coldfuion. Is any software which creates the virtual environment (which

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Dave Watts
[quote]Well, actually, have you checked out ASP.NET 2.0[/quote] no not really and i wont until billy comes over and sucks a fart outta my azz and refunds me all the money hes ripped me off for! haha Luckily, i dont have to work for anyone, especially where'd i'd be in a position to have

Re: SOT: Outsourcing

2004-11-18 Thread Douglas Knudsen
why not post arequest for developers over on cf-jobs? There are many frelance and contractors around that may be interested as well as part-time frelancers, like myself, that would be interested. Also, you can post job related questions/discussions on cf-jobstalk, IIRC. See

RE: Image color info?

2004-11-18 Thread James Smith
I know it doesn't support cmyk so that format should either blow up or come back with unknown. What is the point in recommending a commercial product that someone would have to pay for when you state that you KNOW it doesn't support one of the formats in question? Especially when you take

RE: SOT: Outsourcing

2004-11-18 Thread Michael Dinowitz
There was just a post about IIS failing for no sane reason. I'm getting that as well which is why HoF looks like its down. I'm on it. -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 18, 2004 11:32 AM To: CF-Talk Subject: Re: SOT:

RE: Macromedia gives up on the server market in Australia and wal ks away.

2004-11-18 Thread Dave Watts
Arguments about shorter product development times, Blackstone etc. were reacted on with .. ASP.NET is our future, we are done with Macromedia. I don't know if you caught my response yesterday, but you may want to investigate BlueDragon.NET, which will let you keep most or all of your

RE: CFMX / IIS Crash

2004-11-18 Thread Michael Dinowitz
Anyone ever seen the situation where IIS comes to blows where IIS crashes when in use with CFMX - no real sign of why...just stops!? Yes. I'm trying to find out what the cause it now. ~| Special thanks to the CF Community

RE: Reference to complex var not destroyed

2004-11-18 Thread Dave Watts
To make a long story short, you guys are saying a reference does not get deleted when the reference to the object (or the object) gets deleted, and this is normal behavior. It's the following comments though that are still vague, it could be and maybe. I'm just trying to fully understand

RE: CFMX / IIS Crash

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Hmmm, really..very strange. Keep me posted if you find anything helpful. Are you finding that all of a sudden CF queues build up and then bam...nada? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 16:45 To: CF-Talk Subject: RE: CFMX /

RE: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
I wonder if the same would happen if one were to use Apache (if it's IIS crashing or root of it in the first place) ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message:

RE: CFMX / IIS Crash

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Yeah..maybe but if you are bound to MS you have no choice... -Original Message- From: Lawrence Ng [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 17:05 To: CF-Talk Subject: RE: CFMX / IIS Crash I wonder if the same would happen if one were to use Apache (if it's IIS crashing or root

RE: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
it would be interesting to see the test results of having 2 windows machines running the exact hardware specs, OS and patches installed, MX and databases but one is running IIS and the other Apache. they are turned on the same time and presto... the game's afoot! hmmm... =)

Re: CFMX / IIS Crash

2004-11-18 Thread Bryan Stevenson
LOL...reminds me of a competition MS had once...put a Windows box outside their firewall and said hack it if you canit crashed before anyone had a chance ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax:

Re: Verity Collection

2004-11-18 Thread Jason Smith
What I seem to be having more of a problem with is the return url and the correct indexing of the search and it's settings. Is there a good site that shows some solid tutorials about settings up and correctly indexing verity collections in the Cold Fusion Administrator? At 07:45 PM

Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
yes I remembered that as well. This is more as a learning exercise and who knows might come in handy when we need to sell the idea to our clients, mgmt, etc. ~| Special thanks to the CF Community Suite Gold Sponsor -

Re: CFMX / IIS Crash

2004-11-18 Thread Bryan Stevenson
hehe...that was a learning exercise todon't make a public fool of yourself ;-) 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:

error loading cfx dll

2004-11-18 Thread Steve Logan
I'm relatively new to CFMX 6.1 (though I do have a handfull of CF5 servers I'm in charge of). This one is CFMX 6.1 / Windows 2000 Advanced Server. Anyway, I've put a cfx tag (CFX_ResolveDNS.dll) in my C:\CFusionMX\CustomTags directory. I've registered it in CF Admin, but each time we try to

CFX_FILE not creating a file when writing?

2004-11-18 Thread Nick Baker
My host disabled the CFFILE tag and installed a CFX_FILE tag. The CFX_FILE tag will write to an existing file, but doesn't automatically create a file when the file doesn't exists. Unfortunately, I can't find documentation that specifically addresses how to create a file with CFX_FILE or some

RE: error loading cfx dll

2004-11-18 Thread Dave Watts
Anyway, I've put a cfx tag (CFX_ResolveDNS.dll) in my C:\CFusionMX\CustomTags directory. I've registered it in CF Admin, but each time we try to load up the test page we get an error of Unable to Load Library. Are there any dependencies within the library? You might load it up in

CF integration w/ warped text graphic challenges?

2004-11-18 Thread Anders Green
I'd guess that we've all seen them by now: The little graphic with some wavy lines, or circles, as the background, containing some warped text or numbers. You type in the code, and this prevents machines from being able to sign up. I googled... but looking for warped on the internet is almost as

Re: CFMX / IIS Crash

2004-11-18 Thread Lewis Sellers
Lawrence Ng wrote: I wonder if the same would happen if one were to use Apache (if it's IIS crashing or root of it in the first place) I'm using both at the moment (because it was driving me crazy trying to get CFMX 6.1 to even load an admin page without hanging up the machine a while

RE: CFMX / IIS Crash

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Mmmm, it may be an option -Original Message- From: Lewis Sellers [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 17:53 To: CF-Talk Subject: Re: CFMX / IIS Crash Lawrence Ng wrote: I wonder if the same would happen if one were to use Apache (if it's IIS crashing or root of it in

Re: Spectra

2004-11-18 Thread Rick Root
[EMAIL PROTECTED] wrote: I'm evaluating cheap/free CMS systems and one of the criteria is 3rd part modules Spectra is not an option if you value your sanity. ~| Special thanks to the CF Community Suite Gold Sponsor -

Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
Hey Lewis, thanks for that info... interesting to say the least. ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message:

Re: CFMX / IIS Crash

2004-11-18 Thread Bryan Stevenson
Along these lines...we have one site right now that we develop on Windows 2000 Server and fire the files up to the production Linux server running Apache...apart from setting some path vars differently depending on which environment is detected...all code is identical and all runs 100% smooth

RE: Spectra

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Granted...it was good while it lasted ;-) Have a squizz at FarCry -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 17:58 To: CF-Talk Subject: Re: Spectra [EMAIL PROTECTED] wrote: I'm evaluating cheap/free CMS systems and one of the criteria is 3rd

CF Scheduled Tasks not working

2004-11-18 Thread Phill B
I have 3 task that are set up in CFMX. They worked last week but now they give errors when I run them in the CF admin. If I copy and paste the page url into a browser, it works fine. The log files show the pages as running with out error. Any ideas? -- Phillip B.

Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
reason why I'm interested is that I'm going to build 2 windows box to see how things go with transactional oeprations: 1. MX with apache and SQL Server 2. MX with IIS and SQL Server and if I'm really bored during the holidays ... compare it with 1.1 MX with apache and Oracle 9 or 10g 2.1 MX

RE: CFMX / IIS Crash

2004-11-18 Thread Robertson-Ravo, Neil (RX)
Mike, you reckon it would be dodgy connectors? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 16:45 To: CF-Talk Subject: RE: CFMX / IIS Crash Anyone ever seen the situation where IIS comes to blows where IIS crashes when in use with CFMX -

Re: CFMX / IIS Crash

2004-11-18 Thread Lawrence Ng
I'm not sure if its MX though.. it may be linux that is stabilizing it. I did both ... develop on win machines and handed it off to the penguin to go live. have your win2k box up and running along side the linux box and keep them running... let's see who gets knocked down. even then, I don't

Re: Xml from SQL 2k

2004-11-18 Thread Andy Mcshane
Thanx Mr.Dave - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 11, 2001 12:24 PM Subject: RE: Xml from SQL 2k Can any one tell me where can i find an article related to xml with CF The database is sql server

Re: CF Scheduled Tasks not working

2004-11-18 Thread George Abraham
Could be authentications issues if the pages are behind an application security wall. George On Thu, 18 Nov 2004 12:01:19 -0600, Phill B [EMAIL PROTECTED] wrote: I have 3 task that are set up in CFMX. They worked last week but now they give errors when I run them in the CF admin. If I copy

Re: Xml from SQL 2k

2004-11-18 Thread Andy Mcshane
I have been desperately searching for something similar to this. From my Coldfusion page I execute a stored procedure that extracts data from my SQL database into an XML format and returns it to my page. My problem is how do I handle back in CF? When I query my #query.recordcount# I have

Re: CF integration w/ warped text graphic challenges?

2004-11-18 Thread Joe Rinehart
Anders, Search for CAPTCHA :) -joe On Thu, 18 Nov 2004 12:54:47 -0500, Anders Green [EMAIL PROTECTED] wrote: I'd guess that we've all seen them by now: The little graphic with some wavy lines, or circles, as the background, containing some warped text or numbers. You type in the code, and

Re: SOT: Outsourcing

2004-11-18 Thread Rob
I am not in charge of the overseas outsourced project here - but I am watching it happen. There are many things people are not thinking of when it comes to outsourcing overseas, and I find it kind of funny to watch. Here are some of the good ones * CVS, network, database access is / can be

Re: error loading cfx dll

2004-11-18 Thread Lewis Sellers
Steve Logan wrote: I'm relatively new to CFMX 6.1 (though I do have a handfull of CF5 servers I'm in charge of). This one is CFMX 6.1 / Windows 2000 Advanced Server. Anyway, I've put a cfx tag (CFX_ResolveDNS.dll) in my C:\CFusionMX\CustomTags directory. I've registered it in CF Admin, but

Re: SOT: Outsourcing

2004-11-18 Thread Rob
On a humorous note, I think we should start outsourcing CEOs, and board members - there would be a great cost savings an we could forgo golden parachutes :) On Thu, 18 Nov 2004 10:24:15 -0800, Rob [EMAIL PROTECTED] wrote: I am not in charge of the overseas outsourced project here - but I am

Re: SOT: Outsourcing

2004-11-18 Thread Aaron Rouse
At one of my previous jobs, about 4-5 years ago, they decided to out source an entire project to an Indian based company. The final product did function, but the problem the company I worked for ran into was that the documentation made little sense to anyone and just the flow of how things worked

ColdFusion Crashing The Web Server

2004-11-18 Thread Ben Rogers
We've noticed that, with ColdFusion MX, problems tend to cascade through the system, crashing ColdFusion MX and the Web server in turn. The types of problems I'm talking about include database connectivity issues, as well as flash remoting and web service issues. This didn't used to be the case

RE: Xml from SQL 2k

2004-11-18 Thread Lomvardias Christopher
http://www.houseoffusion.com/lists.cfm/link=m:4:17429:89212 -Original Message- From: Andy Mcshane [mailto:[EMAIL PROTECTED] Sent: Thursday, November 18, 2004 12:19 PM To: CF-Talk Subject: Re: Xml from SQL 2k I have been desperately searching for something similar to this. From my

Re: Spectra

2004-11-18 Thread Raymond Camden
Here here - I think I must be one of the few fans left. (Of course, I wouldn't use it myself anymore. ;) On Thu, 18 Nov 2004 17:58:28 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Granted...it was good while it lasted ;-) Have a squizz at FarCry -Original Message-

Whois Query by Zipcode of Registrant

2004-11-18 Thread WebStop Internet Services
Anyone know how to do a query (either using CF or even an offline or online tool) to do a whois query and get a list of all domains owned by registrants within a certain zipcode? I know this group will have the answer or know someone who does. Thanks. Michael Pool

Re: CF integration w/ warped text graphic challenges?

2004-11-18 Thread Anders Green
At 01:24 PM 11/18/2004, you wrote: Anders, Search for CAPTCHA :) Ahh. Thanks. I've found lots of research and articles now. Still no utilities yet. I'd like to be able to CFexecute something that would generate a .gif with text I chose, warped to its liking. That would make this all easy. :)

Re: CF integration w/ warped text graphic challenges?

2004-11-18 Thread Lawrence Ng
try this... http://www.emerle.net/programming/display.cfm/t/cfx_captcha ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message:

RE: Whois Query by Zipcode of Registrant

2004-11-18 Thread Dave Watts
Anyone know how to do a query (either using CF or even an offline or online tool) to do a whois query and get a list of all domains owned by registrants within a certain zipcode? I don't think most registrars will let you search whois databases by zipcode. I also don't think most registrars

Re: Spectra

2004-11-18 Thread Mark Drew
I am a fan.. but storing content in db's where you have to loop through all of them or use verity to find a boolean is a bit much! MD On Thu, 18 Nov 2004 12:50:12 -0600, Raymond Camden [EMAIL PROTECTED] wrote: Here here - I think I must be one of the few fans left. (Of course, I wouldn't use

Load pages from 2 different domains...

2004-11-18 Thread Alex Ninan
Hi, I have a page a.htm on www.a.com and b.htm on www.b.com Is there a way to create a new page (c.htm) on www.a.com to show the a.htm followed by b.htm I trying this without using frames. Let me know yur thoughts Joe ~|

Re: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Rob
http://216.239.57.104/search?q=cache:DCTbFs36U50J:www.houseoffusion.com/cf_lists/index.cfm/method%3Dmessages%26threadid%3D19430%26forumid%3D4+%22for+xml%22+coldfusion+%22rob+rohan%22hl=en On Thu, 18 Nov 2004 10:27:05 -, Andy McShane [EMAIL PROTECTED] wrote: Can you remember at all how you

RE: Load pages from 2 different domains...

2004-11-18 Thread Tangorre, Michael
From: Alex Ninan [mailto:[EMAIL PROTECTED] I have a page a.htm on www.a.com and b.htm on www.b.com Is there a way to create a new page (c.htm) on www.a.com to show the a.htm followed by b.htm I trying this without using frames. Look into: cfhhtp Michael T. Tangorre

Re: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Rob
Oh my, that was almost 2 years ago... where does the time go... On Thu, 18 Nov 2004 11:14:16 -0800, Rob [EMAIL PROTECTED] wrote:

Re: CF Scheduled Tasks not working

2004-11-18 Thread Phill B
D'oh, I figured it out. It was a typo in the url that the browser fixed for me when I pasted it into the address bar. Ugh Thanks On Thu, 18 Nov 2004 13:17:27 -0500, George Abraham [EMAIL PROTECTED] wrote: Could be authentications issues if the pages are behind an application security wall.

Re: Oracle SQL date compare question...

2004-11-18 Thread Deanna Schneider
You may want to document why you're doing it that way so that someone following you would know your intent. she who speaks from experience... -d - Original Message - From: Greg Morphis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 18, 2004 9:54 AM Subject:

Re: error loading cfx dll

2004-11-18 Thread Steve Logan
Thanks Dave (and Lewis) for the suggestions. I ran depends.exe on it on the server and there didn't seem to be any missing or otherwise problematic dll files. Back to the drawing board.. Steve Anyway, I've put a cfx tag (CFX_ResolveDNS.dll) in my C:\CFusionMX\CustomTags directory.

Re: Oracle SQL date compare question...

2004-11-18 Thread Greg Morphis
That is just it, I didnt know why I was doing it that way at the time.. I just knew it worked ;) Anyways, Thanks! On Thu, 18 Nov 2004 13:18:16 -0600, Deanna Schneider [EMAIL PROTECTED] wrote: You may want to document why you're doing it that way so that someone following you would know your

Re: SQL Query using 'FOR XML' Coldfusion

2004-11-18 Thread Lawrence Ng
u know we're getting old when we forget the time... LOL ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184801

Re: CFMX / IIS Crash

2004-11-18 Thread Bryan Stevenson
yep...time to get outside there Lawrence ;-) 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

  1   2   >