Re: web services advice

2005-07-15 Thread Simon Smith
Hi Simon, Have a search on the macromedia site. try http://www.macromedia.com/devnet/topics/web_services.html Also did you know that all the documentation for coldfusion is at http://livedocs.macromedia.com/coldfusion/7/index.html ? Once you can create a CFC (Coldfusion Component) you can

Re: Component Footprint

2005-07-15 Thread Thomas Chiverton
On Thursday 14 July 2005 22:00, Ryan Emerle wrote: This is just a matter of curiousity more than anything. Though it would be helpful in performance tuning to some degree. We use CFMX in Weblogic with JRockit, and you can certainly attach a management console to the JVM and see heap usage, GC

Catching errors and emailing

2005-07-15 Thread Saturday (Stuart Kidd)
Hi guys, Just wondering if anyone knows of a way of emailing any errors which are caught? So that way if there is an error I'll get to find out what it is as most users probably wouldn't bother emailing one if found. Thanks, Saturday

Event gateways and real player

2005-07-15 Thread Tom King
Dear All, This is my first post to this list! I'm looking to possibly set a way to divert CF page requests made from within real player (enterprise or likewise) to a site. At the moment, I can browse the pages from within real player, but want to customise the pages specifically: Is this

Re: Catching errors and emailing

2005-07-15 Thread Raymond Camden
Use the cferror tag to specify an error handling page (or use onError in you are in cfmx7), and email the details. On 7/15/05, Saturday (Stuart Kidd) [EMAIL PROTECTED] wrote: Hi guys, Just wondering if anyone knows of a way of emailing any errors which are caught? So that way if there is an

Re: HomeSite+ and Perl Files

