Re: Are search engine safe URLs really necessary?

2005-04-26 Thread Ian Buzer
Google does treat SES URLs slightly differently in that it will spider pages at a significantly slower rate if it thinks the pages are dynamic. It is designed that way so that it doesn't bring the site down by over enthusiastic spidering. I redeveloped an existing application into fusebox, so

Session Timeout and User Authentication

2005-04-26 Thread Paul Wilson
I have a user authentication system in my application that allows you to log in and view certain areas of the site based on a session variable. I'm wondering how people handle the following scenario. User logs in and has a browse of the site and finishes on a secure page. Then does nothing and

Re: Stupid XML question

2005-04-26 Thread Matt Robertson
On 4/25/05, Sean Corfield [EMAIL PROTECTED] wrote: Are you using CF5 or CFMX? CFMX 6.1 That sample template is actually a mockup of what I'm getting back from a cfhttp call. The xml returned to me is just as I posted it. Like I said. I'm a newbie here. I've managed to avoid XML for

RE: Session Timeout and User Authentication

2005-04-26 Thread Micha Schopman
Normally you would check for the existence of login information, like cfif structKeyExists(session,isLoggedIn) If it exists, continue, if not invoke methods to display the login part. That last one can be tricky, depending on the application. If you have an application, single paged, then you can

Re: Stupid XML question

2005-04-26 Thread Matt Robertson
On 4/25/05, Sean Corfield [EMAIL PROTECTED] wrote: !--- http://66.165.78.2/testoutput.cfm: --- Not authorized to access this page! sorry about that. Missed a digit in the IP: http://66.165.78.26/testoutput.cfm -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

Re: nest #

2005-04-26 Thread Jared Rypka-Hauer - CMG, LLC
Aye, those are nestings, not peer relationships... so you're not going to end up with productrange1.name, you're going to end up with productrange.1.name Which, unless you're using associative array notation (which the example wouldn't be unless the original was declared as a quoted string

Re: Stupid XML question

2005-04-26 Thread Jared Rypka-Hauer - CMG, LLC
Matt, for the struct output your page is showing you'd use ww_javagame.ww_cpid.value to get the value 0425070052843 BUT, why not just use xmlParse()? cfhttp url=http://my.xmlsource.com/page.xml; cfhttp.filecontent would then contain: ?xml version=1.0 encoding=UTF-8? ww_javagame ww_cpid

Re: Stupid XML question

2005-04-26 Thread Matt Robertson
Thanks guys. I just figured it out. Or more accurately I appear to have tinkered with it and this time didn't make some stupid typo. I added this to the bottom of that template: cfoutput #myxml.ww_javagame.ww_cpid.value#br #myxml.ww_javagame.ww_statuscode.value#br

RE: Using Java Classes rather than CFC's?

2005-04-26 Thread RADEMAKERS Tanguy
Sean, Thanks for the answer. Anybody else got third party jars in their server classpath? Sound off! /t -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 12:10 AM To: CF-Talk Subject: Re: Using Java Classes rather than CFC's? On 4/25/05,

Re: Using Java Classes rather than CFC's?

2005-04-26 Thread Jochem van Dieten
RADEMAKERS Tanguy wrote: Anybody else got third party jars in their server classpath? Sound off! Database drivers (although that is probably not what you mean because they are accessed through the standard cfquery tag). Jochem

Re: Using Java Classes rather than CFC's?

2005-04-26 Thread Paul Hastings
Anybody else got third party jars in their server classpath? Sound off! off the top of my head: itext (well used to, it now conflicts w/cf) activation persiancalendar icu4j InetAddressLocator jtds (sql server driver) arcIMS ~|

Re: _Are_search_engine_safe_URLs_really_necessary?

2005-04-26 Thread Keith Gaughan
S.Isaac Dealey wrote: 1. (a) http://example.com/archives/2005/4/25/ (b) http://example.com/archives.cfm?yr=2005mth=4dy=25 (c) http://example.com/index.cfm?fuseaction=blog.archivesyr=2 005mth=4dy=25 You know, there's nothing keeping me from using

