Re: Sessions being show to wrong users?

2005-01-26 Thread Ian Buzer
I'd back up Martin's theory of it being search engines indexing the site with the CFID/CFTOKEN in the URL. If two people follow that link within the session time out they will share the session. I now only use CFID/CFTOKEN in the URL from behind a log in page, or after someone has added an

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
Sessions expire within a certain amount of time, which in general is 20 minutes. So clicking through by using a cached google page should not trigger that session, since it's data has already expired. I would advice you to try enabling single threaded sessions in the CF Administrator. See if this

Built in web server

2005-01-26 Thread Kevin Roche
Hi, I want to use the built in web server on my CFMX installation. Up until now I always used IIS but for various reasons I need to use the built in web server instead. Where do I put the cf files? Is there a way to set up server mappings? Is there any documentation I can read about it

RE: ColdFusion 5 RDS Visual Source Safe

2005-01-26 Thread Kevin Roche
Hi, Is the RDS service running? I have a problem sometimes when I reboot that RDS does not start up as it should. Forcing a start from the Services Control Panel fixes it. I have no idea why, as it only happens very occasionally I have never taken the time to investigate. I suspect that it is

RE: Sessions being show to wrong users?

2005-01-26 Thread Kevin Roche
Yes, but if two people follow the link withing a few minutes of each other the fisrtt one will start a new session using the provided CFID and CFTOKEN and the second will join it! Kevin -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 08:58 To:

RE: Sessions being show to wrong users?

