RE: distinct count

2003-03-12 Thread A.Little
You could try removing the a_items.END_TIME from your select and group by clauses to see if that does what you need, as if each of the values for a_items.END_TIME are different the query will create a row in the resultset for each value. Does that help? Alex -Original Message- From:

Re: cfgrid issues

2003-03-12 Thread Thomas Chiverton
On Tuesday 11 Mar 2003 19:43 pm, Dan O'Keefe wrote: SmartSurf? They have some pretty cool stuff. I am not overjoyed with email responses, but I have found their tags to be very functional. They might very well have, but it is impossable for me to see the costs, or an exmaple product. -- Tom

Re: Writing Query Results to a CSV using CFFILE

2003-03-12 Thread Jochem van Dieten
Barney Boisvert wrote: You meant arrayToList(), right? Yes Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

The result. ( Was RE: Still can't connect to IIs anyone know why?)

2003-03-12 Thread Michael Kear
I'm sure you're all pretty well sick of my problem, and to tell the truth, so am I. But you'll be glad to know it's finally ended. Not solved, but with Dave Watts' help, we've made a workaround and its no longer a problem for me. The problem: Jrun is just not doing what it should. When I

CFCs and Web Services

2003-03-12 Thread Daniel Napolitano
Hi I am just about to get underway with my first CFC project. I am actually trying to create a web service using CFCs. I have a few points that I hope someone can help me with... 1. I have the Macromedia CF MX book and have been using it primarily to learn about CFCs and Web Services. It goes

Problems with the site

2003-03-12 Thread Bruce Sorge
Mike/Judith, I am trying to change my informaiton on the site, and I am getting a JavaScript error, Username.Value is null or not an object. Username is there. Please fix it so that I can edit my information. Thanks Bruce ~|

RE: XPath in CFMX

2003-03-12 Thread Mueller, Ben
I don't know what parser CFMX uses, though since I know nothing about the details of parsers, if I did know the name of the parser they are using, that wouldn't help me one iota (-; The Xpath example you are using below is not quite what I am after. Your example: cfset xRes=xmlSearch(odoc,

system integration

2003-03-12 Thread Tangorre, Michael
Hello List, I am developing an in house trouble ticket application for our help desk. This application will be used daily and quite heavily. Here is my question... The application will collect trouble ticket information form users when they call the help desk in regards to one of our online

did mail get sent??!

2003-03-12 Thread Chris Edwards
Hi On a solaris 6 box, with cf 5, using sendmail. I have a loop thats emails about 500 people How would I get proof that those 500 emails were actually sent? Is there a log file I could search through? Thanks. -- Chris Edwards Web Application Developer Outer Banks Internet, Inc.

CF talking to a Session Bean

2003-03-12 Thread Michael Hoffman
I am getting mixed results of a CF page talking to a Stateless Session bean within JRun4. Currently we have a stateless session bean deployed on a developemnt server running CFMX and JRun 4. The bean deploys fine. On all the developers' machines we have CFMX and JRun4 installed and working

RE: Auto-populating form item

2003-03-12 Thread Dan G. Switzer, II
Check out qForms. It'll greatly simplify the syntax of dealing w/JS forms, as well as it'll cut your work down tremendously. http://www.pengoworks.com/qforms/ There's a number of examples online that will give you an idea of where to get start. Essentially all you need to do this is to set an

RE: CFCs and Web Services

2003-03-12 Thread Raymond Camden
1. I have the Macromedia CF MX book and have been using it primarily to learn about CFCs and Web Services. It goes through creating instances of the CFC in the application and session scopes but nothing is mentioned about client variables. I assume that if I want a separate instance of

RE: XPath in CFMX

2003-03-12 Thread Reilly, James
CFMX uses: Apache Crimson parser for server side xml parsing Xalam Parser for XSLT. Tkx, Jim -Original Message- From: Mueller, Ben [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 8:46 AM To: CF-Talk Subject: RE: XPath in CFMX I don't know what parser CFMX uses, though since

RE: XPath in CFMX

2003-03-12 Thread James Alexander
MX uses a DOM parser. SAX parsers by their very nature are event driven, and well, CF isn't an event driven language. There is however a handful of Java SAX parsers available that could potential be used, but I wouldn't recommend using one in CF. - James -Original Message- From: Joe

Re: system integration

2003-03-12 Thread Frank Mamone
It all depends on your internal ticket system. We use Siebel here and we just completed a web Help Desk to be released soon. Let me know a little more and maybe I can help. Frank Mamone - Original Message - From: Tangorre, Michael [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Character count on record count??/

2003-03-12 Thread Janine Jakim
Maybe I'm making this harder than it is (that's usual for me) It sounds easy enough-but I am stuck- let me show you my code I have this: !---Loop through the narratives for this student--- CFLOOP INDEX= X FROM =1 TO= #NarrativeGet.RecordCount# CFSET I= ToString(X) !---Set the fields for

RE: distinct count

2003-03-12 Thread Ben Doom
The SQL padwan bows to greater wisdom. Avoiding combinig aggregates and 'real' data is a rule of thumb I picked up somewhere. It may have just been to keep me from botching things when I really didn't know /anything/ about SQL. :-) -- Ben Doom Programmer General Lackey Moonbow

RE: Character count on record count??/

2003-03-12 Thread Robertson-Ravo, Neil (RX)
Why can't you just use SQL? SELECT LEN(yourfield) AS 'Length' Neil -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: 12 March 2003 14:27 To: CF-Talk Subject: RE: Character count on record count??/ Maybe I'm making this harder than it is (that's usual for me) It

RE: CFCs and Web Services

2003-03-12 Thread Daniel Napolitano
Thanks for those... Regarding client variables again then... If my aim is not to allow sessions to persist but rather use the client variables in order to scale the application. If I can't use client variables how would I then scale the web service? Potentially this web service will be used by a

RE: distinct count

2003-03-12 Thread Andy Ewings
real data and aggregates at the same time is fine - so long as you realise the the real data is grouped too. i.e. if you are using agregate functions and real data in your select statement all of the columns referenced need to be grouped - whgich makes entire sense. I have met so many developers

RE: Character count on record count??/

2003-03-12 Thread Ben Doom
: !---Here is my test output of the data- it shows correctly the length of : each narrative- : So the question is how do I get a sum or/do narrative + narrative : +narrative : to get blocks of 5000?--- : CFOUTPUT#(Len(NarrativeGet.EduLevelNarrative[I])# : /CFOUTPUT Initialize a temp variable to

RE: CFCs and Web Services

2003-03-12 Thread Raymond Camden
How are you using the web service? To perform methods on data? For example, maybe you have a service method that takes my age and tells me if I'm old enough to vote. In that case, you could simply make _one_ instance of the CFC and store it in the application scope. Then your code could do...

Re: administrator wont open

2003-03-12 Thread Dave Carabetta
Hello all. I have recently installed CFMX on Apache 2.0.44 and Apache seems to start fine. All the CF services are running, but I can't seem to open the CF admin page successfully. Instead, I am promped to open or save the cfm file and never get to see the admin page. I am missing something

RE: XPath in CFMX

2003-03-12 Thread Mueller, Ben
So, it looks like XmlSearch has not implemented searches on attribute values, as in the examples I've given below. Is that a safe assumption? If this is true, then is there any way we can get direct access to the DOM parser in MX, and write our own functions against it? -Original

working with objects

2003-03-12 Thread Robert Bailey
OK, working with the MS Word object (still). I need some help porting over this VB code to CF so that it will work. Here is the VB Code: Sub Test() Dim DocOpen As Word.Document Set DocOpen = Documents.Open(c:\blah.doc) Set temp = Dialogs(wdDialogToolsWordCount) temp.Execute

CFC's - Where to put them?

2003-03-12 Thread Ian Skinner
I have just started a real project using CFC's, and I have had some difficulties with where to put them. So I'm turning to the knowledgeable group here to full in the gaps in the documentation. The best home for a CFC seems to be the Custom Tag directory, when I've put them there on my

RE: did mail get sent??!

2003-03-12 Thread Ryan Emerle
/var/log/mail.log usually contains sendmail logs. -Original Message- From: Chris Edwards [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 9:20 AM To: CF-Talk Subject: did mail get sent??! Hi On a solaris 6 box, with cf 5, using sendmail. I have a loop thats emails about

RE: working with objects

2003-03-12 Thread A.Little
I came across a similar problem and ended up having to change my code so that it looks like; cfscript objDoc = objWord.Documents; newDoc = objDoc.open(c:\mydocument.doc); myRevisions = newDoc.Revisions; MyRevCount = myRevisions.count;

RE: CFC's - Where to put them?

2003-03-12 Thread Raymond Camden
You can place them within a folder reachable by a mapping. I'd suggest using mappings anyway, since it will also help you call your custom tags on a shared server. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Re: XPath in CFMX

2003-03-12 Thread Kwang Suh
If you're not using the MSXML parser in IE6, then the xpath stuff you're writing may not be w3c standard. MS came out with an implementation of xpath (and xsl in general) that followed the beta standards in IE5/5.5, which is different than the released standard. I can check at work once I'm

Re: CFC's - Where to put them?

2003-03-12 Thread Thomas Chiverton
On Wednesday 12 Mar 2003 15:07 pm, Ian Skinner wrote: I have just started a real project using CFC's, and I have had some difficulties with where to put them. So I'm turning to the knowledgeable group here to full in the gaps in the documentation. I find creating a structure of directory,

RE: working with objects

2003-03-12 Thread Robert Bailey
The document is opening properly, my problem lies in when I do a word count, it counts the punctuation. So after reading the MS website, it tells me how to only count the words and ignore the punctuation, in VB, which is: Set temp = Dialogs(wdDialogToolsWordCount) temp.Execute numWords =

Linking from Intranet to Active Web site causes error

2003-03-12 Thread Eric Davis
We have a several websites running on our ColdFusion 5 server. Our primary one has a Virtual Directory that is a staff-only intranet. While the primary site allows Anonymous access, the Virtual Directory limits access to staff accounts, using Windows NT Challenge/Response authentication (from an

CFRETURN Problem

2003-03-12 Thread Frank Mamone
Just experimenting with CFC's. I'm using CFRETURN 0/ or CFRETURN True but getting this error on calling page: The value returned from function addLog() is not of type struct. Thanks, Frank ~| Archives:

RE: CFCs and Web Services

2003-03-12 Thread Daniel Napolitano
OK... There are two parts to the code I am writing. 1. The Web Service 2. The Client I am creating a web service to handle end user interactions to query from and submit data to a datasource. Each user would have to log in. According to the level of logged in user he/she will be able to access

CFRETURN Problem - SOlved

2003-03-12 Thread Frank Mamone
I apologize for wasting bandwidth:) I was copying and pasting samples and didn't know about the returntype attribute. -Frank ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Linking from Intranet to Active Web site causes error

2003-03-12 Thread Robertson-Ravo, Neil (RX)
Does the search post the same page/domina/host header? -Original Message- From: Eric Davis [mailto:[EMAIL PROTECTED] Sent: 12 March 2003 15:42 To: CF-Talk Subject: Linking from Intranet to Active Web site causes error We have a several websites running on our ColdFusion 5 server. Our

RE: CFRETURN Problem

2003-03-12 Thread Douglas.Knudsen
what does your CFFUNCTION statement look like? You have to return a var of the type speciifed in returntype. Doug -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 10:43 AM To: CF-Talk Subject: CFRETURN Problem Just experimenting with

RE: working with objects

2003-03-12 Thread Robert Bailey
that is suppose to be not sure how to get that to work, lol Thanks! Robert Bailey Famous for nothing -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 10:25 AM To: CF-Talk Subject: RE: working with objects The document is opening

RE: CFRETURN Problem

2003-03-12 Thread Raymond Camden
If your returnType is struct, you must return a struct. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team Macromedia Email: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM

Using layers...div tags

2003-03-12 Thread FlashGuy
Hi, I would like to duplicate one part from this website but I'm not sure how to go about it. http://www.mapleleafs.com/home.ml I want to create something similar to the SCORE, LEAFS TV and LEAFS INSIDER by clicking the tabs the content changes. Anyone have any code or would know how to do

RE: Character count on record count??/

2003-03-12 Thread Janine Jakim
Well the page part was easy enough to do. It's the setting of the variable that I can't seem to get. I can set and send the variable to a regular html page fine. It's the setting in activePDF, which pulls the only the last #NarrativeGet.EduLeveNarrative[i]# (looks like each reiteration of the loop

RE: CF talking to a Session Bean

2003-03-12 Thread webguy
use cftry and getException to get a better error message WG -Original Message- From: Michael Hoffman [mailto:[EMAIL PROTECTED] Sent: 12 March 2003 14:24 To: CF-Talk Subject: CF talking to a Session Bean I am getting mixed results of a CF page talking to a Stateless Session bean within

RE: Using layers...div tags

2003-03-12 Thread Tangorre, Michael
You can use layers and CSS. Look into the visibility property in the DOM. That should get you started. Mike -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 11:04 AM To: CF-Talk Subject: Using layers...div tags Hi, I would like to duplicate

WYSIWYG that will work in Mac browsers

2003-03-12 Thread Drew Harris
Hi there, I REALLY need a WYSIWYG editor that will run as a CF custom tag on CF5, and CFMX on both Windows server and UNIX server and run in a clients mac browser! Any ideas? Thanks, Drew Harris ~| Archives:

Re: RE: Using layers...div tags

2003-03-12 Thread John Wilker
Also look at the display property. It doesn't leave a huge empty block in place. But it will move things if they're in it's way. display=block|none ---Original Message--- From: Tangorre, Michael [EMAIL PROTECTED] Sent: 03/12/03 08:14 AM To: CF-Talk [EMAIL PROTECTED] Subject: RE: Using

RE: Using layers...div tags

2003-03-12 Thread Ben Doom
They are using CSS to set the absolute position of three different divs to be the same. They are also using CSS to set the two back ones as invisible. Then they are using JavaScript to change the active div by making the current one hidden and the new one visible. -- Ben Doom Programmer

RE: Character count on record count??/

2003-03-12 Thread Ben Doom
Why not just keep a running total inside the loop, as I thought I was demonstrating? Having never worked with ActivPDF, maybe I'm missing something, but why wouldn't you simply keep track of how many characters you've already added, rather than trying to re-calculate it each time? -- Ben Doom

Re: Linking from Intranet to Active Web site causes error

2003-03-12 Thread Jochem van Dieten
Eric Davis wrote: We've been having a problem where users first connect to the intranet after logging onto the network, and then go to the main site to perform a search. When they do the search on the primary site (after linking FROM the Intranet), they get a ColdFusion error that

input tag

2003-03-12 Thread FlashGuy
Hi again, I have a form with two input tags. The Login button executes the file assigned to the form tag. How can I have the Logout button run a template file rather then the form? form action=index.cfm method=post input type=submit value=Login style=background:6C993F class=loginbutton

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
At 07:45 AM 3/12/2003 -0600, you wrote: I don't know what parser CFMX uses, though since I know nothing about the details of parsers, if I did know the name of the parser they are using, that wouldn't help me one iota (-; The Xpath example you are using below is not quite what I am after.

does anyone have a copy of the cf_reuseform custom tag?

2003-03-12 Thread ksuh
If anyone has it, can they email it to me? Fusebox.org doesn't have it, the MM Exchange links back to fusebox.org and I can't find it anywhere using google and *gasp* altavista. TIA ~| Archives:

RE: XPath in CFMX

2003-03-12 Thread Mueller, Ben
Yes, that is exactly what I want. It would appear (at least from Microsoft's website) that this is legal Xpath syntax. A previous poster suggested that this may have been an extension MS made that falls outside the w3c spec. At this point, I'd be happy with confirmation that a call like

Re: input tag

2003-03-12 Thread Scott Brady
-- Original Message -- From: FlashGuy [EMAIL PROTECTED] I have a form with two input tags. The Login button executes the file assigned to the form tag. How can I have the Logout button run a template file rather then the form? There are a 2 options off

RE: Scripting Internet Explorer

2003-03-12 Thread Aidan Whitehall
This might get you started... http://www.tucows.com/preview/193807.html Thanks Michael. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental Ltd +44 (0)1695 51775 ~| Archives:

RE: CFMX Linux JDBCPool Timeout

2003-03-12 Thread Paul Hassinger
It appears that while the datasource is working, netstat returns an ESTABLISHED state for a connection both to and from the mysql database to cold fusion (and vice-versa). Upon the datasource failing. I am returned only with a connection from mysql to CF in a state of TIME_WAIT for a little bit

RE: input tag

2003-03-12 Thread Ben Doom
Put an input of button type outside your form which calls a javascript to change the url. Something like: script language=javascript function gotologoutpage() { window.location = logout.cfm; } /script input type=button value=Logout style=background:6C993F class=loginbutton

RE: does anyone have a copy of the cf_reuseform custom tag?

2003-03-12 Thread Mike Brunt
I have a copy I'll mail it to you directly. Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper Web Application Specialists -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12,

cflogin - need a method to retrieve the password

2003-03-12 Thread BOUDOT, Christian
Hi Folks, I have just discovered the cflogin tag and it's method getAuthUser() which returns the username. Does a method exists which returns the password? cheers Christian __ Christian BOUDOT Intrasoft International 89-91 route de Thionville L-2611

RE: cflogin - need a method to retrieve the password

2003-03-12 Thread Raymond Camden
No. But you can store it in the session scope when they login. The cflogin scope has some issues - see my blog for a recent entry on it. Before you ask - you can't get the roles either - but you can write your own function for that or store it in the session scope as well. For both - do not

Re: XPath in CFMX

2003-03-12 Thread Jochem van Dieten
Mueller, Ben wrote: Yes, that is exactly what I want. It would appear (at least from Microsoft's website) that this is legal Xpath syntax. A previous poster suggested that this may have been an extension MS made that falls outside the w3c spec. At this point, I'd be happy with confirmation

RE: cflogin - need a method to retrieve the password

2003-03-12 Thread Robertson-Ravo, Neil (RX)
erm, founnd it :-) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 12 March 2003 17:23 To: CF-Talk Subject: RE: cflogin - need a method to retrieve the password No. But you can store it in the session scope when they login. The cflogin scope has some issues - see

RE: Character count on record count??/

2003-03-12 Thread Janine Jakim
Running a cfoutput TotalLen/Narrative[I] looks fine on a regular display. I think it's the behavior of activepdf that is the problem. Each [i] must be identified/hardcoded on the pdf ie: Narrative1, narrative2, Narrative3, Narrative4 So on my action page up to 5000 characters may make Narrative1

Re: input tag

2003-03-12 Thread Dina Hess
Flash Guy, If you just want links to a login form and a logout process, you don't need the FORM tag. Just use anchor tags to create links to the appropriate templates. You could display just the logon link until the user logs in, then after they've logged in, display just the logout link: cfif

RE: XPath in CFMX

2003-03-12 Thread Mueller, Ben
That's sort of what I was afraid of. If it's legal XPath syntax, then why doesn't the XmlSearch function support it? Is it a weakness in MX, or is this a deliberate omission? And does anybody know if MM has plans to support this in the future? -Original Message- From: Jochem van

Re: CFMX Linux JDBCPool Timeout

2003-03-12 Thread Jochem van Dieten
Paul Hassinger wrote: It appears that while the datasource is working, netstat returns an ESTABLISHED state for a connection both to and from the mysql database to cold fusion (and vice-versa). Upon the datasource failing. I am returned only with a connection from mysql to CF in a state of

RE: Character count on record count??/

2003-03-12 Thread Ben Doom
: Running a cfoutput TotalLen/Narrative[I] looks fine on a regular display. : I think it's the behavior of activepdf that is the problem. : Each [i] must be identified/hardcoded on the pdf ie: Narrative1, : narrative2, : Narrative3, Narrative4 : So on my action page up to 5000 characters may make

RE: Writing Query Results to a CSV using CFFILE

2003-03-12 Thread Dan O'Keefe
What creating a DTS package which accepts a few parameters from CF. The DTS would run the query, and export it also, like lickety split too. Dan -Original Message- From: Wendy Copley [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 6:25 PM To: CF-Talk Subject: Re: Writing Query

RE: CFMX Linux JDBCPool Timeout

2003-03-12 Thread Paul Hassinger
Thanks much... I think that is in order. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 11:31 AM To: CF-Talk Subject: Re: CFMX Linux JDBCPool Timeout Paul Hassinger wrote: It appears that while the datasource is working, netstat

RE: Writing Query Results to a CSV using CFFILE

2003-03-12 Thread Joshua Miller
I'll second the notion for a DTS package. I've been using them extensively lately to build downloadable subsets of data from SQL into an Access DB and they're FAST! Although I didn't have much luck running a DTS package from CF - I ended up writing an ASP script that handles the DTS package and I

RE: CFC's - Where to put them?

2003-03-12 Thread Ian Skinner
You're referring to a Cold Fusion Server Mapping? That can maybe doable. Again, it's something that would have to be done by my host provider, but only once. Much better then using the Custom Tag directory where I would go to them every time I made a change. Ian -Original Message-

RE: CFC's - Where to put them?

2003-03-12 Thread Ian Skinner
I'm not sure I understand what you mean by a Structure of directory? Can you elaborate on what that means? Ian Skinner -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 7:32 AM To: CF-Talk Subject: Re: CFC's - Where to put them? On

CFLOGIN - newbie question

2003-03-12 Thread Richmond, Pamela
I'm experienced w/CF but haven't used CFLOGIN. Does it work with server OS security? I usually see secured sites with CF-based security (i.e, the user and pass are in a db). I'd appreciate some background on it, or a link to more info. Pam

Re: CFC's - Where to put them?

2003-03-12 Thread Gyrus
This might be useful: http://www.benorama.com/coldfusion/patterns/part8.htm It's part of a whole design pattern, but a useful perspective in itself. Gyrus [EMAIL PROTECTED] work: http://tengai.co.uk play: http://norlonto.net PGP key available

RE: Using layers...div tags

2003-03-12 Thread Richmond, Pamela
RE: changing contents within part of a page using tabs You can also do this with Flash. Pam ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFLOGIN - newbie question

2003-03-12 Thread Frank Mamone
Yes you can do it. http://www.macromedia.com/devnet/mx/coldfusion/articles/ntdomain.html - Original Message - From: Richmond, Pamela [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 1:30 PM Subject: CFLOGIN - newbie question I'm experienced w/CF but

Re: CFLOGIN - newbie question

2003-03-12 Thread Jochem van Dieten
Richmond, Pamela wrote: I'm experienced w/CF but haven't used CFLOGIN. Does it work with server OS security? Generally not. You can use OS accounts to authenticate users, but not to authorize users using OS ACLs. Jochem ~|

RE: Searching

2003-03-12 Thread Richmond, Pamela
Verity comes with CF and is a great choice for document searches (e.g., Word, PDF, Excel), as well as HTML searches. Verity K2 Spider (comes w/CF5+) will crawl your site and index dynamic pages. It's command line-driven. I haven't figured out the details yet, but it seems powerful. You can

RE: distinct count

2003-03-12 Thread Owens, Howard
Ah, this answer sounded so promising. Alas, it didn't do the trick. H. -Original Message- From: A.Little [SMTP:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 1:28 AM To: CF-Talk Subject: RE: distinct count You could try removing the a_items.END_TIME from your select

[B to an incompatible type

2003-03-12 Thread BloodPython 2003 \(bol\)
Hi. I'm having a very annoying problem with CFMX, witch i as not having with cf5. I have a query that i use to generate a report page, with all sales by month. So i have, for exemple, on 2002-12 (december 2002) X sales of product Y. I then use a query of query to sort and filter the data i

Test

2003-03-12 Thread Bruce Sorge
Testing to ensure that these are going to the correct email address now. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

changing ColdFusion Log On As

2003-03-12 Thread Matthew Friedman
Currently I am running CF5 on a WIN2K box and it is log on as LocalSystem. The Issue that I have is that I need to move some large files over my network to other computers. I have the dreivs mounter, but since CF is log on as localsystem, it can not see the other drives. I was told to change

RE: CFC's - Where to put them?

2003-03-12 Thread Raymond Camden
Yep, I meant a CF Server mapping. This is handy for CFCs, CTs, and includes. If I know there is _any_ chance I'll be deploying to a shared host, I will always use cfmodule with a mapping instead of cf_. === Raymond Camden,

RE: distinct count

2003-03-12 Thread Owens, Howard
I take that back ... DOH! I was loading the revised query to the wrong directory. This change did work Thanks, Mr. Alex Little. H. -Original Message- From: Owens, Howard [SMTP:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 10:51 AM To: CF-Talk Subject: RE: distinct

RE: Writing Query Results to a CSV using CFFILE

2003-03-12 Thread Dan G. Switzer, II
Joshua, Here's an article I wrote which details executing a DTS script from within ColdFusion: http://www.pengoworks.com/index.cfm?action=articles:spExecuteDTS You'll have to create a couple of stored procs, but it's just a cut-n-paste deal. -Dan -Original Message- From: Joshua

Flash Remoting w/CF

2003-03-12 Thread Frank Mamone
We've been experimenting with Flash Remoting and MX and found that the performance is a little slow. We are using a CFC to get a recordset of about 700 and populating a combobox with it. Is there any known performance issues with Flash Remoting and where can I read about them. Thanks, Frank

RE: working with objects

2003-03-12 Thread Robert Bailey
OK, I am starting to think that it is MX that is not wanting to do this right, as I have even looked at some of the tutorials on how to print or create a word doc and the thing still crashes. I tested on 2 seperate MX servers, even changing the service to boot up using an admin account, and I am

RE: Flash Remoting w/CF

2003-03-12 Thread Douglas.Knudsen
I am glad to hear some data on this. I've been wondering how much data one of these RIA thingys can tolerate. I haven't messed with this yet, but I did read some code that 'paginates' the recodrset somehow so that the Flash thingy only holds n rows from an m row query at a time. I saw this

Anyone with CF 5 server?

2003-03-12 Thread Robert Bailey
OK, I am starting to think that it is MX that is not handling objects right, as I have even looked at some of the tutorials on how to print or create a word doc and the thing still crashes. I tested on 2 separate MX servers, even changing the service to boot up using an admin account, and I am

Re: force a download - .txt file

2003-03-12 Thread E. Keith Dodd
Trying to force a download using cfcontent and input from last week thread. Below is full download page's code. 1. Works properly, forcing download with a txt, a pdf, .xls, .doc 2. If item is .jpg, get in IE6 An error occurred while attempting to open the file. Windows NT error number 5 occurred.

administrator wont open

2003-03-12 Thread Juan Nava
I have reinstalled both apache and cfmx server. i go ahead and configure apache for coldfusion. The mod_jrun20 file is appears where its supposed to, and the httpd.conf file shows the appended code that loads the module (mod_jrun20). As soon as i restart apache, it fails and sais mod_jrun20

RE: XPath in CFMX

2003-03-12 Thread Alexander Sherwood
At 11:19 AM 3/12/2003 -0600, you wrote: That's sort of what I was afraid of. If it's legal XPath syntax, then why doesn't the XmlSearch function support it? Is it a weakness in MX, or is this a deliberate omission? And does anybody know if MM has plans to support this in the future? Well, i

RE: cfapplication: really basic question

2003-03-12 Thread Owens, Howard
CFApplication doesn't have an end tag. Just put it at the top of your Application.cfm page, setting the attributes you want/need to set. Then on your Application.cfm page, set your global variables. You should scope your variables. I use the request scope ... cfset request.myDSN=datasource If

RE: XPath in CFMX

2003-03-12 Thread Mueller, Ben
The problem is not that MACR returns an array rather than a string in this particular XPath case. The problem is that, in the case where I'm trying to get the value of an attribute, it returns an array of length one that appears to have nothing in it. If you run this code in MX: cfxml

sql datasource

2003-03-12 Thread Robert Shaw
I'm tryng to setup a datasource in MX, I'd like to use the NT username and pwd and it is failing, I reviewed this article: http://www.macromedia.com/support/coldfusion/ts/documents/tn18245.htm. Any hints on why the username and password wouldn't work? The datasource connects successfully in

Apache 2.0.44 and CFMX Server HELP!!

2003-03-12 Thread Juan Nava
Hello all. Has anyone successfully installed CFMX on Apache 2.0.44?? Apache wont start after configuring it for CFMX. It says the mod_jrun20 file is not compatible with this version of Apache. Any suggestions??? Thank you very much in advance. --Juan

RE: sql datasource

2003-03-12 Thread Tony Weeg
have you tried using the odbc socket choice to make the dsn connection right to the system dsn already set up correctly? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting

RE: Apache 2.0.44 and CFMX Server HELP!!

2003-03-12 Thread Lincoln Milner
Do you have Updater 2 installed? You need that to work with the newer versions (i.e., after 2.0.40) of Apache... -lincoln -Original Message- From: Juan Nava [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 3:11 PM To: CF-Talk Subject: Apache 2.0.44 and CFMX Server HELP!!

RE: Flash Remoting w/CF

2003-03-12 Thread Mark A. Kruger - CFG
The variable is pagesize and it's passed from the flash movie to the called cfc or CF page. Here's a doc snippet: Returning records in increments to Flash ColdFusion lets you return record set results to Flash in increments. For example, if a query returns 20 records, you can set the

RE: CFC's - Where to put them?

2003-03-12 Thread Ian Skinner
Would you mind giving a simple example of how you might code this? Ian -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 11:00 AM To: CF-Talk Subject: RE: CFC's - Where to put them? Yep, I meant a CF Server mapping. This is handy for

  1   2   3   >