2005-07-15 Thread Michael Greenberg
Is it possibly choking on Unix line breaks? Not sure...just a thought :) Michael -Original Message- From: Jim McAtee [EMAIL PROTECTED] Sent: Jul 15, 2005 12:17 AM To: CF-Talk cf-talk@houseoffusion.com Subject: HomeSite+ and Perl Files When I attempt to open a Perl file (with .pl or .pm

CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Che Vilnonis
Does anyone know if RDS on CF5 runs on a pre-defined port? Thanks. Che Vilnonis Application Developer Advertising Systems Incorporated 8470C Remington Avenue Pennsauken, NJ 08110 p: 856.488.2211 f: 856.488.1990 www.asitv.com ~|

Removing pound signs from a string

2005-07-15 Thread Michael Dinowitz
In truth all you have to do is double the pound signs so Replace(string, '##', '', 'all') should do it. It will replace every single pound within your text with a double pound, ignoring everything else. Well as a last resort I thought I could put the offending code in a CFTRY and just lose

Re: CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Mike Chabot
Che, The port would typically be 80 or 443. It is whatever port the Web server associated with ColdFusion is set up to listen to requests on. As a reminder, port 80 is unsecured. If someone sniffs your RDS password, they can potentially take control of your server. Enjoy, Mike Chabot On

Catching errors and emailing

2005-07-15 Thread Michael Dinowitz
cfmail to= bcc=[EMAIL PROTECTED] from= subject=Error: #Error.Type# type=HTML CFDUMP var=#error# label=error CFDUMP var=#form# label=form CFDUMP var=#url# label=url CFDUMP var=#CGI# label=CGI CFIF IsDefined('session')CFDUMP var=#session# label=session/CFIF

RE: CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Che Vilnonis
thanks... that is what i thought. -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Friday, July 15, 2005 8:56 AM To: CF-Talk Subject: Re: CF5 RDS, does it run on a pre-defined port? Che, The port would typically be 80 or 443. It is whatever port the Web server

Catching errors and emailing

2005-07-15 Thread Michael Dinowitz
Sorry, forgot to mention that I use this code in a sitewide error handling template so every error on the site gets emailed to me, even ones in a CFTRY/CFCATCH. On a related note, don't use CFTRY/CFCATCH to handle known errors. Handle the error directly! cfmail to= from= subject=Error:

Re: Catching errors and emailing

2005-07-15 Thread Raymond Camden
Heh, so Stuart, just in case you are a newbie, don't forget to remove the BCC below. If you don't, your errors will also email to Michael. (Tsk tsk, Mikey. ;) On 7/15/05, Michael Dinowitz [EMAIL PROTECTED] wrote: cfmail to= bcc=[EMAIL PROTECTED] from= subject=Error: #Error.Type# type=HTML

Event gateways and real player

2005-07-15 Thread Michael Dinowitz
If the internal browser has a http_user_agent that identifies it as a real player, then a simple CFIF on the target CF page will allow you to handle the real player content from other content. Or you can just have a different real player page. Is there a different user agent and can you post

Re: Catching errors and emailing

2005-07-15 Thread Michael Dinowitz
I caught and edited that after the fact. I've been up all night on a CF 7 speed increase project. Going fantastically (Love persister CFCs for query caching) but while site speed saves, posting speed kills. :) Heh, so Stuart, just in case you are a newbie, don't forget to remove the BCC below.

RE: Removing pound signs from a string

2005-07-15 Thread Dan G. Switzer, II
Michael, In truth all you have to do is double the pound signs so Replace(string, '##', '', 'all') should do it. It will replace every single pound within your text with a double pound, ignoring everything else. I was under the impression that he had other code that might have valid CFML, so

RE: CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Che Vilnonis
OK, Mike. One more silly question. Does RDS have SSL built in or does it have to use a web server's SSL certificate? -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Friday, July 15, 2005 8:56 AM To: CF-Talk Subject: Re: CF5 RDS, does it run on a pre-defined port?

CFSELECT (I hate CFFORM)

2005-07-15 Thread Stan Winchester
Are there any JavaScript errors? If so, try using FireFox's JS debugger. I have found CFFORM's JS sometimes will conflict with other JS that might be on the page. You could also just use a select tag and write your own JS to validate or use qForms as previously suggested. Stan Winchester

Re: CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Mike Chabot
Che, RDS would use the SSL cert installed on the Web server. Most people I have seen use RDS over port 80, because that is the default. I encourage people to turn off RDS on production servers because of the security risks. -Mike Chabot On 7/15/05, Che Vilnonis [EMAIL PROTECTED] wrote: OK,

RE: CF5 RDS, does it run on a pre-defined port?

2005-07-15 Thread Che Vilnonis
Once again, thanks for confirming what I thought to be true. -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Friday, July 15, 2005 9:27 AM To: CF-Talk Subject: Re: CF5 RDS, does it run on a pre-defined port? Che, RDS would use the SSL cert installed on the Web

RE: Removing pound signs from a string

2005-07-15 Thread Michael Dinowitz
I was under the impression that he was only looking to escape the pound sign in a SKU string. If the string is more than that, then you are correct and much more care is needed. I was under the impression that he had other code that might have valid CFML, so doing a blanketed replace would

Flash CFFORM and visible attributes.

2005-07-15 Thread Stephen Moretti
I'm having problems with the visible attribute on the cfform tags. visible=no on : cfgrid hides the grid, but leaves a blank spot the size of the grid. cfinput, hides the control, but leaves the label. A labelless cfinput leaves a blank spot. cfformgroup does nothing at all. This

RE: Query error

2005-07-15 Thread Merrill, Jason
Dave, thanks for your response. See my responses below: My guess is that one of the following is true: 1. You don't have a datasource called coursesDB. I do. I've been accessing it and making modifications to it. It seems only to mess up when I try and do this UPDATE type query. 2. The user

Re: Catching errors and emailing

2005-07-15 Thread Saturday (Stuart Kidd)
Thanks for that. Can I ask why it's not a good idea to use CFTRY/CFCATCH? Whereabouts do i put the CFMAIL script below? It comes up with an error saying that TYPE is undefined in ERROR? Thanks, Saturday On 15 Jul 2005, at 14:06, Michael Dinowitz wrote: Sorry, forgot to mention that I

Re: Catching errors and emailing

2005-07-15 Thread Michael Dinowitz
Can I ask why it's not a good idea to use CFTRY/CFCATCH? CFTRY/CFCATCH is to handle unexpected errors. If you expect the error, you should write your code to handle the error directly rather than expecting it to be handled in a general manner. Of course, this is my opinion and others will

Re: Catching errors and emailing

2005-07-15 Thread Douglas Knudsen
You can also setup a custom site wide error template to do this. I set one up using this image http://www.cubicleman.com/images/george_error.jpg funny, eh? in the template, after displaying the image and a message to the user, I have this cftry cfobject action=create type=java

RE: Delivery barcode

2005-07-15 Thread James Smith
As someone already mentioned, if you are just trying to develop standard vertical line barcodes, then fusionzone is the way to go. Actually if you are just doing 3of9 or UPC type barcodes it is simple to do with a truetype font and a page or so of code. If this is what you are after I have

Re: Catching errors and emailing

2005-07-15 Thread Raymond Camden
It is meant to be use in an error template. Check out the doc for cferror, which lets you specify a page to run when an error occurs. On 7/15/05, Saturday (Stuart Kidd) [EMAIL PROTECTED] wrote: Thanks for that. Can I ask why it's not a good idea to use CFTRY/CFCATCH? Whereabouts do i put

RE: Delivery barcode

2005-07-15 Thread James Smith
Actually if you are just doing 3of9 or UPC type barcodes it is simple to do with a truetype font and a page or so of code. If this is what you are after I have already done the work for our internal system here and you are welcome to it. If you want 2D barcodes, good luck :) Here is

