Re: Oracle Sequences

2003-11-05 Thread Dave Carabetta
I am using CF6.1 on a redhat linux server connecting to Oracle 8i.I am trying to select the CurrVal of the sequence that i just used to insert a recod.in mssql server i can do this by selecting @@identity and i know in oracle i can do it using SeqName.CurrVal.The problem is i get this error when

RE: Oracle Sequences

2003-11-05 Thread Dave Carabetta
right but that is not a very intuitive approach, shouldn't there be something.is it just because the oracle driver does not allow multiple queries in the same cfquery and the mssql driver does?is there any way i can get around this.i really don't want to have to break that statement out into

Re: Oracle Sequences

2003-11-05 Thread Dave Carabetta
That's how it's been explained to me. It might be different with CFMX (we're still on CF 5.0). Well, unless it was a CF 5-specific thing (we went straight from 4.5 to MX), we did this all the time without issue using CF 4.5/Oracle in our code. And this was as recent as 3 months ago when we

RE: JVM settings the hard way

2003-11-05 Thread Dave Carabetta
Anyone know where the setting for JVM path is in either the registry or an .xml settings file? I killed my server trying to make it use the Sun JVM, now I can't get it back. It's jvm.config, which in the Enterprise version is in \cfusionmx\runtime\bin. If you change JVM settings through CF

RE: JVM settings the hard way

2003-11-05 Thread Dave Carabetta
and be wary of using the JRun admin tool to mod thisunless this got fixed, the admin tool had a way of mucking up the jvm.xml file.Did this get fixed?I can't recall. No, it hasn't been fixed. In my experience, the only time it messes things up is when you have -server in the arguments.

Passing a List to Oracle 8i Stored Proc

2003-11-05 Thread Dave Carabetta
I'm trying to pass a list in to an Oracle 8i stored proc (using MX 6.1), but it doesn't seem to be working. This list would be something like: BO,AT,CA and in the proc, the query would be something like SELECT foo FROM myTable WHERE code IN (theList) Is this even possible? If I pass in one

SOT: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
Thought this was interesting: http://www.suse.com/us/company/press/press_releases/archive03/novell_suse.html With RedHat ending their free distros (well, at least the free versions that won't change every 2 weeks), and now this acquisition, seems like cost-benefit of Linux is slowly dying.

RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
Redhat are not ending their free distros in fact they are extending the free distro into a new release called Fedora. See http://fedora.redhat.com. Yes, I know about Fedora. Perhaps the most important sentence on the page you refer to is this: It is not a supported product of Red Hat, Inc.

Re:FW: Not Subscribed: OT: SQL Server to Oracle migration

2003-11-04 Thread Dave Carabetta
2) Join syntax: SQL Server will often add SQL Server specific text when you create a join through its wizards. As long as you're writing toward the ANSI SQL spec you should be OK. As he mentioned that he's porting to Oracle 8i, it's worth noting that 8i does not support ANSI outer join syntax

RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
But if you go to the store RedHat costs what, like $30-$40? Granted the Enterprise Version is expensive, but you can still buy the boxed version of RedHat Linux which I'm sure will be as reliable as ever. However, RH up to version 9 stops being supported (patches, errata, etc.) on Dec. 31, and

RE: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
But if you go to the store RedHat costs what, like $30-$40? Granted the Enterprise Version is expensive, but you can still buy the boxed version of RedHat Linux which I'm sure will be as reliable as ever. It is my understanding that RedHat is discontinuing all sales of RedHat Linux,

Re: Novell to acquire SUSE

2003-11-04 Thread Dave Carabetta
What is an unsupported platform anyway? Ever tried to get support from Microsoft for Windows? Ever found a bug in Windows and demanded that Microsoft fix it? There are plenty of companies that specialize in supporting platforms whether they be Windows, Solaris, or Linux, so its not like you can't

Re: CFHTTP Issues

2003-10-29 Thread Dave Carabetta
We recently physically moved some development servers to another location, and also changed the IP addresses of the machines for some reason that escapes me (I am not on that team). Anyway, we have an application that, until then has worked fine. The code example is: !--- call the ASPX web