RE: Cfchart, Webcharts, style attribute

2005-04-26 Thread Calvin Ward
Any takers or thoughts on this? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 3:58 PM To: CF-Talk Subject: Cfchart, Webcharts, style attribute Is this working for anyone? All I seem to get is an error that says Not text elements left I

New Verity Search on CFMX 7

2005-04-26 Thread Ian Vaughan
Hi I am using the new Verity search on CFMX 7 and the new TYPE column. In my search results it returns application/pdf application/msword etc How can I convert this output from the above to just Adobe PDF, Ms Word etc ??? Also does anybody know of any tutorials etc on

Re: Are search engine safe URLs really necessary?

2005-04-26 Thread Bert Dawson
I use a custom 404 set in IIS to redirect to a URL (index.cfm/fuseaction/iis404), and i either get a 302 or 200 status code depending on whether fuseaction:iis404 does a cflocation or not. (reading status codes using the firefox live http headers tool) Cheers Bert On 4/25/05, [EMAIL PROTECTED]

Re: Stupid XML question

2005-04-26 Thread Joe Rinehart
Hey Matt, If you're using CFMX 6.1, I'd dump SoXML and go straight to the native XML capabilities. It'd look like this: cfset variables.thisxml=?xml version=1.0 encoding=UTF-8? ww_javagame ww_cpid0425070052843/ww_cpid ww_statuscode2001/ww_statuscodeww_statusmsgwoo hoo/ww_statusmsg /ww_javagame

CF5 on Win2K3 fun

2005-04-26 Thread Andy Allan
Having some fun with getting CF5 set up on Windows 2003. Followed the guff in the following MM technote http://www.macromedia.com/go/tn_18689 to get things underway but the problem I've got is that the CF service won't stay running. Attempting to start it just tells me that it starts and then

New Verity Search on CFMX 7

2005-04-26 Thread Matt Woodward
Also does anybody know of any tutorials etc on using the new version of verity on CFMX 7 on the www ? apart from the official Macromedia documentation. http://findarticles.com/p/articles/mi_m0MLU/is_3_7/ai_n13466047 ~| Find out

RE: Stupid XML question

2005-04-26 Thread Adrian Lynch
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functi20.htm#wp346877 0 and the XML and XSLT in ColdFusion MX PDF here http://www.macromedia.com/devnet/mx/coldfusion/xml_xslt.html should tell you all you need. Ade -Original Message- From: Matt Robertson [mailto:[EMAIL

RE: Flash Form as function like js confirm

2005-04-26 Thread Ken Ferguson
I don't think confirm exists in AS. I tried your suggestion and it didn't work. I also tried: return alert('are you sure?', 'confirm your submission', 3); That just flashes the alert box with yes/no buttons as it submits the form though. There's got to be a way to do this. --Ferg

Re:__Are_search_engine_safe_URLs_really_necessary?

2005-04-26 Thread S . Isaac Dealey
S.Isaac Dealey wrote: 1. (a) http://example.com/archives/2005/4/25/ (b) http://example.com/archives.cfm?yr=2005mth=4dy=25 (c) http://example.com/index.cfm?fuseaction=blog.archivesyr= 2 005mth=4dy=25 You know, there's nothing keeping me from using

Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Rob Condon
I am having difficulty migrating our 6.1 application to MX7. Appache remains connected to 6.1 and won't connect with 7. After running the Apache_connector.bat file the Apache httpd.conf was updated with references to the CfusionMX7 directory as below.. JRunConfig Verbose false JRunConfig

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
What does your .conf file look like? Can you access the CF Server via the Proxy? I haven't looked at the JMC for a while. I am running Apache here with: CFMX 6.1, CFMX 7, Flex, CFMX 6.1 with Flex CFMX 7 with Flex So it can be done! -Original Message- From: Rob Condon

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
JRunConfig Serverstore C:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store This line to me looks like it will always use CFMX 6.1 as this is the default wsconfig entry you are using for 6.1. For my Blackstone install I have JRunConfig Serverstore