Why does only one datasource throw an error?

2005-07-15 Thread Jeff Small
I have a SQL server here for development, and all the other datasources that the CF Admin are pointing to that reside on that server are coming back as good (Verify all Connections...ok) but one is throwing an error. I deleted it, and tried to reinstall the datasource, but I got the following

Re: Query error

2005-07-15 Thread Douglas Knudsen
can you post a more informative error message? Also, test it without the queryparams. Also, maybe just build the SQL in a string and email it to yourself to see if the SQL and inputed arguments are actually coming in correct from Flash. Aside fro this I'll not that you should VAR scope your

Re: Catching errors and emailing

2005-07-15 Thread Saturday (Stuart Kidd)
Thanks everyone for your help and I like your photo Doug! I got it working now! :) I had a few problems because first of all i wasn't using the line below, instead i had the cftry/cfcatch on my main page and it wasn't cfmailing: cferror type=exception template=request_err.cfm But then i

RE: Catching errors and emailing

2005-07-15 Thread Tangorre, Michael
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] CFTRY/CFCATCH is very efficient and has close to no overhead on a standard CF page. It's an issue of approach, not execution speed. The overhead comes into play when an an exception is thrown and the cfcatch portio executes... especially if

Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Andy Mcshane
Hi all. I have started to notice some very strange activity of late with a new site that I am writing. Here are the details, I have a number of form fields, 4 of which are date fields. The date fields can all be blank. All of my form fields are put into a new staructure and this structure is

Re: HomeSite+ and Perl Files

2005-07-15 Thread Ben Doom
IIRC, you also have t register the file type with Windows. --Ben Jim McAtee wrote: When I attempt to open a Perl file (with .pl or .pm extension) in HomeSite+ I first get a dialog box stating that the file isn't a recognized text document. After I tell HomeSite to open it any way, the