Re: MX 6.1 and MapPoint

2003-10-28 Thread Dave Carabetta
The problem is not with Axis; it is that there is not syntax in CFINVOKE to indicate which of the multiple services defined in the WSDL file you want to use, so CFMX just ends up picking a 'random' one (the 'first' one).We need to fix this. :-) Desperately awaiting this fix!! This is absolutely

Re: Eolas patent suit

2003-10-25 Thread Dave Carabetta
Sure! Lots of folks do: Crazy people, masochists, people who believe that There's enough distrust in the world, Pirates (they like the X), Rerun from TV's What's Happing!. um, Goofy (despite Micky and Donald's warnings), and, um. well - I think that's about it. Well, I'm not sure Rerun is

RE: JAVA 1.4 vs CFMX Java

2003-10-24 Thread Dave Carabetta
Generally speaking, the newer versions of sun's java are better than the older versions. CFMX 6.0 comes with version 1.3.1, and CFMX 6.1 comes with version 1.4.2, currently the latest version. If you haven't upgraded to 6.1, I highly recommend it. If you have, you already have the latest version,

Re: Verification Please

2003-10-24 Thread Dave Carabetta
Does the below work on MX 6.0 cffunction name=test returntype=string output=false cfargument name=myarg required=yes type=string cfscript var testreturn=Arguments.myarg; /cfscript cfreturn testreturn /cffunction I think that it will not, can someone verify for me? No, it does not. The

RE: JRun (Problems starting cfusion Server)

2003-10-20 Thread Dave Carabetta
Yep, strangest thing, it puts in that -server option, both on windows and linux installs. You have to go track down that config file, probably jvm.config in your %installdir%\runtime\bin folder, or for J2EE it could be just in the \bin folder... well track it down, take out the -server argument,

MX 6.1 and MapPoint

2003-10-16 Thread Dave Carabetta
(Searching the archives, it doesn't sound like anybody has, but I'm not sure if people have figured it out in the interim and just never posted) Has anybody been able to get MX 6.1 to successfully connect with the Microsoft MapPoint 3.0 web service? Apache throws up on it, and searching the MS

RE: MX 6.1 and MapPoint

2003-10-16 Thread Dave Carabetta
I've seen this question before and the answer, but I couldn't find it anywhere.Here's what I can remember. The problem is that the MapPoint WSDL defines multiple services.While this is a perfectly valid thing to do, AXIS doesn't support multiple service definitions in a single WSDL.The

Re: Top n in Oracle

2003-10-15 Thread Dave Carabetta
I need to pull Top n (lets say three) from an oracle 8i db.Now SQL Server makes this really easy to do.How would I go about doing it in Oracle?I have tried sub selects and rownum and stuff, but the order gets al hosed up if I use those.Basically I need them ordered by date desc. Any help would be

Disabling RDS and Flash Remoting

2003-10-15 Thread Dave Carabetta
Back when we first launched MX on our production site, we followed the link below to disable RDS: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/config22.htm#wp1134341 However, I've just come across another article on the MM site that says I need to go one step further and comment out

RE: Alternatives to Verity

2003-10-13 Thread Dave Carabetta
Does Lucene index non-webpages as well? I.e. pdf, rtf, word etc? Try going here to answer these and other questions. It's a pretty comprehensive site: http://jakarta.apache.org/lucene/docs/index.html Regards, Dave. ___ No banners. No pop-ups. No

Re: Problem upgrading CFMX to MX6.1 for JRun 4

2003-10-13 Thread Dave Carabetta
According to the instructions for upgrading MX to MX 6.1, I must first undeploy Cold Fusion MX before deploying Cold Fusion MX 6.1; the instructions for undeploying say to simply delete the cfusion directory from your server. This confuses me, since that directory is where all of the Cold Fusion

RE: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Dave Carabetta
Whitespace in the code is important? In this day and age that seems pretty backward :-) The whitespace has to do with horizontal whitespace (tabs) predominantly. When coding and if statement, for example, there's no concept of curly braces to surround your code block with. You tab-indent for

Re: SQL SP