RE: nest #

2005-04-26 Thread Phillip B. Holmes
James, Realized id was not a key in his example after I sent it. Long day. My example means that productrange is a struct with nested keys. It is a nested structure in bracket notation. That is the same as productrange.id.name. Phillip -Original Message- From: James Holmes

RE: Flash Form as function like js confirm

2005-04-26 Thread Ken Ferguson
So, I had another brilliant thought which didn't seem to work either. I used a button instead of a submit and then did this: cfinput type=button name=confirm value=send it! onclick=if(alert('are you sure', 'my alert box', YES|NO) == YES){submitForm()}else{}; Strange this is, when the alert fires

Re: New Verity Search on CFMX 7

2005-04-26 Thread Raymond Camden
Someone already shared my article with you - but to respond specifically to your thing on converting application/pdf to Adobe PDF - you would need to do this yourself. A simple UDF could make this easy. You can also find lists of MIME types online, although you probably only need to worry about

Ignore Characters in Database Field

2005-04-26 Thread Jordan Michaels
I'm hoping someone here can help me out with the following: I have a database of items and item numbers, something like this: ID Item 1-12 Apples 12-123 Oranges 123-1 Bananas Here's the problem that I'm running into: I want to run a query for item numer 112, but I don't know where the

RE: CrystalTech Users Beware

2005-04-26 Thread Kevin Graeme
-Original Message- From: Jim Davis remember that CF was never designed to be hosted in a shared environment, period. I want to thank Sean, and others, for pointing out the technical details of why this limitation exists. As someone who doesn't delve into the underpinnings, it's

OT: Server config, default document problems

2005-04-26 Thread Damien McKenna
As a follow up to my message yesterday about configuring IIS CFMX, I got it processing CFM files ok but it is now doing something odd. When I go to e.g. http://localhost/index.cfm it works fine and does what it should. When I go to http://localhost/ it sends me the index.cfm as a file download

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Rob Condon
Neil, This sounds encouraging. Although, I'm not sure why it's the default entry for 6.1. When I was running only 6.1 the Serverstore path was C:\JRun4\lib\wsconfig\1, I believe. Can you give me advice to set this up similarly? Also, what's your jrunserverstore file look like? Thanks,

Re: New Verity Search on CFMX 7

2005-04-26 Thread Dave Carabetta
On 4/26/05, Ian Vaughan [EMAIL PROTECTED] wrote: Hi I am using the new Verity search on CFMX 7 and the new TYPE column. In my search results it returns application/pdf application/msword etc How can I convert this output from the above to just Adobe PDF, Ms Word etc

Re: Ignore Characters in Database Field

2005-04-26 Thread Jochem van Dieten
Jordan Michaels wrote: I have a database of items and item numbers, something like this: ID Item 1-12 Apples 12-123 Oranges 123-1 Bananas Here's the problem that I'm running into: I want to run a query for item numer 112, but I don't know where the dash is in the Item Number

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
1 is the standard folder used for the first JRun instance. I assume you are running on JRun and not standalone so you will need to add a new server via the JMC and then I deployed CFMX 7 as an EAR. All you should need to do is just copy the folder named 1 and then rename it to the correct server

RE: CF5 on Win2K3 fun

2005-04-26 Thread Matt Osbun
You've already gotten a lot farther than I ever did with installing CF5 in W2k3/IIS6. The compatibility problems were the leverage I finally used to convince the Powers That Be to upgrade to CFMX. It isn't all that expensive- especially when you factor in the time and hassle you're putting in

OT: DSN handling for production server

2005-04-26 Thread Damien McKenna
It has been mentioned here recently that the database login information for a production server should not be stored in the Coldfusion administrator. First off, for a dedicated server, why? Secondly, what is a good way to solve this? Thirdly, we have almost a dozen sites, most of which

Re: Ignore Characters in Database Field