RE: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Tangorre, Michael
From: Andy Mcshane [mailto:[EMAIL PROTECTED] passed to procedure. Anybody have any ideas? Post the code. In particular, the cfprocparam code within the CFC. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

Re: Why does only one datasource throw an error?

2005-07-15 Thread Jeff Small
Okay, here's what I've done so far. I have a datasource called JMH. It's the ONLY one that's not working. SO I clicked on JMH, and pointed it to another database. I got the following error: Connection verification failed for data source: JMH []java.sql.SQLException: SQLException while

Access throwing error missing operator (I hate Access!)

2005-07-15 Thread Stan Winchester
I trying to get an application to work with MS Access and it threw the following error: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 't.frn_UserId = u.UserId INNER JOIN tbl_forums f ON t.frn_ForumId = f.ForumId'. Native Error

Re: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Andy Mcshane
OK, the code below is used to call the function invoke object=application.playerreport methodcall=InsertPageOne( argumentcollection=DataFields ) returnVariable=InsertPageOne / All of my form fields are within the structure 'DataFields' and I know that they are all there when it is passed to

RE: Catching errors and emailing

2005-07-15 Thread Dave Watts
The overhead comes into play when an an exception is thrown and the cfcatch portio executes... especially if you have multiple cfcatch tags that are not in the best order, e.g. the most specific being first then so on down to the most general. At that point, though, overhead is probably

RE: Why does only one datasource throw an error?

2005-07-15 Thread Dave Watts
Okay, here's what I've done so far. I have a datasource called JMH. It's the ONLY one that's not working. SO I clicked on JMH, and pointed it to another database. I got the following error: Connection verification failed for data source: JMH []java.sql.SQLException: SQLException while

RE: Delivery barcode

2005-07-15 Thread Connie DeCinko
One point not yet addressed, is how you get the number from USPS. It appears they don't easily give you access to getting that number assigned to your package electronically. Constanty Connie DeCinko III Web Architect, Webmaster, Web Developer Lone Jet Enterprises Glendale, Arizona

RE: Query error

2005-07-15 Thread Dave Watts
where 9 should be an integer, unless Remoting still sends it as a string. If so, it seems there is no way to be sure it's being sent as a number from Flash, is there a way in CF to convert it from a string type (if that's really how its being sent) to type numeric? Or at least find

RE: Catching errors and emailing