2003-10-10 Thread Dave Carabetta
Hi all Hope someone can help me with this: How can I tell a SP to query a different dbs inside of a SP? I need to be able to run some queries on one db and within that same SP run queries on another db. IS this possible?Or will I need to do two different SP one in each db and a temp table to

Re: CF Flash grid

2003-10-10 Thread Dave Carabetta
Is there a flash grid that acts in many ways like the CFGRID tag and is easy to impliment. I'm looking for something that I can slap onto a page like this: swf call line data1 line data2 line data3 etc. If it can be (or has been) wrapped into a custom tag then cool. The mail thing needed is

Re: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Dave Carabetta
Thanks for the feedback everyone. Zope doesn't sound as bad as it seems. Only issues is learning while architecting a large project. It's true learning on company time is a big perk. Does anyone see Python and/or Zope and professionally marketable skill? Python, absolutely. Zope, not so much

Re: Emails out of order in Digest mode?

2003-10-09 Thread Dave Carabetta
I'll look it over and see what's up. I'm swamped at the moment so I'm behind in my email as well as my list upgrades. I don't think it's just the digest mode. I'm subscribed to the as they come in option, and lately (that's the best I can say because I don't know if it correlates to the

Re: Hashtable in CF?

2003-10-09 Thread Dave Carabetta
But what I do need is a function that feeds in a long list of delminated data and parses out one copy of each unique value (where each value might be repeated several times). If I have a list of (2,2,1,3,4,1,2,1) How do I get (2,1,3,4) // order isn't important // ? You ever do anything

Re: CFContent and PDF problems

2003-10-08 Thread Dave Carabetta
We're using a CFContent to push files to a client page (after they've clicked on an appropriate link of course).Things are working for image files, but we are getting odd behaviour when we try to view PDF documents. Here's the code in question: !--- Set the name of the download file in the HTTP

Re: Sorting CFCs: Structures over Arrays in collections

2003-10-06 Thread Dave Carabetta
cfreturn StructDelete(this.Venues, arguments.Venue.getVenueID(), true) This line returns true if the Venue existed in the collection, false if it did not. To add a component you could use StructAppend (which allows you to set an overwrite behavior if you like) but I like to do this: cfif

Re: Broken Pipe (cross-post)

2003-10-04 Thread Dave Carabetta
Yet 6.1 is a free update? Would that fix these issues? It may, it may not; I'm not sure. But I can't just blindly upgrade our production site at this point. We've upgraded our staging servers to do some regression testing, but we're not done testing as yet. Also, our 6.0 U3 staging servers

Re: Broken Pipe (cross-post)

2003-10-04 Thread Dave Carabetta
Any chance this could relate to a user closing their browser as data is being returned back to the client? I used to see something similar on a reporting application for a csv download... I honestly don't know. I ran a few tests doing that and was unable to replicate those stack traces, but

Re: Server Slowness

2003-10-03 Thread Dave Carabetta
Does anyone know why CFMX is so slow?I am running CFMX 6.01 on iPlanet 6 from a solaris 2.8 sparc station with 2 750MHz cpu's and 2gig of ram. The CF server will pin one of our cpu's and only one of them at 50% and will never go into a sleep mode.It takes the server about a day to get to 50%, but

Broken Pipe (cross-post)

2003-10-03 Thread Dave Carabetta
(I posted this to cf-linux, but the e-mail never came through for some reason. Sorry if this is a dupe for some of you.) I've just been browsing our JRun log files (and MX log files for that matter) and have noticed a *ton* of errors like the huge stack trace below regarding broken pipes. Other

Using getPageContext().forward()

2003-09-30 Thread Dave Carabetta
I'm using Client variables with getPageContext().forward() and I'm running into a problem where Client variables I set on the first page do not exist on the page that I forward to. I'm wondering whether or not this is expected behavior. Here's a small test snippet to reproduce: test1.cfm

Re: Using getPageContext().forward()

2003-09-30 Thread Dave Carabetta
where are you storing Client vars?If it's cookie, the getPageContext().forward() does not return a meta redirect to the client browser, it just passes processing off to the fwd'd template. try using session scope - then test with that. Database. And session scope isn't an option for me

Re: CFMX Instances on JRUN