2005-04-26 Thread Jordan Michaels
Jochem van Dieten wrote: Jordan Michaels wrote: I have a database of items and item numbers, something like this: ID Item 1-12 Apples 12-123 Oranges 123-1 Bananas Here's the problem that I'm running into: I want to run a query for item numer 112, but I don't know where the dash is in

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
1 is the standard folder used for the first JRun instance. I assume you are running on JRun and not standalone so you will need to add a new server via the JMC and then I deployed CFMX 7 as an EAR. All you should need to do is just copy the folder named 1 and then rename it to the correct server

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
So, for my install I just fixed I did this: (this assumes you have added a new CFMX server instance to JRun) 1. Copied Folder 1 into C:\JRun4\lib\wsconfig\ 2. Edited the jrunserver.store file to pick up the Proxy Port listed for my new server (this value you can see in the JMC) 3. Started the

RE: Migrating MX6.1 to MX7 problems with Apache

2005-04-26 Thread Robertson-Ravo, Neil (RX)
D'oh. Step 1.2 would be renamed the NEW folder 1 to the same name as the CFMX server instance ;-) -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 26 April 2005 15:03 To: CF-Talk Subject: RE: Migrating MX6.1 to MX7 problems with Apache So, for my

Re: DSN handling for production server

2005-04-26 Thread Deanna Schneider
Well, we don't store usernames and passwords in any of our cf servers (except in unique instances). Instead, we have datasource names only in the administrator, and each developer is responsible for using the appropriate account information to access the database. We generally have project

RE: DSN handling for production server

2005-04-26 Thread kola.oyedeji
-Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: 26 April 2005 14:00 To: CF-Talk Subject: OT: DSN handling for production server It has been mentioned here recently that the database login information for a production server should not be stored in the

Re: cfx image?

2005-04-26 Thread Josen Ruiseco
I also use Efflare's ImageCr and ImageFlare. They are great products. They are affordable. Their support is great. http://www.efflare.com Josen Ruiseco GoMotorBids.com http://www.gomotorbids.com As I stated earlier in this thread, if there were problems with cfexecute on CFMX, they were

Mapquest advantage

2005-04-26 Thread Frank Weichmann
Has anyone used the Mapquest advantage product. It is XML based but the example is in asp and they have xls page to handle all the results and errors. So I would like to change the asp page into a ColdFusion page so I can take advantage of the xls pages. Any help appreciated.

SOT: Hiding a Flash Form

2005-04-26 Thread C. Hatton Humphrey
I have a large flash form that is being used to update information for one of my clients. They have just asked for a informational screen to be added before the form is displayed and I'm wondering if there is a way to use positioning and layers to do this... The idea that I had was to have a div

Re: HOw to Access error info

2005-04-26 Thread Bryan Stevenson
When an error occurs on any page that uses that application.cfm, the user would be redirected to cferror.cfm. Thanks Ewokthat's exactly what I was after (well I haven't tested...but it sounds good) ;-) I'm wondering about your statement above (and wish I paid more attention to the error

Re: SOT: Hiding a Flash Form

2005-04-26 Thread Ben Doom
In doing this, I have two questions - first is whether or not a DIV can be layered over a flash movie. The second is if it's worth it to Unless something has changed and no one told me, Flash is considered to have an infinite z-index in IE/Win. You might try hiding the div containing the

RE: New Verity Search on CFMX 7

2005-04-26 Thread Ian Vaughan
Thanks Ray and Dave for the information. Ray do you know of any UDF's that convert the display of application/msword to just msword etc ??? I have had a look on cflib but cant seem to come across anything? Also I am trying to use the new Verity feature of offering suggestions, when using the

Re: SOT: Hiding a Flash Form