2005-07-15 Thread Tangorre, Michael
From: Dave Watts [mailto:[EMAIL PROTECTED] At that point, though, overhead is probably not your primary concern (or even an important concern at all). After all, exceptions are, well, exceptional, by their very nature, so you shouldn't have to deal with too many of them at once. I was

RE: Query error

2005-07-15 Thread Merrill, Jason
can you post a more informative error message? OK - I put in some pseudo variables instead of using the ones from Flash Remoting and got this when I call the CFC from a CFM: -- Error Executing Database

RE: Query error

2005-07-15 Thread Merrill, Jason
Yeah, thanks - I just caught that and fixed it to specify numeric - thanks, but the error remains - I just posted a more detailed error in this thread - might be posted before or after this one... Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message-

RE: Query error

2005-07-15 Thread Merrill, Jason
can you post a more informative error message? OK - I put in some pseudo variables instead of using the ones from Flash Remoting and got this when I call the CFC from a CFM: -- Error Executing Database

RE: Query error

2005-07-15 Thread Tangorre, Michael
From: Merrill, Jason [mailto:[EMAIL PROTECTED] Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] The table 'Lessons' is already opened exclusively by another user, or it is already open through the user interface

Re: Query error

2005-07-15 Thread Clint Tredway
If you have that table open in design view or open at all in Access (I think), you will get this error. On 7/15/05, Merrill, Jason [EMAIL PROTECTED] wrote: can you post a more informative error message? OK - I put in some pseudo variables instead of using the ones from Flash Remoting and got

Re: Why does only one datasource throw an error?

2005-07-15 Thread Jeff Small
My guess, based on your error message, is that you're using different values for either the database server or the port. With SQL Server 2000, you can run multiple instances of SQL Server on the same machine. Each one will listen on a different port, and have a different name, although the

RE: Query error

2005-07-15 Thread Merrill, Jason
Do you have the Access DB open on your workstation? Oops! That seemed to be it. I feel like an idiot. I was doing updates previously with the database without a problem when the file was open in access. It only popped up now when I did the UPDATE for some reason. Thanks Michael, Dave, Doug,

Access throwing error missing operator (I hate Access!)

2005-07-15 Thread Stan Winchester
I found the problem. I thought I would let Access create the joins for me and so I opened the Create query in Design view wizard in Access and selected the tables and it calculated the joins correctly and it works fine in Access, SQL Server, MySQL, and PostgreSQL! Here is the correct format:

Join queries

2005-07-15 Thread Saturday (Stuart Kidd)
Hi guys, I'm working on the search page of a dating application. In the form where the user gets to choose his/her preferred partner there are a few checkboxes which says: I am searching for: Love Casual Travel mate Friend When displayed as checkboxes i'm pulling from a table called

RE: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Tangorre, Michael
From: Andy Mcshane [mailto:[EMAIL PROTECTED] Have you checked the values that are passed into the CFC before you use them.? Just output them within the CFC to ensure that the expected values are at least within the CFC. You can avoid the use of cfif/cfelse tags and duplicate cfprocparam tags

Data Access in Flash... more

2005-07-15 Thread SStewart
I'm digging through the Flash Pro MX 2004 help docs and it mentions using a function called CF.query so I drop this into my flash doc and get the following **Error** Screen=data, layer=Layer 1, frame=1:Line 1: ')' or ',' expected CF.query(datasource:DocWf_SQL_Test, sql:EXEC

Re: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Andy Mcshane
That was indeed a great help, I had to slightly modify your code to get it to work. I had to change it to this (for some strange reason it doesn't like checking for the length 0?) cfprocparam type = IN null = #YesNoFormat(Not isDate(arguments.fixdate))# value =

Re: Join queries

2005-07-15 Thread Deanna Schneider
Try this. I'm not sure which DB, or if all users are requred to select the type of match they seek. So, you may need to use the SQL Server join syntax or the outer join syntax, if matching that parameter is optional. cfquery name=FindMatches datasource=user020 SELECT profileID, userID,

Re: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Anthony Prato
If I understand correctly you are trying to have these date parameters of your stored procedure optional. Why not make them optional in the stored procedure? In your stored procedure when you define for example @DOB datetime, Just change it to @DOB datetime=null This will set the parameter @DOB to

Re: Access throwing error missing operator (I hate Access!)

2005-07-15 Thread S . Isaac Dealey
Access has its own unique syntax for multiple join statements (ain't it lovely?) ... You can get away with a single join statement the way normal join statements work, but after the first one, they have to be nested (in a way that other db's don't like of course because it's non-standard). FROM

RE: Catching errors and emailing (new Question)

2005-07-15 Thread Aldon
How do I catch server response when an email is accepted for delivery? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, July 15, 2005 9:06 AM To: CF-Talk Subject: Catching errors and emailing Sorry, forgot to mention that I use this code in a sitewide

Verity taking out spaces in PDF?

2005-07-15 Thread Scott Stroz
Does anyone know of an issue with Verity stripping out spaces (whitespace) when indexing PDFs? Some of the 'summary' from our collectoin read like whenyouenterthecorrectvalueitwillwork. -- Scott Stroz Boyzoid.com http://Boyzoid.com ___ Some days you are the dog, Some

RE: Catching errors and emailing

2005-07-15 Thread Doug Bedient
This is a little OT but what is the best way to restart processing after an error has occurred. Details: I have a scheduled page that parses a TXT file. Sometimes the file is so large that it times out. I am time stamping the items that have completed and I want the page to re-run to handle the

Re: Join queries

2005-07-15 Thread Saturday (Stuart Kidd)
Thanks Deanna. Just a couple of questions (and problems). The form which displays the check boxes does so with a loop getting a list of the possible attributes: !--- find all attributes --- cfquery name=FindAttributes datasource=user020 SELECT attributeID,

RE: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Nick Han
Be aware that relying on name references when passing parameters into a stored procedure from a CF template doesn't work correctly 100%, at least from experience on SQL Server. To be sure that you don't get mismatched parameters, you should call the same number of parameters and pass them in the

RE: Coldfusion7, cfprocparam blank date fields!

2005-07-15 Thread Dave Watts
Be aware that relying on name references when passing parameters into a stored procedure from a CF template doesn't work correctly 100%, at least from experience on SQL Server. To be sure that you don't get mismatched parameters, you should call the same number of parameters and pass

Re: Join queries

2005-07-15 Thread Greg Morphis
the p and the a are just aliases for the tables.. some people don't mind typing out the table names over and over again however I think most like the shorthand of aliases. On 7/15/05, Saturday (Stuart Kidd) [EMAIL PROTECTED] wrote: Thanks Deanna. Just a couple of questions (and problems).

RE: Data Access in Flash... more

2005-07-15 Thread Kevin Aebig
The function in question is for Server side Actionscript. This form of scripting is normally used with Flash communication server applications. There are no DB drivers included within the plug-in, so direct DB calls aren't there to use. Cheers, Kevin -Original Message- From: SStewart

Re: Catching errors and emailing

2005-07-15 Thread Douglas Knudsen
have you tried raising the request tiemout setting on the scheduled task? DK On 7/15/05, Doug Bedient [EMAIL PROTECTED] wrote: This is a little OT but what is the best way to restart processing after an error has occurred. Details: I have a scheduled page that parses a TXT file. Sometimes

Re: Join queries

2005-07-15 Thread Deanna Schneider
I don't use ms-sql, so I'm a bit rusty on the ansi standard left join sytax. It'll look something like the below. (Note the change in the from close, and the deletion of the one part of the where clause.) The a and p (and now l) are just aliases, so I don't have to type out your tablenames over

RE: Data Access in Flash... more

2005-07-15 Thread SStewart
I encapsulated it within a function and it doesn't return any errors, now I need to find out if it's actuall passing the data and get it into a data grid. function getConcrete(){ result = CF.query({datasource:DocWf_SQL_Test, sql:EXEC GetConcreteStatus}); return result; } Scott

Re: Verity taking out spaces in PDF?

2005-07-15 Thread Raymond Camden
It is my understanding that the Summary is NOT a straight cut and paste, but Verity's attempt to summarize your content. Therefore, it will not be perfect. The context value should be a straight cut and paste. On 7/15/05, Scott Stroz [EMAIL PROTECTED] wrote: Does anyone know of an issue with

RE: Data Access in Flash... more

2005-07-15 Thread Kevin Aebig
Unless this is in a CF page or a FlashComm app, it simply won't work. Flash doesn't have the capabilities or the integrated drivers to handle making direct DB calls. The reason your script isn't throwing an error is because Flash assumes that there's a custom class object named CF with a method

RE: Data Access in Flash... more

2005-07-15 Thread SStewart
Thanks, I kinda thought that's what I was doing.. like I said I'm VERY new to this... sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 300 Chantilly, VA 20151 Phone: (703) 995-1737 Fax: (703) 834-5527 Many

CF7 Install Woes

2005-07-15 Thread Barney Boisvert
I just rebuilt a server last night, and a fresh copy of CF7 standard refuses to run on it. CF6.1 runs just dandy, but CF7 tries to start up, but only gets to the point of binding it's JNDI port, and then stops doing anything else. It gives every indication it's started up successfully, but it

Re: Join queries

2005-07-15 Thread Saturday (Stuart Kidd)
Yeah, i remember now why i did that weird thing with the loop - i couldn't seem to get it to work. If I put the below in, the flash form will not load (although no error comes up either). cfloop query=FindRelationshipTypes cfinput

RE: Data Access in Flash... more

2005-07-15 Thread SStewart
Thanks, I kinda thought that's what I was doing.. like I said I'm VERY new to this... sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 300 Chantilly, VA 20151 Phone: (703) 995-1737 Fax: (703) 834-5527 Many

Re: CF7 Install Woes

2005-07-15 Thread Steven Erat
Can you post more information? Perhaps the contents of the console window after starting up, then a ps -ef | cfmx, and perhaps do a live tail on all the jrun logs during startup (tail -f /opt/coldfusionmx7/runtime/logs/*.log). Also, what's the version of Linux? -Steven Erat On 7/15/05,

Re: Join queries

2005-07-15 Thread Deanna Schneider
I've not used the flash forms at all yet. So, I don't think I can be of great help. Sorry. Have you looked at the documentation to see if it mentions anything about checkboxes? On 7/15/05, Saturday (Stuart Kidd) [EMAIL PROTECTED] wrote: Yeah, i remember now why i did that weird thing with the

Triggering MSSQL DTS from CF

2005-07-15 Thread jacksonj
I'd like to upload a file to the CFMX server, then run a MSSQL DTS on that file to insert/scrub it. The file upload should be no problem, but how do I run a DTS from CF? Also, after the file is uploaded, can anybody suggest how to make the file available to the MSSQL server (which is on a

Re: CF7 Install Woes

2005-07-15 Thread Barney Boisvert
Yeah, you bet Steven. You meant a `grep` in the `ps` command, right? The output you want is listed below. I've also include a shutdown message (which is indicitive of a problem). Note that the /opt/coldfusionmx7/runtime/logs directory never gets anything written to it; it dies out before that

Re: Catching errors and emailing

2005-07-15 Thread Doug Bedient
Yes it's already at 8 minutes. Which should be fine most the time but once in a while... If I go more than that it seems to puke. I would like to have a failsafe check. ~| Find out how CFTicket can increase your company's

Email CFDOCUMENT created PDF

2005-07-15 Thread Doug Bedient
I want to create a PDF and email it. Has anyone done this. It seems like it would be a no brainer but I can't figure it out. I can create the PDF and I can send the email but how do you include the one with the other. As far as I can tell you can't save the PDF to disk and dropping it in as

RE: Email CFDOCUMENT created PDF

2005-07-15 Thread Ian Skinner
IIRC there is a filename attribute to the cfdocument tag that will save the pdf as a file instead of streaming it to the client. You should then easily be able to attach this file to the e-mail with cfmailparameter tags. -- Ian Skinner Web Programmer BloodSource

cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Damien McKenna
I'm just after doing a fresh install of CFMX 6.1 on a Windows 2000 Server with J2RE 1.4.x and have struck problems. First off the ODBC services are not listed in the service manager. Secondly CFM pages aren't being processed in IIS and the following error is in cfmx/logs/exception.log:

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Damien McKenna
I should also mention that right after installing CFMX 6.1 (standalone + IIS connector) it said it was going to open the admin to finish the installation but never did. Then I ran the 6.1 updater, that went fine. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Dave Watts
I'm just after doing a fresh install of CFMX 6.1 on a Windows 2000 Server with J2RE 1.4.x and have struck problems. First off the ODBC services are not listed in the service manager. Secondly CFM pages aren't being processed in IIS and the following error is in cfmx/logs/exception.log:

Re: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Adam Haskell
And if that doesn't work call Marcomedia...install support is free :) Adam H On 7/15/05, Dave Watts [EMAIL PROTECTED] wrote: Well, it sounds to me like your install is pretty hosed. If possible, I'd recommend that you completely uninstall CFMX, delete any remaining registry keys, and try

Re: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Howie Hamlin
Did the install completely succeed? Maybe you need to reboot? Anyway - that DLL depends on: ADVAPI32.DLL (system32 folder) CFINDEX.DLL GDI32.DLL (system32 folder) KERNEL32.DLL (system32 folder) LIBALLRSEI.DLL (cfusionmx\lib folder) MSVCP60.DLL (system32 folder) MSVCRT.DLL (system32 folder)

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Dave Watts
Did the install completely succeed? Maybe you need to reboot? Anyway - that DLL depends on: ADVAPI32.DLL (system32 folder) CFINDEX.DLL GDI32.DLL (system32 folder) KERNEL32.DLL (system32 folder) LIBALLRSEI.DLL (cfusionmx\lib folder) MSVCP60.DLL (system32 folder) MSVCRT.DLL (system32

Detect if Session Management is enabled?

2005-07-15 Thread Loathe
How would you do this programmatically? TIA Tim Heald Senior Web Developer TeraTech, Inc. 2003 Winner CFDJ awards Best Consulting Service Email: [EMAIL PROTECTED] Voice: 1-301-424-3903 x111 Web: http://www.teratech.com ~|

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Damien McKenna
Well, it sounds to me like your install is pretty hosed. If possible, I'd recommend that you completely uninstall CFMX, delete any remaining registry keys, and try again Thanks, Dave, that's what I'm attemping. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

RE: Detect if Session Management is enabled?

2005-07-15 Thread Dave Watts
How would you do this programmatically? One easy way, offhand: cftry cfset Session.isEnabled = true cfcatch ... Session management isn't enabled - do something! /cfcatch /cftry Alternatively, you might test for the existence of the Session scope - I

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Damien McKenna
Out of that list, the ones I think are the most likely suspects are the C/C++ runtimes (MSVCP60.DLL, MSVCRT.DLL). That makes a lot of sense. I got the vcredist.exe file but it won't execute. I'll find some way of getting them on there. -- Damien McKenna - Web Developer - [EMAIL PROTECTED]

RE: Detect if Session Management is enabled?

2005-07-15 Thread Loathe
The try/catch method is the only one that seems to work, and is going to write to error logs right? I did isDefined('session') which came back YES. Unfortunately we aren't doing CF 7 development on this one :( Tim -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent:

RE: cfindex.dll: Can't find dependent libraries

2005-07-15 Thread Damien McKenna
Out of that list, the ones I think are the most likely suspects are the C/C++ runtimes (MSVCP60.DLL, MSVCRT.DLL). That makes a lot of sense. I got the vcredist.exe file but it won't execute. I'll find some way of getting them on there. Well it turned out that those DLLs *are* in place.

Re: Catching errors and emailing

2005-07-15 Thread Matt Robertson
Something you might want to consider is that, if you are emailing errors to yourself via cfdump, those dumps could contain info that you might be a little leery of sending free/clear over a non-secure email. Not just things like form variables of a form post blows up (which could expose yucky

RE: Detect if Session Management is enabled?

2005-07-15 Thread Dave Watts
The try/catch method is the only one that seems to work, and is going to write to error logs right? No, it won't automatically write to error logs. That's up to you. You can do that using the CFLOG tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the

Re: Catching errors and emailing

2005-07-15 Thread Michael Dinowitz
Email is about as secure as a standard web page is and I don't know many people who have 'real' security for their logs, admin or the like. SSL costs. Something you might want to consider is that, if you are emailing errors to yourself via cfdump, those dumps could contain info that you

Re: Catching errors and emailing (new Question)

2005-07-15 Thread Matt Robertson
On 7/15/05, Aldon [EMAIL PROTECTED] wrote: How do I catch server response when an email is accepted for delivery? I don't believe there is any direct way to do that. Maybe something like iMS can if used in place of CFMail. That program can do just about everything else you'd ever want... --

Re: Catching errors and emailing

2005-07-15 Thread Matt Robertson
On 7/15/05, Michael Dinowitz [EMAIL PROTECTED] wrote: Email is about as secure as a standard web page is and I don't know many people who have 'real' security for their logs, admin or the like. SSL costs. I agree that few people do it but in this day and age, when you can get a cheapo 128-bit

  1   2   >