Re: XSS - Cross Site Scripting

2007-03-07 Thread Matt Robertson
On 3/6/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Couldn't you provide the functionality of adding a google search box in the CMS. That way you control how it is added /displayed etc? I think you're working very hard to preserve a textbook definition of what you think the client's

Re: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Robertson-Ravo, Neil (RX)
Yeah, I need to check this with our proxy manufacturer. It would seem Macromedia (maybe also Adobe now) use ColdFusion in distro mode and we all know how bad that performs, so maybe. that is not the way to go :-p This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond,

A Few Design Pattern Questions

2007-03-07 Thread Robert Rawlins
Hello Chaps, I’m new to the world of MVC, and I’m currently using MG to initiate myself into this type of design pattern, and on the most parts I’ve now found my feet, but there are a few of the more simple concepts that I’m still a little fuzzy on. The first element that confuses me

Re: XSS - Cross Site Scripting

2007-03-07 Thread Tom Chiverton
On Tuesday 06 Mar 2007, Mik Muller wrote: will allow any access unless the referer is the same domain and of the paired edit/add page (with a few exceptions), ie; page_edit.cfm and page_edit_action.cfm (gotta love lists... my favorite thing). I did this Without realising that some people don't

IIRF ISAPI Rewrite

2007-03-07 Thread Robert Rawlins - Think Blue
Hello Guys, After reading Ray Camden's blog post about SES type URLS I downloaded the IIRF ISAPI filter onto my website. The install appeared to go fine, fairly simple instructions, I've now rebooted my box but the website is still dead. I just get a 'page cannot be found' error message on

Re: CSS/Embedding Font?

2007-03-07 Thread Mingo Hagen
Coldfusion wrote: Besides creating images for each item that uses a particular font that may not be installed on the clients OS, I know there is a way to use CSS to embed the font within the webpage, but how reliable is it? it's not. There is a way for IE4 upwards, but that particular method

Re: udf var

2007-03-07 Thread Peter Boughton
You're mixing up the global Form scope, with your Arguments.Form struct, and the idea of var scoping function-local variables. You're also missing half the point of creating functions: abstracting and modularising common functionality - what happens if you want to trim another scope or

RE: CSS/Embedding Font?