2003-09-29 Thread Dave Carabetta
Thanks, i will give the below approach a shot but what i dont understand is.. if you already have an expanded cfusion-ear(ear file) install.. why cant you just copy the expanded ear to new JRun Instance.. this should work right? >From what you describe, yes, it should theoretically work.

Re: CFMX Instances on JRUN

2003-09-28 Thread Dave Carabetta
Does anybody know how to test Which Instance of CFMX processed therequest? I have 2 instances created as per docs(just copying cfusion-ear) into the second instance created on the JRun Server. Left (SERVER-INF) alone in both Instances, since these have instance config parameters. Default CFMX

Re: CFMX Instances on JRUN

2003-09-28 Thread Dave Carabetta
Have you configured Multiple Instances of CFMX (version 6.1)? Did you do something different than i did?For starters, I don't use the official instructions I've seen in theMacromedia documentation regarding installing MX into a JRun instance (EARdeployment, etc.). I find them too cumbersome and

Re: CFMX Instances on JRUN

2003-09-27 Thread Dave Carabetta
I wasnt able to find any clear documentation of the correct setup for Multiple Instances of CFMX on JRun. I installed CFMX Enterprise with Full JRun Version running. Can someone point me any docs on how to add the Second Instance of CFMX pointing to the same Web Root. It would be nice to debug

Re: CFMX6.1 admin left menu does not load then CF hangs

2003-09-26 Thread Dave Carabetta
Just a week ago I started seeing one of my production servers startacting strange when I went into the cfadmin to change a setting.When Ilogged in the main body frame loaded but the left nav menu did not load.I found that if I hit reload several times CFMX no longer responded andI needed to reset

Re: action pages not passing along info

2003-09-26 Thread Dave Carabetta
I'm having a problem with an action page that is notpassing along an id number as part of a URL. Theapplication is supposed to allow a user to add a newrecord to a personnel table and then either stop thereor click a link to go to another page to add a recordinto a vehicle table for the person who

Re: Get the beta of MM Central

2003-09-25 Thread Dave Carabetta
Except Contribute has been in the works since before that case hit the mainstream ;-) Contribute sounds IMHO like a great way of marketing Macromedia products (and apps developed by all of us) to large corps etc. (i.e. the enterprise licensing they discuss on the what is it page). Use Contribute

RE: What happened to my digest?

2003-09-25 Thread Dave Carabetta
i would wager that when michael switched everybody's preferences over to HTML by default, your digest preferences got wiped out. perhaps he can chime in and confirm or reject this. regards, Dave. From: Debbie McDaniel [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: 6.1 RDS

2003-09-24 Thread Dave Carabetta
Tried it. No go. Gee, I wonder if anybody from Macromedia might have some ideas What version of MX are you using? Do you have a context root other than /? If so, make sure you've deployed rds.war correctly. If not, what are the details on your setup (OS, MX version, etc.)? Regards,

RE: 6.1 RDS

2003-09-24 Thread Dave Carabetta
I did cover this previously, but ... XP Pro, CF 6.1, HS+ 5.2 What do you mean by context root other than /? What is rds.war? 1. By MX version, I meant standalone or for J2EE. 2. If you open up WEB-INF/jrun-web.xml, what does it say in between context-root/context-root? 3. In your

Re: CFMAIL TO param problems with large queries

2003-09-24 Thread Dave Carabetta
Oddly it seems that I am getting all the records but at the end there is what seems to be a blank email address. When I cfoutput the results it outputs the text [empty string] at the end. Seems that should be impossible with the LIKE email ='[EMAIL PROTECTED]' in the query . The query is ordered

Re: CFMAIL TO param problems with large queries

2003-09-24 Thread Dave Carabetta
I *am* disturbed with CF because this new attribute validation is *breaking* code that worked before in 4.5. This validation is unnecessary and is better to be left for the mail server to handle. It is especially a hassle when you are passing the query parameter to the CFMAIL tag the query

Re: CFMAIL TO param problems with large queries

2003-09-24 Thread Dave Carabetta
As for your suggestion, as long as my code is using the QUERY param of the CFMAIL (instead of doing it one at a time) this will not work. Now in my query I am having to add all sorts of checks to make sure the address is valid. I have wasted my whole morning playing games with this tag. One of