2005-01-26 Thread Kevin Roche
Hi, In the past I have seen the following acuse this problem: 1/ users who sent each other links to pages with CFID and CFTOKEN in the link. 2/ Search engine spiders site and picks up a CFID and CFTOKEN. 3/ Firewall caches the CFID and CFTOKEN (This was many years ago and I think most are

Re: Built in web server

2005-01-26 Thread Ian Winter
Have a read of this document, it should help answer some of your questions. http://www.macromedia.com/support/coldfusion/adv_development/config_builtin_webserver/ On Wed, 26 Jan 2005 08:59:11 -, Kevin Roche [EMAIL PROTECTED] wrote: Hi, I want to use the built in web server on my CFMX

Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
I have an XML document that needs to be converted to a fixed width Comma Seperated File so it can be inserted into the relevant databases. XSLT would perform this transformation but how can Coldfusion fit in to make this an easy to use web application. For example... The user would upload the

Re: Using Coldfusion with XML

2005-01-26 Thread Ian Winter
There is a xml2query customtag which you could run then create the csv from the query, bit long winded though. On Wed, 26 Jan 2005 09:36:30 -, Ian Vaughan [EMAIL PROTECTED] wrote: I have an XML document that needs to be converted to a fixed width Comma Seperated File so it can be inserted

RE: What utility could I use to measure my clients' website bandwidth usage?

2005-01-26 Thread James Smith
At a previous company I used another server logfile analysis program similar to Analog but for the life of me I can't remember what it was called, any suggestions? I remember Analog being pretty full featured. And free :) Doesn't have to be free, but I'm not just dying to spend money.

RE: Built in web server

2005-01-26 Thread Kevin Roche
Thanks, that looks like what I need. -Original Message- From: Ian Winter [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 09:11 To: CF-Talk Subject: Re: Built in web server Have a read of this document, it should help answer some of your questions.

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
Is it best to leave Coldfusion alone when it comes to dealing with XSLT and XML ? -Original Message- From: Ian Winter [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 09:55 To: CF-Talk Subject: Re: Using Coldfusion with XML There is a xml2query customtag which you could run then create

Re: Sessions being show to wrong users?

2005-01-26 Thread Bert Dawson
I've seen this occurring when a PC which already has the cfid and cftoken has been used as an image to clone more PC's, all of which ended up having identical cookies. Is this just happening on certain machines? Also, i've seen it happen due to sloppy coding in an application scoped cfc, which

Re: Using Coldfusion with XML

2005-01-26 Thread Nick de Voil
Is it best to leave Coldfusion alone when it comes to dealing with XSLT and XML ? No, you can do this very neatly in CFMX using the XmlTransform() function. Also, the xml2query suggestion was a good one if you want to minimise lines of code. However, if efficiency is an issue and the XML is

Re: Using Coldfusion with XML

2005-01-26 Thread Stephen Moretti (cfmaster)
Ian Vaughan wrote: I have an XML document that needs to be converted to a fixed width Comma Seperated File so it can be inserted into the relevant databases. XSLT would perform this transformation but how can Coldfusion fit in to make this an easy to use web application. For example... The

Re: Using Coldfusion with XML

2005-01-26 Thread Massimo Foti
So basically, you need to think about what is next the application/data flow and process the XML accordingly. These are indeed wise suggestions. I would add that you also need to evaluate your expertise, since complex XSLT programming can be tricky and require specific knowledge

Re: Sessions being show to wrong users?

2005-01-26 Thread Neil Middleton
I'm willing to bet that this is due to a proxy server. Are all the users coming from the same place (e.g. same company, ISP?). We had this problem a few years ago. On Wed, 26 Jan 2005 10:34:32 +, Bert Dawson [EMAIL PROTECTED] wrote: I've seen this occurring when a PC which already has the

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
The end point is with the fixed with CSV file being generated and saved so that can be input into the relevant database tables. So below would be the code to select the xml doc. form action=xml.cfm ENCTYPE=multipart/form-data method=post name=form input type=file name=UploadFile p input

Re: Using Coldfusion with XML

2005-01-26 Thread Massimo Foti
Are there any CF tutorials on the www for this as it will be a different process to just simply uploading a doc to a file server ? http://www.macromedia.com/devnet/mx/coldfusion/xml_xslt.html I would suggest to start from here:

RE: Using Coldfusion with XML

2005-01-26 Thread COLLIE David
Are there any CF tutorials on the www for this as it will be a different process to just simply uploading a doc to a file server ? http://www.macromedia.com/devnet/mx/coldfusion/xml_xslt.html I would suggest to start from here:

RE: Sessions being show to wrong users?

2005-01-26 Thread Martin Parry
Hi Kevin - Long time no speak... We have a nightmare at the moment with a large motor dealership who are having this problem.. To alleviate it, I add the following to the headers to make sure firewalls/proxies aren't caching. Although I couldn't do this on a web site of course. !--- Push a

RE: ColdFusion 5 RDS Visual Source Safe

2005-01-26 Thread Martin Parry
Kevin.. RDS uses an HTTP port (80 as far as I'm aware) and routes itself through IIS (This is proven when you stop the IIS site with CFIDE in it and RDS stops working). What you could try is setting up another IP address or domain name (e.g. mxbox.myserver.com) and have IIS resolve it, but ONLY

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
Are you able to force users to use cookies? If so, you might try checking for the existence of session tokes in the url, and destroy them before calling cfapplication. I think you need to try preventing the usage of cfid and cftoken by url :) But I don't know if you are able to do that in your

Re: CFMX ODBC/JDBC Drivers

2005-01-26 Thread Alin Sinpalean
If you saw my code you saw that the only thing I was doing was a select statement to the SQL server. The reason the second test was so fast was because I left caching on, so that I would get a more real world result. Ok, I see. As I said earlier, I have no reason not to use JTDS, as a

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
Oh, and another option, lock the session to the IP address of the visitor. cflock scope=session type=readonly timeout=10 !--- session key found in the url variables --- cfif isDefined('url.cfid') AND isDefined('url.cftoken') cfif isDefined('session.ipaddress') AND

Re: OT: PHP equivalent of cfhtmlhead

2005-01-26 Thread Adam Haskell
Style sheets belong in the head Javascript is valid in head and body but you are running under a slightly different context in the body most of the time it won't make a difference. We use javascript in the body al ot to cut down bandwidth use...like reports run by 2000+ stores a day on weekly

RE: Sessions being show to wrong users?

2005-01-26 Thread Martin Parry
Yes, I like that !! But... If the user's coming from behind a proxy all you see is a single IP address as they're using NAT. It should reduce his problem somewhat though. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Micha Schopman

RE: Sessions being show to wrong users?

2005-01-26 Thread Martin Parry
Yes, I like that !! But... If the user's coming from behind a proxy all you see is a single IP address as they're using NAT. It should reduce his problem somewhat though. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Micha Schopman

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
Yes, proxies still get you in trouble, but I think the chances are really small multiple visitors clicking the exact same link within 20 minutes (that alone is a small chance) and then we have another less smaller chance people using the exact same ip address due to proxies. Agree it isn't 100%

Re: ColdFusion 5 RDS Visual Source Safe

2005-01-26 Thread Rob Sherman
Hi Doug, yes, I've tried setting an RDS password and still get the same results. - Rob have u tried setting an RDS password? Doug ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Question about logging errors and messages

2005-01-26 Thread Ciliotta, Mario
Hi, I am wondering if anyone can give me some advice on what is the best route to take. I am trying to design an method that would allow all messages that are created by CF (errors and so on) to captured and saved in a database for future use and debugging purposes. The reason I am trying to do

RE: What utility could I use to measure my clients' website bandwidth usage?

2005-01-26 Thread Burns, John D
I'm using Weblog Expert (about $75US) and it does a pretty good job. One thing you need to do though is set your logs to include the bytesSent/BytesReceived (at least in IIS this isn't checked automatically to be logged). Web Trends is another log analyzing program, but it's expensive and kinda

Re: CFMX ODBC/JDBC Drivers

2005-01-26 Thread Robert Everland III
Give me an example of exactly what I should do and I will do it. The reason I didn't do anything other than a select was that my view was that ColdFusion then has the result set so there would be no more use from the SQL server. I do everything in stored procedures, how are the results when

RE: Sessions being show to wrong users?

2005-01-26 Thread RADEMAKERS Tanguy
Martin, Try this: cfheader name=Cache-Control value=no-store cfheader name=Cache-Control value=no-cache /t -Original Message- From: Martin Parry [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 2:18 PM To: CF-Talk Subject: RE: Sessions being show to wrong users? Yes, I

RE: Using Coldfusion with XML

2005-01-26 Thread Dave Merrill
Is there really a requirement to go through csv? Why? If the point is to get the data into a db, what's the reason to pump it through a csv file on the way? (Assuming that cf has access to the db.) Am I missing part of your stated needs? Dave Merrill The end point is with the fixed with CSV

OT:: How would I re-write this SQL query???

2005-01-26 Thread Che Vilnonis
This should be pretty easy for one of you SQL gurus out there... SELECT * FROM ORDERS WHERE SUM(SubTotal + Shipping) = #FORM.TotalCharge# Thanks, Che ~| Find out how CFTicket can increase your company's customer support

Date problem between Coldfusion 5 and MX

2005-01-26 Thread Nath Arduini
Hi everyone, I'm upgrading a site from Coldfusion 5 to MX but I have a date bug. In Coldfusion 5, I got the last modified date of a file and converted it with DateFormat like this : cfset faqPath = GetTemplatepath() cfset faqPath = left(faqPath,len(faqPath)-9) wel\ cfdirectory

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
These headers only prevent the proxy server from creating a cached version. They do not prevent a user behind a proxy, from visiting the website with the same session tokens :) The only way is to separate users, be denying a clone to use the service with the same tokens, or by identifying clones

RE: : How would I re-write this SQL query???

2005-01-26 Thread Micha Schopman
Euhm ... not? :) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: : How would I re-write this SQL query???

2005-01-26 Thread Che Vilnonis
not easy? -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 9:24 AM To: CF-Talk Subject: RE: : How would I re-write this SQL query??? Euhm ... not? :) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL

RE: ColdFusion 5 RDS Visual Source Safe

2005-01-26 Thread Dave Merrill
RDS can use whatever port you define for the web site that serves it and in the properties of each defined RDS server on the clients. That port does need to be open in both directions between client and server. Can the clients bring up a telnet connection to the server on that port? (That'd be 80

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
Thanks for the links guys Much appreciated -Original Message- From: COLLIE David [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 12:17 To: CF-Talk Subject: RE: Using Coldfusion with XML Are there any CF tutorials on the www for this as it will be a different process to just

Re: OT:: How would I re-write this SQL query???

2005-01-26 Thread Nick de Voil
This should be pretty easy for one of you SQL gurus out there... That depends on what you want to achieve! SELECT * FROM ORDERS WHERE SUM(SubTotal + Shipping) = #FORM.TotalCharge# Maybe you mean SELECT * FROM ORDERS WHERE SubTotal + Shipping = #FORM.TotalCharge# ? Nick

RE: : How would I re-write this SQL query???

2005-01-26 Thread Robertson-Ravo, Neil (RX)
Use a View. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 14:14 To: CF-Talk Subject: OT:: How would I re-write this SQL query??? This should be pretty easy for one of you SQL gurus out there... SELECT * FROM ORDERS WHERE SUM(SubTotal +

Re: OT:: How would I re-write this SQL query???

2005-01-26 Thread Jochem van Dieten
Che Vilnonis wrote: This should be pretty easy for one of you SQL gurus out there... SELECT * FROM ORDERS WHERE SUM(SubTotal + Shipping) = #FORM.TotalCharge# While I am not sure what exactly your code is supposed to do, I do think you need to look up HAVING in the manual. Jochem

RE: : How would I re-write this SQL query???

2005-01-26 Thread Ciliotta, Mario
Che, SUM is an aggregate function and cannot appear in a WHERE without a HAVING or SUBSELECT or subquery. If all you want to do is check for each row instead of the either table just do this: SELECT * FROM ORDERS WHERE (SubTotal + Shipping) = #FORM.TotalCharge# I tried it in SQL2000 and Oracle

RE: OT:: How would I re-write this SQL query???

2005-01-26 Thread Che Vilnonis
hmm, Nick you were correct. thanks. -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 9:35 AM To: CF-Talk Subject: Re: OT:: How would I re-write this SQL query??? This should be pretty easy for one of you SQL gurus out there... That

RE: Sessions being show to wrong users?

2005-01-26 Thread RADEMAKERS Tanguy
Micha, I once had the *exact* problems Martin described, and they were due to a badly configured proxy server caching the page: customer A visits the site and requests a page with session specific information. The proxy caches this page. Customer B visits the site and requests the same page. The

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
Dave There is no real requirement, would it be easier (coding wise) to transform the XML files straight into the database via CFFILE ? Rather than producing a CSV file? -Original Message- From: Dave Merrill [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 14:12 To: CF-Talk Subject: RE:

Re: OT:: How would I re-write this SQL query???

2005-01-26 Thread Qasim Rasheed
have you tried something like this select yourcolumns from orders group by yourcolumns having sum(subtotal+shipping) = #form.totalchange# On Wed, 26 Jan 2005 09:13:50 -0500, Che Vilnonis [EMAIL PROTECTED] wrote: This should be pretty easy for one of you SQL gurus out there... SELECT * FROM

Re: Using Coldfusion with XML

2005-01-26 Thread Stephen Moretti (cfmaster)
Ian Vaughan wrote: Dave There is no real requirement, would it be easier (coding wise) to transform the XML files straight into the database via CFFILE ? Rather than producing a CSV file? Ian, Are you trying to just dump the CSV into a column in a table in your database? Or are you looking

RE: Sessions being show to wrong users?

2005-01-26 Thread Martin Parry
Cool - ty I will try adding these to the routine... Can we definitely send to separate cfheaders or should they not be comma separated in the same one? Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: RADEMAKERS Tanguy [mailto:[EMAIL

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
Yes taking the XML doc and parsing the information stored within into a database table. -Original Message- From: Stephen Moretti (cfmaster) [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 15:00 To: CF-Talk Subject: Re: Using Coldfusion with XML Ian Vaughan wrote: Dave There is no

RE: Sessions being show to wrong users?

2005-01-26 Thread RADEMAKERS Tanguy
You can send two seperate ones, no probs. Remember that these won't do anything as long as the proxy has old versions in its cache, so you will need to either 1) contact the proxy admin and have him flush the cache of his proxy or 2) rename all your pages and links so that subsequent requests are

Export to Excel

2005-01-26 Thread Asim Manzur
Any recomanded tag to export the html result to excel sheet? preferably free tag. thanks PS: Second attempt. I post this message yesterday from the website, didn't showed up, tried again from website didn't comes up either. now sending through email.

RE: Sessions being show to wrong users?

2005-01-26 Thread Martin Parry
Thanks - what a pain though. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 15:13 To: CF-Talk Subject: RE: Sessions being show to wrong users? You can send two

RE: Export to Excel

2005-01-26 Thread Robertson-Ravo, Neil (RX)
I you are on MX then use this... http://jakarta.apache.org/poi/index.html its free and is the mutts nuts -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 15:29 To: CF-Talk Subject: Export to Excel Any recomanded tag to export the html result to

Re: Using Coldfusion with XML

2005-01-26 Thread Stephen Moretti (cfmaster)
Ian Vaughan wrote: Yes taking the XML doc and parsing the information stored within into a database table. ok - in which case - I refer you to point 3 of my previous email If you actually need to do something with the XML data in CF, but only need the CSV as a means of getting the data

RE: Sessions being show to wrong users?

2005-01-26 Thread RADEMAKERS Tanguy
Tell me about it... but always try solution one first: get in touch with whoever administers their proxy. It's never a fun conversation - you're the guy from the agency world caling the enterprise administrator and telling him that there might be a problem with his proxy configuration... goes over

RE: Sessions being show to wrong users?

2005-01-26 Thread Micha Schopman
Or append unique data to the urls to fool the proxy. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: Using Coldfusion with XML

2005-01-26 Thread Ian Vaughan
Using the following code I am getting an error complaining of no destination specified for the UPLOAD, but in this case what would this be as I am not uploading the XML file to a location but to a variable to process form action=parse.cfm ENCTYPE=multipart/form-data method=post name=form input

Can you underline current line in Dreamweaver MX?

2005-01-26 Thread Discover Antartica
I am doing CF programming using Dreamweaver MX. I used to use CF Studio previously. In CF Studio, you have the option of highlighting the current line by having a line up and below the line of code that you are currently at. It was one of the options you could select to modify the editor. Is

RE: Export to Excel

2005-01-26 Thread Ben Rogers
I generally just generate an HTML page and place the data in a HTML table. Give it a .xsl extention and hand it back with a content disposition header: cfheader name=Content-Type value=application/x-msexcel; charset=UTF-8 cfheader name=Content-Disposition value=myExcelFile.xls That

RE: Using ColdFusion with XML

2005-01-26 Thread Ian Skinner
I don't think you can upload directly into a variable into memory. I believe the process will need to be: Upload file from client to server Read file on server into memory variable Process variable into xml -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento,

Re: Dynamic table tag?

2005-01-26 Thread Stas Newdel
Thanks, Paul - this works great, except when I embedd into another DHTML ladden widget. Must be some overlapping namespaces, but I'll try to figure it out. Thanks again! Stas On Tue, 25 Jan 2005 13:32:31 -0700, Paul [EMAIL PROTECTED] wrote: This sounds like what you're after:

Re: Can you underline current line in Dreamweaver MX?

2005-01-26 Thread Bob Haroche
Pretty sure, not. :( - Regards, Bob Haroche O n P o i n t S o l u t i o n s www.OnPointSolutions.com - Original Message - From: Discover Antartica [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, January 26, 2005 7:51 AM Subject: Can you underline

formatting form fields with CR

2005-01-26 Thread daniel kessler
I have a form field and I'd like it to keep it's format when submitted to the db. Unfortunately, it loses it's carriage returns. I'd also like it if the htm like strong and such could come through as bold. I'd like the person to be able to enter and keep their line returns: I have a few

Re: OT: PHP equivalent of cfhtmlhead

2005-01-26 Thread Keith Gaughan
Rick Root wrote: George Abraham wrote: Well for the time being, this is what I found as an acceptable/workable alternative: http://www.zend.com/zend/art/buffering.php Ah yes, I've used ob_start() before... but isn't that pretty much only for http headers? God no! It's for general

RE: formatting form fields with CR

2005-01-26 Thread RADEMAKERS Tanguy
normally (?!?) the CRs are kept, the problem is in displaying them - if you display the value stored in the db in a textarea you should see the original formatting, but if you display in regular html you see one long line - because html doesn't take CRs into account. You need to change CRs into br

RE: formatting form fields with CR

2005-01-26 Thread Ian Skinner
Are you sure the carriage returns are lost in the database. There is a good chance that the CRs and LFs characters are still there, but if you are just outputting that to a browser, the HTML parser is ignoring them as it is supposed to do. You may try putting the output into pre tags. In my

Re: Dynamic table tag?

2005-01-26 Thread Stas Newdel
David, This just automates creating cfquery and a simple data displya. I am looking for something that would allow me to output a grid with a static header and scrolling rows. Stas On Tue, 25 Jan 2005 15:38:43 -0500, dave [EMAIL PROTECTED] wrote: no but it comes built-in to dw look under

Re: CFMX ODBC/JDBC Drivers

2005-01-26 Thread Alin Sinpalean
Give me an example of exactly what I should do and I will do it. I don't know how this should look in CFML but I will give you the equivalent Java code; I think it won't be hard for you to figure out what I mean. Here goes: Statement stmt = conn.createStatement(); for (int i = 0; i 100;

Oracle Object Views

2005-01-26 Thread Ryan Scott
When I run the following query cfquery datasource=Test name=objectView select departmentcode, emp_list from dept_view /cfquery against an oracle object view which returns a collection of employee object types within a department: dept_code, dept_name, employees. using the DataDirect JDBC

Re: formatting form fields with CR

2005-01-26 Thread daniel kessler
normally (?!?) the CRs are kept, the problem is in displaying them - if you display the value stored in the db in a textarea you should see the original formatting, but if you display in regular html you see one long line - because html doesn't take CRs into account. You need to change CRs into br

Re: ENOM COM

2005-01-26 Thread C. Hatton Humphrey
Has anyone written a interface for the Enom.EnomURL COM object yet? I've been putting this on the backburner for sometime and am finally forced to look into it. Just checking to see if there's anything out there yet. Did you end up building anything for eNom? I'm looking at using their API

Re: Export to Excel

2005-01-26 Thread Asim Manzur
I just need the simple excel output. This is what I am using and no error and no excel file. meta http-equiv=pragma content=no-cache cfheader name=Content-Type value=application/x-msexcel; charset=UTF-8 cfheader name=Content-Disposition value=MyExcel.xls thanks PS: Again no result if I post

RE: Domain reseller integration

2005-01-26 Thread Emmet McGovern
I think ENOM has one of the best laid out API's out there. http://www.enom.com You can't complain about the price of their domains either. Emmet -Original Message- From: Paul Campano [mailto:[EMAIL PROTECTED] Sent: Monday, January 24, 2005 10:55 AM To: CF-Talk Subject: Domain reseller

Re: Oracle Object Views

2005-01-26 Thread Adrocknaphobia
Are you expecting to return the full object to CF? -Adam On Wed, 26 Jan 2005 11:17:16 -0500, Ryan Scott [EMAIL PROTECTED] wrote: When I run the following query cfquery datasource=Test name=objectView select departmentcode, emp_list from dept_view /cfquery against an oracle object

Re: Using Coldfusion with XML

2005-01-26 Thread Joe Rinehart
You need to add a DESTINATION attribute to your CFFile tag: cffile action=UPLOAD filefield=Form.UploadFile destination=c:\someDirectory -joe -- For Tabs, Trees, and more, use the jComponents: http://clearsoftware.net/client/jComponents.cfm

RE: Export to Excel

2005-01-26 Thread Dawson, Michael
This is very cool, but it lacks the ability to lock cells which I needed for a recent project. I also needed conditional formatting to quickly show where information needed to be entered. I wish the API would have had this functionality, but it didn't. Therefore, I created the spreadsheet as I

Re: Can you underline current line in Dreamweaver MX?

2005-01-26 Thread Nathan Strutz
But you can in Eclipse CFEclipse :D Check it out if you haven't. http://cfeclipse.tigris.org/ -nathan strutz http://www.dopefly.com/ Bob Haroche wrote: Pretty sure, not. :( - Regards, Bob Haroche O n P o i n t S o l u t i o n s www.OnPointSolutions.com - Original

Check Data Source

2005-01-26 Thread cfhelp
What is the easiest way to check if a data source is available? I want to test in the Application.cfm file if a data source is reachable and set a true. Then load the site. Rick No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database:

RE: Sessions being show to wrong users?

2005-01-26 Thread Dave Watts
I will try adding these to the routine... Can we definitely send to separate cfheaders or should they not be comma separated in the same one? I don't know whether browsers correctly respond to multiple Cache-Control headers. In my experience, I've gotten good results by specifying all of the

RE: Check Data Source

2005-01-26 Thread Emmet McGovern
cftry cfquery datasource=dsn name=check Select * from table /cfquery cfcatch cfabort !-- or something else --- /cfcatch /cftry emmet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 11:47 AM To: CF-Talk Subject: Check Data Source

RE: Check Data Source

2005-01-26 Thread Dave Watts
What is the easiest way to check if a data source is available? I want to test in the Application.cfm file if a data source is reachable and set a true. Then load the site. You can query the datasource within an exception handler: cftry cfquery ... ... /cfquery

thoughts on CFLOGIN

2005-01-26 Thread Emmet McGovern
Are a lot of people switching over to cflogin? I've been using the same homegrown roles based login forever now and haven't seen the need to switch. Old habits are hard to break I guess. Am I missing out on something? Emmet

RE: thoughts on CFLOGIN

2005-01-26 Thread Michael T. Tangorre
From: Emmet McGovern [mailto:[EMAIL PROTECTED] Are a lot of people switching over to cflogin? I've been using the same homegrown roles based login forever now and haven't seen the need to switch. Old habits are hard to break I guess. Am I missing out on something? I use it for

Re: home page redirect

2005-01-26 Thread Bryan Stevenson
Yes you can do it fairly easily, but if search engine placement is any concern for your client, this approach will get them de-listed or drop their rankings VERY quickly. Bots will not index a site that has re-directs setup like that as it is a well known search engine spamming technique!!!

Re: thoughts on CFLOGIN

2005-01-26 Thread Raymond Camden
I've been a big fan of it - but the current release of CF has some issues with it. If you use Session-based CFLOGIN security, there is a security risk. It is not safe to use in production. If you use cookie based CFLOGIN security, you have to jump through hoops if you want to tie the CFLOGIN scope

RE: home page redirect

2005-01-26 Thread Burns, John D
Check the cgi.http_referer variable for the domain name that you're expecting, if it's not in there, cflocation to the home page, if it is in there, let it be. It will be blank if the person types it in themselves. John Burns Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web

RE: thoughts on CFLOGIN

2005-01-26 Thread Burns, John D
I went to a session at MAX on it that Sarge taught and they basically said not to use it. It's a good idea but in the current standing of it, there are just too many problems and it's really made for the average Joe who doesn't need anything complex and hasn't already written their own. It

RE: Question about logging errors and messages

2005-01-26 Thread Dave Watts
I am wondering if anyone can give me some advice on what is the best route to take. I am trying to design an method that would allow all messages that are created by CF (errors and so on) to captured and saved in a database for future use and debugging purposes. The reason I am trying

RE: Check Data Source

2005-01-26 Thread Rick
Well that's simple enough...Thanks Dave, Emmet. I was trying to do an HTTP request into the admin area. Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 11:31 AM To: CF-Talk Subject: RE: Check Data Source What is the easiest way to

Designing and Developing OO Applications with CFCs.

2005-01-26 Thread Hassan Arteaga Rodriguez
Hello to all: Where I could find articles about Designing and Developing OO Applications with CFCs. I receive Hal Helms' Occasional Newsletter, it's very good newsletter related to OOP with CFC's. But I need more.. Thanks __ M.Sc. Hassan Arteaga Rodríguez Microsoft Certified System

Re: Oracle Object Views

2005-01-26 Thread Ryan Scott
Yes, I would like to be able to access the collection of employees within each department. Ryan On Wed, 26 Jan 2005 11:41:54 -0500, Adrocknaphobia [EMAIL PROTECTED] wrote: Are you expecting to return the full object to CF? -Adam On Wed, 26 Jan 2005 11:17:16 -0500, Ryan Scott [EMAIL

Re: Check Data Source

2005-01-26 Thread Qasim Rasheed
I guess you can use this function however be aware that it uses undocumented cf service factory. cfscript function verifyDatasource( dsn ){ return createObject('java', 'coldfusion.server.ServiceFactory').DataSourceService.verifyDataSource( arguments.dsn ); }

RE: Sessions being show to wrong users?

2005-01-26 Thread Dave Watts
I'd back up Martin's theory of it being search engines indexing the site with the CFID/CFTOKEN in the URL. If two people follow that link within the session time out they will share the session. I now only use CFID/CFTOKEN in the URL from behind a log in page, or after someone has

Re: Designing and Developing OO Applications with CFCs.

2005-01-26 Thread Scott Stroz
Check ou this blog for a few interesting articles http://www.clearsoftware.net On Wed, 26 Jan 2005 13:10:16 -0500, Hassan Arteaga Rodriguez [EMAIL PROTECTED] wrote: Hello to all: Where I could find articles about Designing and Developing OO Applications with CFCs. I receive Hal Helms'

RE: Sessions being show to wrong users?

2005-01-26 Thread Dave Watts
Did CF5 allow you to user UUID instead of CFToken/CFID? CF 5 allows you to specify a UUID value for CFTOKEN instead of an integer. However, that won't help avoid caching problems; it just makes it harder to guess valid session identifiers. Dave Watts, CTO, Fig Leaf Software

Re: single quotes???

2005-01-26 Thread Brian Meloche
This is an old thread... but I just saw the response and I thought I would respond anyway... To my knowledge, we should already have this hotfix applied, as we are using the latest updater. On Wed, 22 Dec 2004 16:58:42 -0600, Adam Howitt [EMAIL PROTECTED] wrote: That approach will get around it

  1   2   >