2007-03-07 Thread Coldfusion
Yeah I knew of the browser issue. Since it is part of the header (title / slogan) I will turn it into an image based item. -Original Message- From: Mingo Hagen [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 5:21 AM To: CF-Talk Subject: Re: CSS/Embedding Font? Coldfusion

SOT: Javascript undo multi-select list function

2007-03-07 Thread Martin Thorpe
I have this requirement to write an undo function in Javascript, just looking for ideas on how to approach this, sorry for the off topic but this is a cool list. There will be a mult-select box pre-populated with some elements from the database. The user can modify the pre-populated elements

User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Hello Guys, Wanted to run a couple of ideas past you with regards to a comprehensive user authentication system. Basically the system needs to be a 'role' or 'entitlements' based security system, so all users can login using the same process, they are then offered access to particular tasks

debugging SOAP requests

2007-03-07 Thread Russ Michaels
I am having problems debugging SOAP requests, as CF really doesn't give any kind of useful error. The web service works fine, I can create the connection via CF, I can also test it via a desktop tool (SOAPUI). I am also using other web services residing on the same server just fine. But

RE: debugging SOAP requests

2007-03-07 Thread Robertson-Ravo, Neil (RX)
Hi Russ, Is it a CF Service? What is its returntype? Neil -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 10:06 To: CF-Talk Subject: debugging SOAP requests I am having problems debugging SOAP requests, as CF really doesn't give any kind of

Re: User Authentication

2007-03-07 Thread James Holmes
CFLOGIN provides role based security. On 3/7/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: Hello Guys, Wanted to run a couple of ideas past you with regards to a comprehensive user authentication system. Basically the system needs to be a 'role' or 'entitlements' based security

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Hehe, it does, but it's not efficient or OOP based :-D Thanks anyway. Rob -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 11:20 To: CF-Talk Subject: Re: User Authentication CFLOGIN provides role based security. On 3/7/07, Robert Rawlins - Think

Re: User Authentication

2007-03-07 Thread Jochem van Dieten
Robert Rawlins - Think Blue said: Wanted to run a couple of ideas past you with regards to a comprehensive user authentication system. Basically the system needs to be a 'role' or 'entitlements' based security system, so all users can login using the same process, they are then offered access

Re: A Few Design Pattern Questions

2007-03-07 Thread Jochem van Dieten
Robert Rawlins said: The first element that confuses me is this use of ‘views’ and how I should be applying them to me project. Should I be creating a view for every page in my application, or is the idea that each view forms a ‘widget’ and then pages can be assembled from several

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Hey Jochem, The idea is that this will only control access over secure areas of my site, so to answer your questions: Can a user have more then one profile? Does every user have a profile? Each user will only have one profile, you could in theory register for two accounts using different email

RE: CSS/Embedding Font?

2007-03-07 Thread Ben Nadel
You might want to look into sIFR (http://www.mikeindustries.com/sifr/). It allows you to replace HTML elements with FLASH elements that have embedded fonts. It works for all browsers as it uses the HTML version for NON-flash browsers. It also dynamically grabs the text from the element, so all you

RE: User Authentication

2007-03-07 Thread Jochem van Dieten
Robert Rawlins - Think Blue said: Can a user have more then one profile? Does every user have a profile? Each user will only have one profile (..) Can a user have more than one set of credentials? Does every user have credentials? Is a user authenticated, or are credentials authenticated?

Re: CFML Hosting Survey

2007-03-07 Thread Peter Boughton
Hmmm, well thanks to all the people that have replied so far. (Both of you) Just wanted to bump this incase there are any more people potentially interested. Thanks. Hi all, I am considering setting up some low-cost UK-based CFML hosting, and would like to know how much demand for this

Re: udf var

2007-03-07 Thread Cutter (CFRelated)
Nice work Peter. We have an application where certain site specific information is contained within the application scope on the frontend (self contained applications per site) but within the session scope on the backend (an admin application for updating the info of multiple sites), and

RE: User Authentication

2007-03-07 Thread Robert Rawlins - Think Blue
Thanks for your advice Jochem, I did consider consolidating those components into just a single 'User' cfc but when you do that it can become pretty messy as there are so many functions, for instance the 'profile' bean alone contains about 20 properties, so you've got 40 getter/setter

RE: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Dave Watts
Yeah, I need to check this with our proxy manufacturer. It would seem Macromedia (maybe also Adobe now) use ColdFusion in distro mode and we all know how bad that performs, so maybe. that is not the way to go :-p My understanding is that Adobe uses proxies, not distributed mode, and

RE: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Robertson-Ravo, Neil (RX)
How do you get metrics / demographics with a proxy? Adobe may not used distro mode, I thought they did! -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 13:43 To: CF-Talk Subject: RE: ColdFusion in an n-Tier Architecture Yeah, I need to check this

RE: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Dave Watts
How do you get metrics / demographics with a proxy? You can log HTTP requests at the proxy, or you can have the proxy write additional headers that can be used when you log HTTP requests at the proxy target. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Eric Haskins
We had Cisco Local Directors and they were doing similar things as yours are now. It would at times direct all traffic to the one server that was having issues. I believe this was a flaw in the way they handled balancing but we could easily pull/drain a server from the farm. We now run Radware

Re: udf var

2007-03-07 Thread Will Tomlinson
You're mixing up the global Form scope, with your Arguments.Form struct, and the idea of var scoping function-local variables. Thanks! This is sweet! Will ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Brad Wood wrote: good answers to them. My point is, due the collective lack of Linux at MY particular business we have actually created MORE maintenance headaches and cost ourselves MORE money then if we had stuck with Windows in the first Sounds like the classic

querying a date/time field

2007-03-07 Thread Orlini, Robert
I want to compare dates in my Access database. It is setup as a date/time field in Access as expiration. I want to check whether the expiration date matches a cfset date. I tried every combination with or without quotes, single quotes, the = sign or EQ, but since I don't always do CF

RE: querying a date/time field

2007-03-07 Thread Lincoln Milner
I think comparing as an ODBC Datetime variable (using the CreateODBCDateTime() function) should work. That way you know you're comparing apples to apples. I've done that a few times when I have fits with different date formats. -Original Message- From: Orlini, Robert [mailto:[EMAIL

Re: querying a date/time field

2007-03-07 Thread Greg Morphis
ew access... try where expiration = cfqueryparam cfsqltype=cf_sql_date value=#fooDate# / On 3/7/07, Orlini, Robert [EMAIL PROTECTED] wrote: I want to compare dates in my Access database. It is setup as a date/time field in Access as expiration. I want to check whether the expiration

OT: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
My friend is having a problem with Vista giving her this error message: Too many files open She said she used to edit the config.nt file to say files=100 to fix it. But that's not working here. She has between 40-100 files open in FoxPro 2.6. Anyone have any ideas/suggestions? Thanks much,

Re: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Robertson-Ravo, Neil (RX) wrote: How do you get metrics Squid talks SNMP, for instance. -- Tom Chiverton Helping to biannually reintermediate robust functionalities On: http://thefalken.livejournal.com This email

CFMBB 1.20 Release Candidate

2007-03-07 Thread Rick Root
Now available! CFMBB 1.20 RELEASE CANDIDATE I've been working on CFMBB 1.20 for a little over a month now, adding features, debugging, etc... there are a HUGE number of changes to CFMBB 1.20. User groups, restricted forums based on usergroup membership, integrated content management, integrated

Re: Text Similarity Algorithm

2007-03-07 Thread Chris Long
When a user changes a display, have the old and new text emailed to an address set up for the purpose. This will let you see who is making lots of changes, and let you check to see if any of those people are making major adjustments. Please don't take offense to this, but that's a pretty poor

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Kevin Aebig
She needs more RAM if she wants to access that many files at once... especially since Vista lays an egg if it *assumes* something *might* be *potentially* wrong. !k -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 8:26 AM To: CF-Talk

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Brad Wood
Ok, I'm getting strange SMTP errors, so I'm going to try reposting some of these replies from the website. There was a SMTP communication problem with the recipient's email server. Please contact your system administrator. EXCHA.NTS #5.5.0 smtp;550 Cannot relay. Mailbox not available

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Brad Wood
When you were using the Cisco Local Directors did you use software to share sessions across the servers? Assuming your CF application was one which required session information for the user to be stored on he server, when you pulled a server and users were transferred to another server, did

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Andy Matthews
Open fewer files? Is there ever really a reason to have that many files open? -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 8:26 AM To: CF-Talk Subject: OT: Vista - too many files open error message- Dave watts? My friend is having a

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Brad Wood
All well and good, but he's then set it up like it was a hobby, not a proper prodcution system. LOL. That is so true. The names of our Linux servers are things like Sabaoth and Cyberdemon, none of which match our naming standards. And they actually sport such user accounts such as

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
She needs more RAM if she wants to access that many files at once... especially since Vista lays an egg if it *assumes* something *might* be *potentially* wrong. She says she's got 2gb ram and that shouldn't be an issue. I don't know enough to know. Just trying to get pointed in the right

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Kevin Aebig
It honestly depends on what kinds of files she's opening and with which programs. I would honestly suggest that she simply avoid taxing her system like that as it's probably damaging her machine. That or she can pick up a Quad Xeon PowerEdge Server on Ebay and open as many files as she wants...

returning variable

2007-03-07 Thread Paul Giesenhagen
I have a situation I am completely baffled with . below is code from the action page and the method pulled out of a CFC. I can't seem to get it to return the newImageName variable . when I output it after the upload it errors out (I have outputted the variable inside of the method and it

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Eric Haskins
Brad, Most Hardware balancers have options to allow the server to drain users on it by not allowing new sessions. Yes it will kick users on the server you are taking out of service if you do not allow it to drain. I can see how many sessions are active on each server in the farms. When we

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Andy Matthews wrote: Open fewer files? Is there ever really a reason to have that many files open? Maybe it's a limit built into the particular type of Vista she has ? -- Tom Chiverton Helping to completely maintain total materials On:

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Brad Wood wrote: All well and good, but he's then set it up like it was a hobby, not a The names of our Linux servers are things like Sabaoth and Cyberdemon, none of which match our naming standards. And they actually sport such user accounts such as goatsucker.

Re: returning variable

2007-03-07 Thread Jon Clausen
Paul, You have uploadImage() set to return a string, not to place the newImageName variable in the variables scope. A couple of suggestion, depending on which way you want to go: 1) If you want to return the string back to the function that calls the uploadImage() simply do cfset

RE: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Brad Wood
Ah, I see what mean by drain. In other words, it doesn't add any more users to that server, and just lets them disconnect one by one as they time out until no-one is left. That solution would be no good for us. Our application keeps the user logged in for 12 hours. It is used internally by

Re: returning variable

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, Paul Giesenhagen wrote: I have a situation I am completely baffled with . below is code from the action page and the method pulled out of a CFC. You are not assigning the result of the method call to a variable in the calling page. -- Tom Chiverton Helping to

RE: returning variable

2007-03-07 Thread Paul Giesenhagen
That was it .. thanks for the help, overlooked it completely. Paul Giesenhagen QuillDesign http://www.quilldesign.com 417-885-1375 -Original Message- From: Jon Clausen [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 10:24 AM To: CF-Talk Subject: Re: returning variable

RE: ColdFusion in an n-Tier Architecture

2007-03-07 Thread Tero Pikala
You could also consider external tool (Google Analytics or similar) to get your metrics. In one reverse proxy configuration I implemented I used Squid which produced nice log files that were analyzed later. Tero Pikala -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]

Scheduled Task Times not saving

2007-03-07 Thread Dana Kowalski
Suddenly yesterday after four months all my scheduled tasks have gone bonkers and are running up to 8 times a day at random times with no logical interval. All of the tasks were set up as recurring tasks running daily at x:xx. When I go into each task now the time for daily at is blanked out.

RE: Scheduled Task Times not saving

2007-03-07 Thread Ben Nadel
Are you using CFSChedule tag anywhere in your app?? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Dana Kowalski [mailto:[EMAIL PROTECTED] Sent: Wednesday, March

Re: Scheduled Task Times not saving

2007-03-07 Thread Gareth Hughes
Are you sure the task times are completely blank? I've seen this where for some reason lots of space was put in before the actual time. If you put your cursor in the time field and do select all copy, do you get anything when you paste the result into notepad (or similar). - Original

Nesting CFCs?

2007-03-07 Thread Scott Weikert
Hey gang - I'm currently revamping various parts of my main app to CFC-ify it up. Modernization and all that rot. Quick question - can you call one CFC from within another CFC? And if so (I imagine so), what's the method? In my case, I'd like to just have another cffunction block in the same

Scheduled Tasks...

2007-03-07 Thread Brian McGarvie
Is it possible to run a scheduled task for a PATH not a url? I.e. if i want to schedules something sensitive what's the best way to do this? Thanks in advance. - Brian ~| Create robust enterprise, web RIAs. Upgrade integrate

Re: Nesting CFCs?

2007-03-07 Thread Andrew Scott
Yes, but maybe you want to learn OOP first. Inside a CFC you can do this cffunction name=Method cfset var object = CreateObject('component','component.cfcsomething').init() / or cfset CreateObject('component','component.cfcsomething').CallSomeMethod() / /cffunction Or you can extend

RE: Scheduled Tasks...

2007-03-07 Thread Dave Watts
Is it possible to run a scheduled task for a PATH not a url? Not with CF's scheduler. I.e. if i want to schedules something sensitive what's the best way to do this? You could use your OS scheduler, or you could configure your web server to only allow certain requests from the server

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
Is it possible to run a scheduled task for a PATH not a url? I.e. if i want to schedules something sensitive what's the best way to do this? Thanks in advance. - Brian Not that I am aware of, but that does not exclude the possibility by any means. But you could use some security on the URL if

Re: Nesting CFCs?

2007-03-07 Thread Will Tomlinson
Here's some info from joe. There's lotsa stuff out there. http://www.firemoss.com/blog/index.cfm?mode=entryentry=039C3509-E081-2BAC-6912DEE1EDC1C588 Found it on ray's site: http://ray.camdenfamily.com/cfcresources.cfm hth, Will

Re: Scheduled Task Times not saving

2007-03-07 Thread Dimitris C
in cfmx 7 i have the same problem with spaces (as it is already mentioned above). but it is just matter of using the delete button after the date, till you wipe all the spaces... ...but i am not sure if we do have the same problem ;-)

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Dave Watts
My friend is having a problem with Vista giving her this error message: Too many files open She said she used to edit the config.nt file to say files=100 to fix it. But that's not working here. She has between 40-100 files open in FoxPro 2.6. Anyone have any ideas/suggestions? Aside

Re: Scheduled Tasks...

2007-03-07 Thread Scott Weikert
Brian McGarvie wrote: Is it possible to run a scheduled task for a PATH not a url? I.e. if i want to schedules something sensitive what's the best way to do this? What do you mean by 'sensitive'? If you mean, you don't want the script to be able to be run from the outside - cfif

RE: Nesting CFCs?

2007-03-07 Thread Richard Kroll
Scott, There are two answers to your question. You can call methods in other CFCs in two ways. The first way is through Inheritance, take the following example: cfcomponent displayname=ObjectA cffunction name=aFunction cfreturn A / /cffunction /cfcomponent

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
What do you mean by 'sensitive'? If you mean, you don't want the script to be able to be run from the outside - cfif Left(cgi.http_user_agent, 10) IS NOT CFSCHEDULE cfabort /cfif Just for an FYI, user agents can be modified from client systems, with some browsers - very easily. Thus this

Re: Scheduled Tasks...

2007-03-07 Thread Scott Weikert
Ian Skinner wrote: cfif Left(cgi.http_user_agent, 10) IS NOT CFSCHEDULE cfabort /cfif Just for an FYI, user agents can be modified from client systems, with some browsers - very easily. Thus this could be bypassed by somebody in the know, if they wanted to do so. Yep, thought

RE: Scheduled Tasks...

2007-03-07 Thread Ian Skinner
Yep, thought about that a little while after I sent it - I'd add an IP check as well. That's what I do, but I do it in the IIS administration, rather then the code. Only allow a given IP address permission to access the given resource(s). Assuming you have control of the IIS; obviously not

Re: Smart Names implementation

2007-03-07 Thread Jake Pilgrim
I guess I was thinking of something a bit more relational (2 tables: [id,name] [id,sameAsID]), but your example would do the trick :). However I could see this becoming an additional bottleneck in our system. We often have tables with tens or hundreds of thousands of records, and there are a

RE: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread mailme
There's a ton of information for setting up session replication and clustering for cfmx6.1/7. There's an Adobe livedoc here: http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=1774.htm that describes how to do this.

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
Thanks Dave. I'm gonna get some more info from her. Will ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/ Archive:

RE: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Brad Wood
Thank you VERY much for the information. This is exactly the kind of wisdom I was hoping to extract. Matthew, tell me-- what type of load balancing do you use for your clusters? ~Brad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07,

UPS API Server status page

2007-03-07 Thread Dave Hatz
Does anyone know if UPS has a page that tells if their servers are having issues? We started getting timeout errors today from their servers and I was wondering if anyone knew if UPS had a page that told us if they might be experiencing difficulties. Thanks, Dave Hatz

RE: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread mailme
We use two layers.  We have a software based load balancer that uses Virtual IPs to handle requests.  This is soon to be exchanged for a hardware based Cisco solution, but still using Virtual IPs.  The software solution is supposed to send requests to the most available server, but it never

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Will Tomlinson
Dave, She says this: the first time i attempted to edit the file, vista yelled at me and said the file was read only and would not let me save it. more than one way to skin a catmade a new file, saved it as config1.nt, deleted config.nt after some trouble-it finally let me delete (i

Re: Scheduled Task Times not saving

2007-03-07 Thread Dana Kowalski
Yes you guys were correct it was a matter of about 15 spaces being on each side of the time. Sadly, it still doesn't explain why it ran 5x today when its set to recurring daily at 5am. It ran at 5am, 7:30am, 10:00am and 10:30am =\

Re: querying a date/time field

2007-03-07 Thread Claude_Schn�egans
ew access... This has nothing to do with Access. The problem is that formated dates should not be used in SQL, only CF date values (which are automatically converted t ODBCdates by default), or better use ODCDates. Secondly, quotes should nor be used with dates in SQL This should work:

Java.io.file

2007-03-07 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
I'm trying to use the java.io.file class but for some reason it's not working. I'm doing a simple createobject(java,java.io.file); but it keeps telling me there was an object instantiation error. We recently change the JVM so our CF7 servers would be compliant with the DST changes. Is there

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Jacob Munson
Maybe Vista replaces her changed file with the original on reboot? I've seen that behavior before in Windows. On 3/7/07, Will Tomlinson [EMAIL PROTECTED] wrote: Dave, She says this: the first time i attempted to edit the file, vista yelled at me and said the file was read only and would

Re: querying a date/time field

2007-03-07 Thread Greg Morphis
it might not have anything to do with Access but doesn't mean I have to like Access.. On 3/7/07, Claude_Schnéegans [EMAIL PROTECTED] wrote: ew access... This has nothing to do with Access. The problem is that formated dates should not be used in SQL, only CF date values (which are

Re: Java.io.file

2007-03-07 Thread Dan Vega
A quick look at the java docs tells me that the file class does not have a no arg constructor. What is the code you are using to construct this java object? You should be passing at the very leas a string for the file path. http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html Dan Vega

RE: Java.io.file

2007-03-07 Thread Ben Nadel
Try: CreateObject( java, java.io.File ).Init( ExpandPath( ./your_data_file.txt ) ) File might need to be capitalized. Also, it needs a path for the Init() method (constructor). .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com

RE: Java.io.file

2007-03-07 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
Thanks ben, it was the 'F' in File. Should have checked the javadocs before I posted :) Been a long day. ---_ Eric R. Jones Senior Web Application Developer, AFNOC/NCD Barksdale AFB, LA DSN 781-7784 Comm (318) 456-7784 NIPRNET:

Re: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Greg Morphis
I second the Who the hell needs that many files open at one time? On 3/7/07, Jacob Munson [EMAIL PROTECTED] wrote: Maybe Vista replaces her changed file with the original on reboot? I've seen that behavior before in Windows. On 3/7/07, Will Tomlinson [EMAIL PROTECTED] wrote: Dave, She

Re: Java.io.file

2007-03-07 Thread Rick Root
On 3/7/07, Jones Eric R Ctr 8 AF Det 1/AFNOC [EMAIL PROTECTED] wrote: I'm doing a simple createobject(java,java.io.file); but it keeps telling me there was an object instantiation error. You got the answer already. Java classes are CaSe-Sensitive. someone suggested something about a

Re: querying a date/time field

2007-03-07 Thread Rick Root
On 3/7/07, Claude_Schnéegans [EMAIL PROTECTED] wrote: CFSET thirdletterdate = DateAdd(d, -7, get.expiration) cfquery name=Getnow datasource=trials Select * from trials_info where expiration eq #CreateODBCDate(thirdletterdate)# order by expiration desc /cfquery This should work, provided

RE: Java.io.file

2007-03-07 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
Ok here's one for you. I'm unable to convert this epoch time to a friendly stamp because the number of seconds uses the E notation for a really big number. The number it's trying to convert is 1.73300575E12, passing this directly to Dateformat of course fails to produce the correct date :)

Re: Java.io.file

2007-03-07 Thread Rick Root
On 3/7/07, Jones Eric R Ctr 8 AF Det 1/AFNOC [EMAIL PROTECTED] wrote: Ok here's one for you. I'm unable to convert this epoch time to a friendly stamp because the number of seconds uses the E notation for a really big number. The number it's trying to convert is 1.73300575E12, passing this

RE: Java.io.file

2007-03-07 Thread Jones Eric R Ctr 8 AF Det 1/AFNOC
Yea this came from the lastModified function from the java.io.file. It is in milliseconds and like you I'm clueless how to convert. I've looked around the net but everything talks about using seconds not milliseconds. A bit more poking and a flash back to 5th grade I just changed my call to do:

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Dave Watts
I second the Who the hell needs that many files open at one time? Unfortunately, that's just the way Foxpro works. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC,

RE: Vista - too many files open error message- Dave watts?

2007-03-07 Thread Dave Watts
She says this: the first time i attempted to edit the file, vista yelled at me and said the file was read only and would not let me save it. more than one way to skin a catmade a new file, saved it as config1.nt, deleted config.nt after some trouble-it finally let me delete (i

improved js for form validation?

2007-03-07 Thread Leitch, Oblio
Does anyone know if there are improved form validation scripts available for download (yes, I know I can make my own). Specifically, if I use validate=integer, it is approving a value of 1+. Thanks This email message may contain privileged and/or confidential information. If you are not

Re: improved js for form validation?

2007-03-07 Thread Scott Weikert
Leitch, Oblio wrote: Does anyone know if there are improved form validation scripts available for download (yes, I know I can make my own). Specifically, if I use validate=integer, it is approving a value of 1+. Take a look at qForms -

File Size

2007-03-07 Thread Richard Cooper
Hi all, Seem to remember reading somewhere that there is a maximum file size for file uploads via a form for either IE or coldfusion. Does anyone know the largest doc that can be uploaded via a standard form? Thanks, R ~|

Re: File Size

2007-03-07 Thread Andrew Scott
No its the webserver itself. On 3/8/07, Richard Cooper [EMAIL PROTECTED] wrote: Hi all, Seem to remember reading somewhere that there is a maximum file size for file uploads via a form for either IE or coldfusion. Does anyone know the largest doc that can be uploaded via a standard form?

Re: debugging SOAP requests

2007-03-07 Thread Russ Michaels
no it is a JAVA web service. Russ Hi Russ, Is it a CF Service? What is its returntype? Neil -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: 07 March 2007 10:06 To: CF-Talk Subject: debugging SOAP requests I am having problems debugging SOAP requests, as CF

Re: File Size

2007-03-07 Thread Mik Muller
I've found that if you tweak CFAdmin you can get the max file size up around 800mb before the server coughs up a hairball. Untweaked I couldn't get anything higher than 450mb on my box. This is under IIS. BTW, IIS has a 2gb http download limit as well. Not sure of Apache's limit. Generally, if

Re: Nesting CFCs?

2007-03-07 Thread Dwayne Cole
I'm thinking of doing the same. Do components have access to functions located in functions stored in the application scope? -- Original Message -- From: Scott Weikert [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Wed, 07 Mar 2007 10:27:22

RE: improved js for form validation?

2007-03-07 Thread Andy Matthews
I'm a fan of Massimo's tmt_validator. It's the best, simplest one I've found thus far. -Original Message- From: Leitch, Oblio [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 07, 2007 3:33 PM To: CF-Talk Subject: improved js for form validation? Does anyone know if there are improved

Re: Coldfusion 7 Real World-Examples language problem

2007-03-07 Thread Siegfried Dolleisch
Hi, what are the basics to create a web site in farsi? 1) HTML-Header: meta http-equiv=Content-Type content=text/html; charset=utf-8 / 2) Change the field typs to nvarchar an ntext in the database 3) cfset SetEncoding(FORM, UTF-8)/ if I work with the CFFORM-tag 4) Have to change my provider

Re: Text Similarity Algorithm

2007-03-07 Thread cf user
I know that this problem has been solved as an algorithm, because the web searches I've done have indicated that. However, the only two links to the actual algorithms that I've found are both broken. Yes, these algorithms calculate Editing distance and well known since late 60s. Most of

  1   2   >