RE: dreamweaver stuff

2003-09-22 Thread Dave Carabetta
Not a solution but: In Dreamweaver, using just the Tab key will indent blocks of code for you. You can't do that in Studio. Sure you can. In HomeSite+, hit F8 to bring up the Options. Click on the Editor option in the left nav pane. Check the 4th checkbox from the bottom (Tab/Shift+Tab

Re: Character problem with cfhttpparam

2003-09-22 Thread Dave Carabetta
I'm going slightly nuts, I'm doing a CFHTTP POST on CFMX 6.1 with a httpparam like: cfhttpparam type=FORMFIELD name=UserName value=username.context When transmitted to the other server the value gets translated into username%2Econtext .. which doesn't fly. Anyone know how to prevent CFMX to

Re: Character problem with cfhttpparam

2003-09-22 Thread Dave Carabetta
I'm going slightly nuts, I'm doing a CFHTTP POST on CFMX 6.1 with a httpparam like: cfhttpparam type=FORMFIELD name=UserName value=username.context When transmitted to the other server the value gets translated into username%2Econtext .. which doesn't fly. Anyone know how to prevent CFMX to

Re:oracle newbie

2003-09-19 Thread Dave Carabetta
ok, this is wacked, but another developer came over and told me that his view in oracle worksheet is different, here you have to actually tell it to commitarg! i was not aware of that, so as soon as i commited the changes to the table, cf showed me the correct recordset. I know you found

Re:Oracle error

2003-09-18 Thread Dave Carabetta
the strange thing about this is that the field size is 4k and the data that is trying to be inserted is less than 4k. Anything I have found on oracle says that it can handle 4k no problem The database itself might be able to handle the size with no problem, but sometimes the calling service or

Re: OT .Net? Java? No Thanks, We'll Take Macromedia Instead

2003-09-18 Thread Dave Carabetta
Interesting article: http://update.internetweek.com/cgi-bin4/DM/y/ecvx0BddvJ0V30B8Mu0AF Well, your subject is misleading because the reality is that the only technology they didn't use was .NET. They *did* use Java as the back end server technology (JRun). For interfaces, there's really not

Re: OT .Net? Java? No Thanks, We'll Take Macromedia Instead

2003-09-18 Thread Dave Carabetta
Because Flash can work just fine with .Net and Java and they're not mutually exclusive. One is for interface and the others are back end, but that's not presented at all in the article. The author does mention that they considered ActiveX for the interface, but that's ActiveX not .Net or Java

Re: CFMX 6.1 Server Mappings Failing (SOLVED)

2003-09-18 Thread Dave Carabetta
As for the directory browse applets in the CF Admin, that's a separate issue - for example, they don't work on Mac OS X (I don't remember why but it is mentioned in the Release Notes and/or the Known Issues list) but mappings still work just fine on OS X. Directory browse applets on work in the

Re: OT: Linux Newbie Advice

2003-09-17 Thread Dave Carabetta
So what's the current RedHat version that is stable? where can I grab a copy? I am currently sticking with RedHat 7.x myself. You could download the ISOs directly from RedHat's FTP and just burn them to CD if you want. You can also buy directly from RedHat, which has the advantage of free

Re: Oracle error

2003-09-17 Thread Dave Carabetta
We have an Oracle 8.15 database. We have recently been experiencing periodic error meesage when some of our CF scripts try to execute an insert statement. The error that is returned is Error Message: Oracle Error Code = 1704PORA-01704: string literal too long When I copy and paste the SQL

RE: CF Server slow with plenty of resources

2003-09-16 Thread Dave Carabetta
I can only find errors that I have encountered during development (i.e. template not found for a cfinclude statement) nothing that gives any info as to why this server might be so slow. A couple quick thoughts: 1) Are you logging slow pages via the option in the MX Admin? Try setting the

Re: Date problem with CFMX and Oracle