2005-04-26 Thread C. Hatton Humphrey
Unless something has changed and no one told me, Flash is considered to have an infinite z-index in IE/Win. You might try hiding the div containing the Flash (I'm not sure if this will work) but you can't layer anything over it. That's what I was worried about - at this point it'll be easier

RE: Trouble with web services, complex return objects in 6.1

2005-04-26 Thread Tom Jordahl
So that begs the question: what do people do when they develop web services for CFMX? Do they just have that page of the administrator open and hit refresh after changing the associated code? That's fine, but seems kind of annoying. It is annoying. We should fix that. How can we tell

Re: SOT: Hiding a Flash Form

2005-04-26 Thread Mark Drew
I beg to differ you can layer stuff over flash. in the object tag add: param name=wmode value=transparent in the embed tag add wmode=transparent embed src=my.swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer; type=application/x-shockwave-flash width=580 height=314

Re: SOT: Hiding a Flash Form

2005-04-26 Thread Ben Doom
I thought that just made the background of the flash movie transparent. Is that not right? --Ben Mark Drew wrote: I beg to differ you can layer stuff over flash. in the object tag add: param name=wmode value=transparent in the embed tag add wmode=transparent embed src=my.swf

RE: SOT: Hiding a Flash Form

2005-04-26 Thread Ken Ferguson
You can set wmode in the cfform tag too. --Ferg -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 10:14 AM To: CF-Talk Subject: Re: SOT: Hiding a Flash Form I thought that just made the background of the flash movie transparent. Is that not

Re: SOT: Hiding a Flash Form

2005-04-26 Thread Mark Drew
It does that but also adds the wonderful ability to layer other things on top of it. check out http://www.bwspeakers.com select a country and language then go to the main page.. and move your mouse over the nav. you will see things covering the flash file MD On 4/26/05, Ben Doom [EMAIL

Re: SOT: Hiding a Flash Form

2005-04-26 Thread C. Hatton Humphrey
param name=wmode value=transparent H... that's an interesting thought; this is a CF7 flash form and one of the parameters for the form is: wMode = window or transparent or opaque guess now I'll take some time to figure out if this is going to work out! Thanks!

RE: CF5 on Win2K3 fun

2005-04-26 Thread Jacob
Weird. I installed CF5 on two 2003 Servers without any problems. When I installed the only message I got was not compatible, but I installed it anyways. Followed the MM tech notes and that was it. They have been upgraded to CF MX now. -Original Message- From: Matt Osbun [mailto:[EMAIL

delimited file upload and parse with JAVA

2005-04-26 Thread DRE
Hi, I need to upload a delimited file and parse it. Now I've done this countless times with the usual splitting on the return charachters and then the tab chacachter. However, I'm sick of doing it Now, I know that Java can do this and I know that I can call java libraries to do this. Has

Re: Flash Remoting and Scoped Variables

2005-04-26 Thread Ken Dunnington
I'm curious, should session handling in FR be handled similarly to Web Services session handling, where a unique ID is passed with each call? I've been having trouble getting sessions to work with remoting, using a session facade to handle user and ecommerce stuff. It's been tough finding examples

Re: Flash Form as function like js confirm

2005-04-26 Thread Ray Champagne
Sorry, Ken, I was up late last night in a coding haze and didn't read the whole thread before I responded. Thought we were talking straight JS here. Hope you find your answer! I have no idea about AS Ray Ken Ferguson wrote: I don't think confirm exists in AS. I tried your suggestion

RE: Hiding a Flash Form

2005-04-26 Thread Ken Ferguson
Hatton, why not just use an AS alert for your informational screen? You could put it in a faked-out onload of the cfform. I just want to make it perfectly clear that I have cold stolen this idea from Philippe Maegerman's load movie work here: http://tinyurl.com/87y8o You can use this to pop up a

Re: HOw to Access error info

2005-04-26 Thread Bryan Stevenson
How do you catch errors like these: cfoutput#MyVar#/cfout (improperly closed tag) OR cfoutput#MyVar/cfoutput (var not enclosed in ##) Those are the only kinds of errors I can't seem to handle. I'm liking CFERROR way more than cftry/catchbut ultimately I don't want the user to see ANY

Re: delimited file upload and parse with JAVA

2005-04-26 Thread Adam Haskell
check out java.IO.FileReader and java.IO.BufferedReader basiaclly you create a filereader object then create a bufferedReader object by passing it the FileReader object then loop the bufferedReader...soemthing like this ( complete untested): cfscript FR =

Re: cfx image?

2005-04-26 Thread Mary Jo Sminkey
Jukka now has a tag based on ImageMagick called CFX_OpenImage that works pretty well. Not super-fast, but quality is great. Tag is free to use and has tons of capability. Jukka is very responsive, I was having a problem with thumbnail file sizes due to EXIF information and in a day he had

RE: HOw to Access error info

2005-04-26 Thread COLLIE David
cfoutput#MyVar#/cfout (improperly closed tag) OR cfoutput#MyVar/cfoutput (var not enclosed in ##) Hi One approach that I've used is... (pretty much covering the same ground Ewok did!) !--- Variables.isDebug is tied to an environment variable which either shows the errors in 'dev', might

Re: delimited file upload and parse with JAVA

2005-04-26 Thread Massimo Foti
Now, I know that Java can do this and I know that I can call java libraries to do this. Has anybody done this? Is there an existing library that is included in the jre so that its available with standard hosting packages? I've assembled this: http://www.olimpo.ch/tmt/cfc/tmt_csv For a more

Re: HOw to Access error info

2005-04-26 Thread Bryan Stevenson
The REQUEST one will def catch the ones you have asked about but you may be able to catch them via a specific excetption. Thanks David... h...now I had tried thatand it does not catch those errors..that's why I askedperhaps I'm missing something?? I'll test it again to confirm

Re: delimited file upload and parse with JAVA

2005-04-26 Thread DRE
Ok, thats a good start! One more question. Sometimes, a line item will look like this: hello,goodbye,today How do I handle the quotes? Is there any java already created for this? Thanks. DRE On 4/26/05, Adam Haskell [EMAIL PROTECTED] wrote: check out java.IO.FileReader and

Re: Stupid XML question

2005-04-26 Thread Matt Robertson
Yeah before I hit the hay last night I had to try out xmlParse() and boy is that ever simple. I'd much rather use the native function on general principles, and besides, performancewise its light years faster than the custom tag. Thanks to everyone for helping out! -- --mattRobertson-- Janitor,

Re: delimited file upload and parse with JAVA

2005-04-26 Thread Adam Haskell
Off the top of my head I can't think of something in Java. I know of a perl library though ;) I imagine there is something (if not included in the JRE freely distributed) but like i said off the top of my head I can't recall a class to do that might checl Massimo's CFC didn't read the

RE: HOw to Access error info

2005-04-26 Thread COLLIE David
h...now I had tried thatand it does not catch those errors..that's why I askedperhaps I'm missing something?? I'll test it again to confirm Ye gawds Bryan you're right! Just tested it and I was totally convinced that the REQUEST handler got these types! Not got time to play

RE: Any Free/Low cost anti-spam/anti-virus software?

2005-04-26 Thread Rick Eidson
I use AVG on my servers and desktops. There is even an extension for my mail server (ArgoSoft) called VirusX that uses its engine to scan incoming mail before it delivered to your inbox. http://www.grisoft.com Rick ~| Find

Mozilla Problem with Secure Server

2005-04-26 Thread Todd Sager
Bear with me please, as I am not a developer, but I do maintain my company's website. I have a rudimentary understanding of CF. With the same code that has been working flawlessly in IE for several years, I have discovered a problem when using Firefox. Our entire site that uses CF seems to

Re: Flash Remoting and Scoped Variables

2005-04-26 Thread Sean Corfield
On 4/26/05, Ken Dunnington [EMAIL PROTECTED] wrote: I'm curious, should session handling in FR be handled similarly to Web Services session handling, where a unique ID is passed with each call? No, it just works. As long as the CFCs being invoked are 'covered' by an Application.cfm that sets an

Re: HOw to Access error info

2005-04-26 Thread Bryan Stevenson
hehe...no wrries...and the documentation says that the REQUEST option will catch ANYTHING...it lies ;-) Site wide error handler was my next stop on the error handling train ride!! Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone:

Re: delimited file upload and parse with JAVA

2005-04-26 Thread DRE
Massimo, Thanks. THis may be what I'm looking for or I can get enough out of it to do what I want. ps. If you click on sample there appears to be an error on the page. DRE On 4/26/05, Adam Haskell [EMAIL PROTECTED] wrote: Off the top of my head I can't think of something in Java. I know of a

RE: Mozilla Problem with Secure Server

2005-04-26 Thread Damien McKenna
Sounds like there could be a number of problems: * Invalid HTML code is loosing data somewhere. Clean HTML avoids these problems. * Cookie problems could be doing this. * Are your SSL certificates valid? Try viewing your bare secure site via SSL just to ensure it works. * Check the

RE: Mozilla Problem with Secure Server

2005-04-26 Thread Connie DeCinko
Are cookies enabled in FireFox? -Original Message- From: Todd Sager [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 9:36 AM To: CF-Talk Subject: Mozilla Problem with Secure Server Bear with me please, as I am not a developer, but I do maintain my company's website. I have a

Re: Mozilla Problem with Secure Server

2005-04-26 Thread Jochem van Dieten
Todd Sager wrote: Once the info has been collected in the non-secure portion of our shopping cart, Firefox will hang up on the page that hands this info to the secure portion. It will not throw back an error or even keep pinging the server, it just appears to stall on this page

Re: delimited file upload and parse with JAVA

2005-04-26 Thread Paul Hastings
Massimo Foti wrote: For a more robust solution you can check: http://ostermiller.org/utils/CSV.html thanks for that. looks like some useful utils there. ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: HOw to Access error info

2005-04-26 Thread Deanna Schneider
Those are compiling errors. You catch them by running your code on a dev instance before putting it on production. Oops - error! I must fix it! Those files will never compile into java byte code. So, there's no way for them to be caught by any of CF's error handling. - Original Message

Re: HOw to Access error info

2005-04-26 Thread Bryan Stevenson
Those are compiling errors. You catch them by running your code on a dev instance before putting it on production. Oops - error! I must fix it! Those files will never compile into java byte code. So, there's no way for them to be caught by any of CF's error handling. That's pretty much

Re: Any Free/Low cost anti-spam/anti-virus software?

2005-04-26 Thread Matt Robertson
Speaking personally, I have been really happy with F-Prot. It costs I think $2 per year to license a computer (you have to purchase a minimum license count that takes the cost to $50... but bottom line is you can license an office-full of systems for fifty bucks a year where Norton et al wants a

RE: HOw to Access error info

2005-04-26 Thread COLLIE David
Those are compiling errors. You catch them by running your code on a dev instance before putting it on production. Oops - error! I must fix it! Those files will never compile into java byte code. So, there's no way for them to be caught by any of CF's error handling. What about a

CFMX 7 won;t stay running

2005-04-26 Thread Scott Stroz
I have had numerous problems installign CFMX 7 Devloper Edtion. The service frequently shuts down, and on many occaisions, it does nto restart automatically, I need to go in and start it manually. I have looked at the logs, and there doesn't seem to be any pertinent info in there. I have updated

RE: Flash Remoting and Scoped Variables

2005-04-26 Thread Kevin Aebig
'Should be' and 'working' are 2 different things... =] Though I've gotten sessions to work properly with Flash Remoting, it certainly was a huge pain. Instead, its much easier to to mimic session data by using roles for any authentication and either Shared Objects for persistant data across

CF Document won't run

2005-04-26 Thread Mark A Kruger
I have a new installation of cmfx 7.0 enterprise. I'm trying to test cfdocument with the code below - direct from the help files: The PDF file never generates. The browser hangs (indefinitely) and no file is generated. I've tried writing directly to a file. I've tried flashpaper as well. Has

Word com object question

2005-04-26 Thread CFDEV
Hi, I looked at http://cfregex.com/cfcomet/word/ to try to read form fields from a word file. The code example is great but on my CF MX 6.1 server i get an error when I create the object. Do I need to download and installed the COM object or is it integrated in CF MX (standard version)? Here's

SOLVED: Hiding a Flash Form

2005-04-26 Thread C. Hatton Humphrey
Hatton, why not just use an AS alert for your informational screen? You could put it in a faked-out onload of the cfform. Thanks for the idea, Ken - I already had the code in when you made the suggestion but the client's request that they wanted a preload page rather than just a message box was

RE: Word com object question

2005-04-26 Thread Ian Skinner
Is word installed on the server? The com objects need an instance of word installed on the server (client machines don't count). And thus the problem with these solutions, any error generated by word is going to throw a modal window to the server and stop word from responding to anything else

Am I a moron? (Versign)

2005-04-26 Thread Eric J. Hoffman
Obvious answers aside, I have just upgraded the CF server to 7 with updater hotfix applied. The java-based custom tag for Verisign's PayFloPro worked great previouslybut now errors out. Has anyone experienced this, I see nothing at Verisign or by googling. It tells me it cannot find the cfx

RE: Word com object question

2005-04-26 Thread CFDEV
Thanks, I don't think that Word is installed on this server. I'll check with my sys admnin. Thanks again Patrick -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: April 26, 2005 13:46 To: CF-Talk Subject: RE: Word com object question Is word installed on the

Re: CF Document won't run

2005-04-26 Thread Bryan Stevenson
Not sure what's wrong...but your code works fine here..so it's specific to your server or workstation ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: Am I a moron? (Versign)

2005-04-26 Thread Bryan Stevenson
I think someone posted this issue and fix a few days agocheck to see if the error says CFX_CFX_tagNameif so, the extra CFX_ is be prepended somewhere (and a search of the archives will tell you where) ;-) HTH Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: SPAM-LOW: Am I a moron? (Versign)

2005-04-26 Thread Matthew Blatchley
Eric, I have experienced similar problems with earlier versions of Verisign tags for CF. They only support specific versions and I think MX might not be one of them. You need to call the CF tech folks on staff there to get the nitty gritty info on which versions of CF their CFX_ tag

RE: CF Document won't run

2005-04-26 Thread Mark A Kruger
Another clue - CF FORM has the same problem... it just hangs. -Mark -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 12:51 PM To: CF-Talk Subject: Re: CF Document won't run Not sure what's wrong...but your code works fine here..so it's

RE: Flash Form as function like js confirm

2005-04-26 Thread Mike Nimer
This isn't supported right now. You can pop up the confirm dialog, but as you noticed you can't do anything with the ok or cancel buttons. The reason is that you can't write a function to register as the event handler for these buttons. We as working on a way to do confirm dialogs, but for right

RE: Hiding a Flash Form

2005-04-26 Thread Mike Nimer
If you add cfform wmode=transparent the form will allow you to position a div over the form. Hth, ---nimer -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 10:43 AM To: CF-Talk Subject: SOT: Hiding a Flash Form I have a large flash

RE: HREF in rows with Flash format CFRGID?

2005-04-26 Thread Mike Nimer
Here is an example http://www.cfform.com/search/invoke.cfm?objectid=E2344892-4E22-1671-5496 EEE941876E5Emethod=full ---nimer -Original Message- From: Alex Sherwood [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 10:44 AM To: CF-Talk Subject: HREF in rows with Flash format

Re: HOw to Access error info

2005-04-26 Thread Deanna Schneider
It does look like a site-wide error handler will take care of it, yes. (Tested on 6.) But, cferror will not. What about a wrong upload in production then (no arguments about it should never happen please) with the errors that Bryan was trying to catch. Are you telling me that there is

Re: CF Document won't run

2005-04-26 Thread Sean Corfield
On 4/26/05, Mark A Kruger [EMAIL PROTECTED] wrote: Another clue - CF FORM has the same problem... it just hangs. Do you have FOP or some similar Java library installed? FOP conflicts with cfdocument and cfform format=flash. Also what platform are you on? -- Sean A Corfield --

  1   2   3   >