2003-09-16 Thread Dave Carabetta
I am trying to do an update to my DB: UPDATE BookInventory SET Status = 'Checked Out', CheckedTo = 'rayb', ChgDate = {ts '2003-09-16 16:08:22'} WHERE id = 2043 This worked fine before, I updated my CFMX server to 6.01 and my JDBC drivers to 1.4, and am now getting column doesn't

Re: creating dirs with CFDIRECTORY in CFMX

2003-09-15 Thread Dave Carabetta
Using the same code and permissions, we get the following error: The specified drectory... could not be created the most likely cause of this error is that the dir already exists on your file system The dir definitely does not exist. Any help out there? What OS are you on? If *nix, could

KILL THIS was Re: (Admin) List upgrades

2003-09-15 Thread Dave Carabetta
Fine, fine...if this list goes HTML, send all the prettified email you want. Just know all of us whose email clients are not the leading virus infection vector in the world, won't be looking at it if we don't want to ;-) Can we PLEASE kill this thread? It hasn't been anywhere near CF since the

Re: No so good news

2003-09-13 Thread Dave Carabetta
There is a very important point for people to realize. There really isn't any good reason why Microsoft would want to win this case. For them, it would be much better to not support plug-ins, so their competitors plug-ins are screwed e.g. Real Player, QuickTime, Flash, Java, etc. Since

Re: No so good news

2003-09-13 Thread Dave Carabetta
Would those browsers be able to remain free if they were to incur licensing costs? Fair point, but as I believe it was Jochem who pointed it out, this patent isn't their core service. A cursory look at their web site (www.eolas.com) shows that they seem to be more into biotechnology that web

Nested Function Order Bug?

2003-09-12 Thread Dave Carabetta
I've come across a stange sort of bug, and I was wondering if some of you could test out this extremely basic bit of code below before I go submitting it to the bug tracker. Basically, the order in which I nest the LCase() and PreserveSingleQuotes() function seems to matter. In scenario 1,

Re: Nested Function Order Bug?

2003-09-12 Thread Dave Carabetta
I know it is not clear in the docs, but my understanding of preserveSingleQuotes function is that it cannot be used outside a CFQUERY tag, or for the least, it will be inoperant outside. The role of the preserveSingleQuotes function is only to set a flag somewhere to prevent single quotes

RE: No so good news

2003-09-12 Thread Dave Carabetta
I have some faith in M$'s ability to appeal things into oblivion. The Net needs to be free to work, and that applies to IE as well. This patent does seem overly broad in that other technologies use sub-programs, why should browsers be so special? What I wonder about is the impact on CF. What

Re: No so good news

2003-09-12 Thread Dave Carabetta
Well, this particular patent only applies to ActiveX plugins to the browser, such as Flash, Excel, and QuickTime, to name a few. Since CF is simply HTML when all is said and done, this case doesn't effect CF in any way other than potentially the cfchart tag (if rendering flash

Re: Flash Remoting? wasRE: RE: No so good news

2003-09-12 Thread Dave Carabetta
It looks like the potential impact is more related to plug-in's so Flash more than CF would be impacted. I wonder whether this could make Flash Remoting of greater relevance, any thoughts or opinions on that? I don't see why FR would have *more* relevance. I mean, when you use FR, you're

RE: Looking for a ColdFusion log parser

2003-09-11 Thread Dave Carabetta
If anyone knows of any that can parse the logs out of MX that would be great. I have been looking for one but cannot find anything. I am in the process of trying to write my own but it has not been going well and I keep getting side-tracked by other work, I tried searching but everything I

Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Dave Carabetta
I'm redoing my CFSCRIPT docs and one of the things I'm adding in are all the 'extra' things you can do with it in CFMX. One such thing is a CFLOCATION using GetPageContext().forward(somefile.cfm) I believe that there was a CFINCLUDE type code as well, but I can't seem to find it.

RE: count and strip words from string.

2003-09-11 Thread Dave Carabetta
cfset firstWordBreak = find(' ',search,1) cfif firstWordBreak cfset secondWordBreak = find(' ',search,firstWordBreak) /cfif cfif isDefined(secondWordBreak) and secondWordBreak cfset thirdWordBreak = find(' ',search,secondWordBreak)

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Dave Carabetta
Be that as it may, *I* am a CF Developer. I want to push CF to my clients and want to raise awareness of the platform which I and my company use. The recent marketing campaign did not help me in that regard AT all. Do I think there are more ASP and PHP developers out there who need to be made

RE: Custom tag location in cfmx 6.1 jrun version

2003-08-28 Thread Dave Carabetta
Where is the custom tag directory for coldfusion??? It's in the WEB-INF/cfusion/CustomTags directory. So, for example, I have my MX installed into a cfusion subdirectory of my server instance, so my CT directory path is:

Re: CFHTTP with 128-bit HTTPS

2003-08-28 Thread Dave Carabetta
We have an urgent matter with a CFMX application going live today. We are receiving the Connection Failure message when attempting to connect to a 128-bit secured server with the CFHTTP tag. I did some reading that previous versions of CF didn't allow encryption greater than 56-bit but

RE: DWMX 2004 - Whats new for us?

2003-08-26 Thread Dave Carabetta
Does this mean that Macromedia's marketing department does not consider CFMX a part of Today's Technologies... Does the lack of effort to reach out to CF Coders imply that as far as Macromedia's marketing department is concerned that CFML is Yesterday's Technologies?? Or is it that there simply

Re: Sessions across subdomains...

2003-08-26 Thread Dave Carabetta
Heylo Im having issues sharing sessions across subdomains... I (obviously foolishly) thought that if I had a session at the main domain, and then went to a subdomain of that domain I would maintain session, but that doesn¹t seem to be the case (?) I'm using the same cfapplication name in both

cfadmin_sqlexecutive

2003-08-25 Thread Dave Carabetta
When I go to verify a datasource, I am constantly getting the following error after about 5 minutes of waiting, and I have to restart the CF service in order to continue: A timeout occurred while attempting to lock cfadmin_sqlexecutive. It's occurring on line 158 of the CF Admin's

RE: cfadmin_sqlexecutive

2003-08-25 Thread Dave Carabetta
to verify a bad data source within the Administrator would cause the Administrator to hang. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 12:07 PM To: CF-Talk Subject: cfadmin_sqlexecutive When I go to verify a datasource, I am constantly

RE: Debugger for Oracle storeprocedures

2003-08-14 Thread Dave Carabetta
Have you tried PL/SQL Developer from AllAround Solutions. http://www.allroundautomations.nl/products.html OraEdit Pro is really good too, and much cheaper than TOAD ($99 for single user license). It has built-in integration with all the major version control packages too, which is convenient.

RE: Mach II 1.0 released

2003-08-14 Thread Dave Carabetta
I'm puzzled too, Tony. All I've done is open the MachII_1_0_0.zip file and extract it to c:\inetpub\wwwroot. It happily installed all the files into folders under c:\inetput\wwwroot\machii. Dave Carabetta said I also had to unpack the contactmanager app, but there is already a contactmanager

Re: CFHTTP - CFMX 6.1 - IP ONLY

2003-08-14 Thread Dave Carabetta
We are updated running Solaris Machines, CFMX 6.1 (just updated) and when using CFHTTP, we get connection failures if we use a machine name (http://www.whatever.com) If we use the IP address (http://111.555.555.555) it works like a champ. Has anyone ever had this issue and fixed it? Have

Re: Redsky...Blue Trini....

2003-08-14 Thread Dave Carabetta
So...our server admin went ahead and installed Redsky on our servers. There were problems. Aug 7, 2003 Could not update your CFMX data sources. - Timeout period expired without completion of C:\CFusionMX\db\slserver52\admin\swcla.exe He apparently ran the update...then applied the MDAC

RE: Mach II 1.0 released

2003-08-14 Thread Dave Carabetta
I had the same problem as Tony Weeg - with exactly the same error message (except mine said the error was on line 14 not 11) I looked at the mappings set up in CFadminstrator and it had set up a /machii mapping to c:\inetpub\wwwroot\machii\contactmanager So I manually changed the mapping to

Re: CFMX 6.1 on JRUN Windows Performance Monitor?

2003-08-14 Thread Dave Carabetta
Everyone, We upgraded one of our servers to CFMX 6.1 yesterday -- CFMX on JRun to be able to run multiple instances. All went smoothly and it is running well. One challenge though, we rely on the Windows Performance monitor to measure the number of running requests and queued requests.

Re: OO Pet Store App

2003-08-14 Thread Dave Carabetta
I'm looking for a good book or other resource on OO programming. More specifically I'm looking for a book that describes the implementation of an OO web app. I've read books in OOP that describe the different terms/concepts of OO, but fall short in giving real life examples. Instead they talk

RE: machii performance (was Mach II 1.0 released)

2003-08-14 Thread Dave Carabetta
Has anyone noticed that the example apps are a little slow? Or is it just me? I haven't got my head around all the code yet, so I don't know if it's the framework, me, or my lack of coffee. I seem to remember, from CFUN03, that there was a flag you could set to tell the framework whether you

Re: cfchart - java.lang.NoClassDefFoundError

2003-08-14 Thread Dave Carabetta
When I run CFCHART I still get the following error. I have verified the webchartsJava2d is in the right location and that I have the graphics enviornment sent to headless as specified in the Tech Notes. I am running MX 6.1 (which kicks a** by the way) on RH 7.2. Any suggestions for what is

Re: What does this error mean?

2003-08-14 Thread Dave Carabetta
Errors reported by Java compiler: Found 1 semantic error compiling C:/CFusionMX/wwwroot/WEB-INF/cfclasses/cfPut_Owner2ecfm954140912.java: 1. public final class cfPut_Owner2ecfm954140912 extends coldfusion.runtime.CFPage{ --- *** Error: Cannot write class file

Re: HELP! Can't clear the CLIENT scope

2003-08-14 Thread Dave Carabetta
I'm having some trouble...I'm using CLIENT scoped variables because we are in a load-balanced environment. I need to delete some variables from the client scope and it's just not working...structClear(CLIENT) seems to work when I refresh the browser window to load that code, but when I go

Re: Unscoped variable lookup order in 6.1

2003-08-14 Thread Dave Carabetta
Has the variable lookup order for unscoped variables changed in 6.1? I say this because we use a custom tag that takes in a parameter of query -- this query is the result of a cfdirectory action=list call and so has the fieldname of attributes in it. As we know, variables passed in to a

Re: session/client variables 101

2003-08-14 Thread Dave Carabetta
CFLOCK is no longer necessary to prevent memory corruption, but it is still necessary to prevent race conditions in your code. In other words, if you need to ensure that only a single request at a time can access a resource (whether a variable in a shared scope, a file on the filesystem, or

Re: CFMX 6.1 Installation problems.

2003-08-11 Thread Dave Carabetta
I downloaded the new CFMX 6.1 version today, and installed it. You'll all be pleased to learn, no doubt, that there were no problems whatever. That puppy just did what it was supposed to do, followed it's instructions and installed itself with no issues. Now my apps work FAR faster than before,

Re: creatuuid() vs. newid()

2003-08-10 Thread Dave Carabetta
Hi gang, So I was just playing around with cfmx's createuuid() and mssql2k's newid(). Whats up with them being a different format? Cfmx's is char(35) and mssql2k's is char(36)... was that intended? Which rfc is macromedia using for createuuid? I'm not sure what the reason is, but to get CF's

Re: CFINVOKE on Linux

2003-08-08 Thread Dave Carabetta
I have just deployed an application on Linux. This was working without a problem on Win2k but the linux box is returning errors. I am calling the CFINVOKE tag using a component name of #component.prefix#com.scoop.application.manageApplication which translates into

Re: Separating IIS from CF

2003-08-08 Thread Dave Carabetta
there is no clear reasoning as to why a security company would tell you to take your cf server and put that on a different machine than your iis machine...it just doesn't make sensenot in the least bit. how many developers/web shops on this list, have iis and cf on the same machine? I

Re: cfhttp.responseHeader

2003-08-07 Thread Dave Carabetta
Anyone know offhand how to examine cfhttp.responseHeader to tell if the cfhttp operation has gotten a 404 error? Just cfdump #cfhttp# and you should be able to get all the info you want out of it, including the status code. Regards, Dave.

<    2   3   4   5   6   7   8   9   10   11   >