RE: ASP.Net book for CF programmer

2006-05-02 Thread Adrian Lynch
I've been using Visual Web Dev(2005 Express, is there another version?) lately. One thing to keep in mind is that it's for .Net 2.0 and from the info I've found on the web, you can't make it only play with 1.0 or 1.1. Not a big deal but worth noting if you're building something for a 1.0/1.1 envir

Re: ASP.Net book for CF programmer

2006-05-02 Thread Aaron Rouse
You probably could use it with CF 4.5.2 but that is just a guess, what I would figure is it would mean creating XML responses and probably not be worth the trouble since could more than likely use some other "free" language more with ease. I said Flex 2 because of the comments like "visual design

RE: ASP.Net book for CF programmer

2006-05-02 Thread Rick Faircloth
>From your perspective, and since I don't know a lot about Flex, what would you say are the reasons Flex 2 would be the future I should pursue? What will Flex 2 provide? Rich Internet Application development? Or something beyond that? I know I could read it on the Adobe/MM website, but I'd like

AES Encryption vs. Hash

2006-05-02 Thread Doug Arthur
I want to get people's input on AES Encryption vs. Hashing a value. I know that AES is the only government approved encryption method as it's the strongest. But what are some feelings about using Hash instead? My new job I started uses nothing but Hash, and I've always been a custom to AES Encrypti

Re: ASP.Net book for CF programmer

2006-05-02 Thread Aaron Rouse
If I was in your shoes I would be learning something like Flex 2 and then figuring out what language you want to use to serve data to/from it could be CFM or whatever you pick. On 5/2/06, Rick Faircloth <[EMAIL PROTECTED]> wrote: > > >Well then, if you're not using new functionality, why move to a

Re: OT: Tracking clicks

2006-05-02 Thread James Holmes
Use as the link a CF page that sends the user to the external site e.g.: http://www.somesite.com/";> In linktracker.cfm, record the click and then cflocation to URL.Link (http://www.somesite.com/ in this case). You might need to URLEncodedFormat() the link to make sure it doesn't mess things up.

OT: Tracking clicks

2006-05-02 Thread Will Tomlinson
What's the best way to track a click when the user is on my site, then clicks an ad that sends him to another site. Thanks, Will ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239353 Archives: http://www.houseoffus

Maclipse and CFEclips tags

2006-05-02 Thread Stas Newdel
I downloaded the Maclipse build but it seems incompatible with the BER release of CF Eclipse tags. I tried installing the regular Eclipse build but that's giving me an error on launch prompting me to look in the log file the contents of which are Greek to me. I am running on Macbook Pro, l

Re: CFMX 7.01 and Windows XP sp 2 issue

2006-05-02 Thread Victor Moore
It's IIS and it's hapenning only on this new machine. Thx On 5/2/06, Mike Kear <[EMAIL PROTECTED]> wrote: > > What web server are you using? I recently moved to Apache and found > all my sessions were being lost too. I was getting a new session ID > with every page view and therefore any login

Re: CFMX 7.01 and Windows XP sp 2 issue

2006-05-02 Thread Mike Kear
What web server are you using? I recently moved to Apache and found all my sessions were being lost too. I was getting a new session ID with every page view and therefore any logins were lost as were all sessoin variables. That prompted me to start tidying up my Application.cfc files and there

Re: CFMX 7.01 and Windows XP sp 2 issue

2006-05-02 Thread Victor Moore
It's working fine in Firefox. Thx On 5/2/06, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > Could it be that Firefox cached your application page and so is giving you > a > "false positive", giving the impression that session variables are still > set? Try clearing your cache in Firefox and see if

Re: CFMX 7.01 and Windows XP sp 2 issue

2006-05-02 Thread Josh Nathanson
Could it be that Firefox cached your application page and so is giving you a "false positive", giving the impression that session variables are still set? Try clearing your cache in Firefox and see if it still appears to hold the session variables. If not then you know something is up with the

CFMX 7.01 and Windows XP sp 2 issue

2006-05-02 Thread Victor Moore
Hi, It's been one of those days. Anyway, here is the scoop: New development machine with XP Professional sp 2. Installed CFMX 7, updater and hot fix 1 (cannot put 2 because it's not recommended for Flex 2 development) Everything works fine, then trying to access an application (with IE) that is us

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Jeff Horne
Thanks again, Dave. Turns out the directory had permissions set to run executables. I turned it off and the option to save comes up fine. Much thanks. Jeff ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239346 Ar

RE: Regex in CFInput/javascript syntax

2006-05-02 Thread Ian Skinner
Probably the same thing as was vexing Ken earlier, you gotta have the CFIDE/scripts directory available - Well, no... It is the same server that was vexing Ken earlier. We created the correct mapping and got the existing validation to work. Then we added a new regex validation on a field and

Re: Regex in CFInput/javascript syntax

2006-05-02 Thread Josh Nathanson
Probably the same thing as was vexing Ken earlier, you gotta have the CFIDE/scripts directory available - If you're on a shared host, and you can't set up a mapping, you can just copy the "scripts" directory from your local box at yourserverroot/CFIDE/scripts into your web server root directory

RE: ASP.Net book for CF programmer

2006-05-02 Thread Rick Faircloth
>Well then, if you're not using new functionality, why move to anything else >at all? Why not stick with CF 4.5.1 SP2? That's pretty much what I've done...4.5 is the first and only version of CF I've ever owned and it's done everything I've needed, and more than most clients could even fathom it c

Re: "Premium" Hosting suggestions

2006-05-02 Thread Stas Newdel
Thank you, Ken. On May 2, 2006, at 11:47 AM, Ken Ferguson wrote: > Here's yet another one with CF included in the price should you > need that: > http://www.cfdynamics.com/dedicated/dedicatedbasic.cfm > > --Ferg > > Ken Ferguson wrote: >> If that's your budget then why not get a dedicated serve

RE: Regex in CFInput/javascript syntax

2006-05-02 Thread Ian Skinner
Thanks, I got it to work on my workstation. So now I got to see why the web server doesn't seam to want to play nicely with it. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - "C code. C

RE: Regex in CFInput/javascript syntax

2006-05-02 Thread Munson, Jacob
No, it should work as is. But you have to use these two parameters: validate = "regex" pattern = "^[A-Z]{1,2}[0-9]{5,11}$" > -Original Message- > From: Ian Skinner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 02, 2006 4:02 PM > > Is there something I need to do to this regex string

Regex in CFInput/javascript syntax

2006-05-02 Thread Ian Skinner
Is there something I need to do to this regex string ^[A-Z]{1,2}[0-9]{5,11}$ to use it in a cfinput/javascript regular expression regex validation? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | ---

RE: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Dave Watts
> I've changed my code to the text below. > > arguments="d:\inetpub\wwwroot\file_downloads > d:\inetpub\wwwroot\programs\download\" timeOut="600" > outputFile = "d:\temp\output.txt"> > > http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at ou

RE: Connecting to CF locally w/o internet connection

2006-05-02 Thread Munson, Jacob
> http://support.microsoft.com/kb/839013 > > Or, buy XP Professional. Cool, thanks Dave. - This transmission may contain information that is privileged, confidential and/or exempt from disclosure under applicable law. If you are not the intended recipient, you are hereby notified

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Jeff Horne
Thanks Dave. I'm getting there. We are on CF5. I've changed my code to the text below. http://www.houseoffusion.com/lists.cfm/link=i:4:239336 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.hou

Re: (announcement) Beta release of next JRun

2006-05-02 Thread Denny Valliant
> Yes. But the real question is, what market do you mean? JRun is quite > competitive in the low end of the J2EE application server market. It > doesn't > compete directly with WebSphere or WebLogic, and it isn't really meant to. > > It is also bundled with many, many products, and not just Adobe p

Re: cfschedule delete work around??

2006-05-02 Thread Denny Valliant
I've had pretty good luck with scheduled tasks. I'm not adding or removing them very often, but they've generally run when I wanted them to, etc.. :den On 5/2/06, Ken Ferguson <[EMAIL PROTECTED]> wrote: > > After several attempts to rely upon scheduled tasks in CF blew up in my > face, I realized

Re: More of a JS Question/Forms

2006-05-02 Thread Denny Valliant
On 5/2/06, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > > Denny Valliant said: > > The only trouble with JavaScript is: what if it's turned off? > > Then you fall back to server-side validation. Indeed, if you remembered to do it. I've found lots of places where their only validation is throug

RE: cfinput validation

2006-05-02 Thread Ken Ketsdever
I didn't have a mapping to the CFIDE. I also tested the validate attribute with Range, and then with Integer both worked once I had the mapping set properly. Thank you Ken Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may

Re: OT: Confirm email

2006-05-02 Thread Denny Valliant
On 5/2/06, Ken Ketsdever <[EMAIL PROTECTED]> wrote: > > Doesn't everyone just > copy and paste into the second email field? That's what I do. > > Doesn't everyone just > copy and paste into the second email field? That's what I do. > > Ditto He he he. So I guess y'all just copy and paste passwor

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> I hear what you're saying about the programming > part...however, most of the sites I build are fairly > simple...add, update, delete, report. > > Once I've grasped how to code that in ASP.NET, I can do 90% > of the work I do. And according to the ASP.NET Programming > for Cold Fusion Progr

Re: cfinput validation

2006-05-02 Thread Josh Nathanson
Hm, that works as predicted on my box. Make sure you have tags around the fields and also make sure your cfform.js file is in the /CFIDE/scripts directory in your site root. Also you need to be on at least CFMX 6.1 I think. -- Josh - Original Message - From: "Ken Ketsdever" <[EM

RE: cfinput validation

2006-05-02 Thread Dave Watts
> I would like to ensure the input value is an integer between > 0 - 800. > > What I have tried has either failed or I am expecting a > different result that what is being produced. I can enter > 900, move on to the next field, fill it out and submit the > form with no apparent failure, or a

RE: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Dave Watts
> I have downloaded the program and created this cfexecute. > > arguments="d:\file_downloads > d:\inetpub\wwwroot\programs\download\" timeOut="600"> > > I have done this but my link looks like > > file:///d:/file_downloads/42100/42100373.exe in the status bar > > and the text below appears b

cfinput validation

2006-05-02 Thread Ken Ketsdever
I would like to ensure the input value is an integer between 0 - 800. What I have tried has either failed or I am expecting a different result that what is being produced. I can enter 900, move on to the next field, fill it out and submit the form with no apparent failure, or action of anykind.

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> Now that is not what I said is it. That is certainly the implication of your statement. > I am simply saying, some people will do and do do it anyway. > You can say it's wrong till the cows come come, but that wont > stop people doing it. So why did you mention it in the first place? Dave Wa

RE: ASP.Net book for CF programmer

2006-05-02 Thread Snake
Now that is not what I said is it. I am simply saying, some people will do and do do it anyway. You can say it's wrong till the cows come come, but that wont stop people doing it. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 19:06 To: CF-Talk Subject: R

RE: ASP.Net book for CF programmer

2006-05-02 Thread Rick Faircloth
I hear what you're saying about the programming part...however, most of the sites I build are fairly simple...add, update, delete, report. Once I've grasped how to code that in ASP.NET, I can do 90% of the work I do. And according to the ASP.NET Programming for Cold Fusion Programmers, I can do a

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Jeff Horne
<< Use CFEXECUTE to run the junction.exe utility available from http://www.sysinternals.com/. >> I have downloaded the program and created this cfexecute. I have done this but my link looks like file:///d:/file_downloads/42100/42100373.exe in the status bar and the text below appears before

RE: ASP.Net book for CF programmer

2006-05-02 Thread Rick Faircloth
I agree with Matthew, it's nice to see the ASP.NET coding compared to CF...although it's still hard to grasp the ASP.NET coding because it takes a different approach to data interaction and, therefore, requires much more coding and understanding than a simple CF query. I'd probably understand it a

RE: Metasploit Framework

2006-05-02 Thread Kevin Aebig
I use an old P3 as a testing machine for new tools and utilities. You might want to consider throwing together an extra machine that you can use to practice or test on. Cheers, !k -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: May 2, 2006 1:15 PM To: CF-Talk Subject: R

RE: Connecting to CF locally w/o internet connection

2006-05-02 Thread Dave Watts
> Well, I'm not sure what happened, but it didn't work for me. > I had the CF server up and running, and my app was running > fine. As soon as I got to a location where no Internet > access was available (and thus no network connection), I > couldn't access the CF site. The CF service ran fi

RE: Connecting to CF locally w/o internet connection

2006-05-02 Thread Munson, Jacob
> If your network adapter is on, you should be able to run CF > locally without > a network connection. This used to be a problem, with earlier > versions of > Windows; you'd install the IP Loopback Adapter to allow localhost > connectivity in that case. Well, I'm not sure what happened, but it

RE: ASP.Net book for CF programmer

2006-05-02 Thread Adrian Lynch
Was just about to sign up when I spotted: "Offer good in the United States and Canada only through June 30, 2006, while supplies last." :O( -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: 01 May 2006 17:10 To: CF-Talk Subject: Re: ASP.Net book for CF programmer W

Re: MS-SQL connection string

2006-05-02 Thread Victor Moore
Hi Dave, It's all fine now. Using the DNS-less connection I was able to create the db and using the Admin API to create the datasource programmaticaly. Two things that I have found: after the db is created the script throws an error saying that no result set was return. I had to put in in a try/c

Re: Metasploit Framework

2006-05-02 Thread Phill B
hahhahaahaha good point On 5/2/06, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Phill B said: > > Has any one used this or know anything about it? > > (www.metasploit.com) I would like to play around with it but I want > > to have some opinions on it first. > > Only use it when you have written

RE: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Dave Watts
> Would you be able to site an example of how to do this in Windows? Use CFEXECUTE to run the junction.exe utility available from http://www.sysinternals.com/. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Jeff Horne
<< One approach I've used successfully, is to create symbolic links to the files (in Unix) or their directories (in Windows), then delete those after a set period. >> Dave, Would you be able to site an example of how to do this in Windows? Thanks.

Re: "Premium" Hosting suggestions

2006-05-02 Thread Ken Ferguson
Here's yet another one with CF included in the price should you need that: http://www.cfdynamics.com/dedicated/dedicatedbasic.cfm --Ferg Ken Ferguson wrote: > If that's your budget then why not get a dedicated server? > > http://www.crystaltech.com/dedicated-windows.aspx > http://www.servermatrix

RE: Including the contents of a webpage in an email with cfmail

2006-05-02 Thread Andy Matthews
I'll take a look at that too. Thanks. -Original Message- From: mark [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 1:28 PM To: CF-Talk Subject: RE: Including the contents of a webpage in an email with cfmail Hey there, I use PLUM which is a proceedural framework for coldfusion,

RE: Including the contents of a webpage in an email with cfmail

2006-05-02 Thread mark
If you want to see how it works, go to www.mdprofinish.com/general/aboutus.cfm and click on the Email This Page on the left nav bar. When you click the link, the form is kind of vague in that it says it will email a link to the page, which it does, but it also emails the page itself in HTML format

Re: "Premium" Hosting suggestions

2006-05-02 Thread Ken Ferguson
If that's your budget then why not get a dedicated server? http://www.crystaltech.com/dedicated-windows.aspx http://www.servermatrix.com/products/super/ss36Details.html http://www.enterhost.com/hosting/dedicated/cfserver1.cfm --Ferg Stas Newdel wrote: > I need something more than a $50/month pac

Re: How do I hate thee, cfdocument? Let me count the ways...or, using 1 piece of code to either stream or write.

2006-05-02 Thread Pete Ruckelshaus
Thanks Barney, that's a great idea. I'll try that and cffile. On 5/2/06, Barney Boisvert <[EMAIL PROTECTED]> wrote: > Always write it to a file (using a temp file if you want to stream > it), and then optionally use a CFCONTENT to stream it? Hardly elegant > or performant, but it will get the jo

RE: Including the contents of a webpage in an email with cfmail

2006-05-02 Thread mark
Hey there, I use PLUM which is a proceedural framework for coldfusion, as opposed to the many OOP frameworks out there. Anyway, one of the pages PLUM auto generates with each app (which of course you can leave out if you wish) is emailThisPage.cfm. I didn't include the form page or the top of th

"Premium" Hosting suggestions

2006-05-02 Thread Stas Newdel
I need something more than a $50/month package will provide, but less than a complete dedicated/collocated solution. I've tried VPS from Hosting.com and it's a dog. YMMV. I need freedom to add Access and SQL databases on my own without having to send an email to support. My budget is up t

RE: How do I hate thee, cfdocument? Let me count the ways...or, using 1 piece of code to either stream or write.

2006-05-02 Thread Peterson, Chris
I don't think so, when your page gets compiled I always get errors trying to use with . When I have had to do this I just encapsulate my document writing into a .cfc, and call 2 different methods. Ie writePdfToBrowser, or writePdfToFile. Then just your actual document output inside the differen

Re: How do I hate thee, cfdocument? Let me count the ways...or, using 1 piece of code to either stream or write.

2006-05-02 Thread Barney Boisvert
Always write it to a file (using a temp file if you want to stream it), and then optionally use a CFCONTENT to stream it? Hardly elegant or performant, but it will get the job done. cheers, barneyb On 5/2/06, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: > I have such a love/hate relationship with

Re: Low CC processing recommendations

2006-05-02 Thread Larry Lyons
This was discussed a few days ago, http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:45716 The upshot was that merchant.com was pretty good (http://www.merchant.com/smallbusiness). On their site they have a direct comparison to paypal. Merchant.com looked cheaper. http://www

How do I hate thee, cfdocument? Let me count the ways...or, using 1 piece of code to either stream or write.

2006-05-02 Thread Pete Ruckelshaus
I have such a love/hate relationship with cfdocument, it's pathetic. I'm writing an app. In my app I generate a PDF using the cfdocument tag. Most of the time, I just want the PDF streamed to the browser, so I don't include the filename attribute and all is well. However, using the same code to

RE: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Dave Watts
> I am using cfcontent to securely download files so the user > can not see the path the file is stored in. With small files > this is fine, but with large 100mb+ files, it is much, much > slower than a straight html anchor tag. Does anyone have a > fast alternative to using cfheader/cfconten

RE: Including the contents of a webpage in an email with cfmail

2006-05-02 Thread Andy Matthews
Sure thing. Just use cfhttp on the page in question. Save it to a variable then output that variable inside cfmail. Just remember that most email clients don't fully support CSS. It's probably going to be better all around to use a seperate page with inline CSS. -Original Message- From:

RE: Connecting to CF locally w/o internet connection

2006-05-02 Thread Dave Watts
> Do you have a network connection? I've tried to run the CF > server on a laptop when I had no network connection and it > wouldn't work. I assumed this is because I didn't have an IP > address assigned to my network card, so the CF server didn't > know what to run on. I think the same prob

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> Yes well at the end of the day, unless someone from MS visits > every subscriber, they dunno what your using it for do they. > And how many end users can't afford the software off the > shelf anyway and use pirate copies. > So paying for action pack is certainly better than doing > that, at l

RE: Connecting to CF locally w/o internet connection

2006-05-02 Thread Munson, Jacob
Do you have a network connection? I've tried to run the CF server on a laptop when I had no network connection and it wouldn't work. I assumed this is because I didn't have an IP address assigned to my network card, so the CF server didn't know what to run on. I think the same problem would exis

Including the contents of a webpage in an email with cfmail

2006-05-02 Thread Smith, Daron [PA]
Is it possible to include the actual HTML from a CF web page in a cfmail? We have a web content management system and it would be great if our messages used the exact same stylesheets as our web pages and it would make the process for end users much easier as they only need to learn one process fo

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Zaphod Beeblebrox
you could always write a copy of the file to a temp directory and then have the anchor point to it. If need be, for security, you could always name the file with UUID then clean up the directory at night or after some set time period On 5/2/06, Jeff Horne <[EMAIL PROTECTED]> wrote: > > I am using

Re: ASP.Net book for CF programmer

2006-05-02 Thread Aaron Rouse
Yeah but that helps someone like Rick none who keeps mentioning the added cost of things for his clients. On 5/2/06, Snake <[EMAIL PROTECTED]> wrote: > > u can install it all on your dev/testing servers and office workstations, > presuming they are something to do with development. > > > -Orig

faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Jeff Horne
I am using cfcontent to securely download files so the user can not see the path the file is stored in. With small files this is fine, but with large 100mb+ files, it is much, much slower than a straight html anchor tag. Does anyone have a fast alternative to using cfheader/cfcontent for large

RE: ASP.Net book for CF programmer

2006-05-02 Thread Snake
Yes well at the end of the day, unless someone from MS visits every subscriber, they dunno what your using it for do they. And how many end users can't afford the software off the shelf anyway and use pirate copies. So paying for action pack is certainly better than doing that, at least you have le

RE: ASP.Net book for CF programmer

2006-05-02 Thread Snake
u can install it all on your dev/testing servers and office workstations, presuming they are something to do with development. -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 17:46 To: CF-Talk Subject: Re: ASP.Net book for CF programmer I thought the lic

RE: ASP.Net book for CF programmer

2006-05-02 Thread Plunkett, Matthew
Adam, I've been watching the recorded webcasts you did at: http://www.learn2asp.net/CF/Campaign.aspx They are amazing. Thanks very much for doing this for the community. I'm sure your training courses are also great, but they're not in the cards for me at the moment. -Original Message

Re: application slowed after migration from CF 5 to CF 7

2006-05-02 Thread Michael Dinowitz
Might be code logic, might be outside tags (if you have CFX tags), might be a bad admin setup. Have you moded the settings? Change the JVM or concurrent processes? There were a few great threads about optimizing CF on the list. I'll try to dig them up. >Hello. > > > >I have just migrated an ap

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> Not quite sure I understand your response...it seems like > we're saying the same thing... > > Scenario 1: > > Server Hardware > Windows Server OS > Cold Fusion Server > > Build app...wildly successful...setup more servers as above, > paying for server hardware, server OS, and CF Server. > i

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> I thought the licensing for the action pack did not allow > people to run the software beyond evaluation/demo use. No, actually, it does allow production use for the licensed company (but not for their clients, etc). Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> An SPLA make sMicrosoft products more affordable. "Free" is cheaper than "cheap". > And for local office/dev environment, the microsoft action > pack is unbeatable. All the software u need for only £299 yearly Yes, but most end users are not eligible for MS Action Pack. Sure, anyone can sign

Re: ASP.Net book for CF programmer

2006-05-02 Thread Aaron Rouse
I thought the licensing for the action pack did not allow people to run the software beyond evaluation/demo use. On 5/2/06, Snake <[EMAIL PROTECTED]> wrote: > > An SPLA make sMicrosoft products more affordable. > And for local office/dev environment, the microsoft action pack is > unbeatable. All

Re: application slowed after migration from CF 5 to CF 7

2006-05-02 Thread Ali Awan
Martin, Sorry I don't have any suggestions, but I just wanted to ask you that if you find out what was causing the problem. I would be very interested in reading about what the cause was and how you were able to resolve the issues. Thanks, Ali ~

Re: CFFile Sharing Violation

2006-05-02 Thread Ali Awan
Dave, The joys of working on Legacy CF 5 code. I figured that was the solution, but I just needed some suppporting arguments. cheers, >Why not do all your file writing after the fact, instead of within your >loop, etc? > >Dave Watts, CTO, Fig Leaf Software >http://www.figleaf.com/ ~

RE: ASP.Net book for CF programmer

2006-05-02 Thread Snake
An SPLA make sMicrosoft products more affordable. And for local office/dev environment, the microsoft action pack is unbeatable. All the software u need for only £299 yearly Russ -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 17:16 To: CF-Talk Subject: R

RE: ASP.Net book for CF programmer

2006-05-02 Thread Rick Faircloth
Hi, Dave... Not quite sure I understand your response...it seems like we're saying the same thing... Scenario 1: Server Hardware Windows Server OS Cold Fusion Server Build app...wildly successful...setup more servers as above, paying for server hardware, server OS, and CF Server. i.e., server h

Re: Metasploit Framework

2006-05-02 Thread Jochem van Dieten
Phill B said: > Has any one used this or know anything about it? > (www.metasploit.com) I would like to play around with it but I want > to have some opinions on it first. Only use it when you have written permission to break whatever you are using it against :) Jochem ~~~

RE: ASP.Net book for CF programmer

2006-05-02 Thread Dave Watts
> But you've still got to have those servers (hardware and > software) if you're Cold Fusion application becomes wildly > successful, on top of the money you have to spend on an MS > solution. Yes, but hardware and free software is cheaper than hardware and non-free software. In addition, you c

RE: MS-SQL connection string

2006-05-02 Thread Dave Watts
> yes, I know about the Admin API, but I need to physically > create the database and then create the datasource using the > Admin API. If you have a database login with the appropriate permissions, you could create a datasource pointing to the SQL Server master database, run your creation scrip

RE: Lost my CFEclipse snippets

2006-05-02 Thread Barthle, Robert \(Contractor\)
Thank you! That worked great! thanks -r _ Rob Barthle Contractor - Sr. Software Developer [EMAIL PROTECTED] 202-245-6484 -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 12:05 PM To: CF-Talk Subject:

RE: (announcement) Beta release of next JRun

2006-05-02 Thread Dave Watts
> Does anyone really see JRun as a viable contender in the market? Yes. But the real question is, what market do you mean? JRun is quite competitive in the low end of the J2EE application server market. It doesn't compete directly with WebSphere or WebLogic, and it isn't really meant to. It is al

RE: Metasploit Framework

2006-05-02 Thread Dave Watts
> Has any one used this or know anything about it? > (www.metasploit.com) I would like to play around with it but > I want to have some opinions on it first. Yes. It's pretty interesting, but a little raw. It can be a bit more intrusive than your typical Nessus usage. Dave Watts, CTO, Fig Leaf

RE: Lost my CFEclipse snippets

2006-05-02 Thread Sandra Clark
I've had this happen. Right click on your project, and in the CFEclipse tab, make sure the location for snippets does in fact refer to the directory the snippets are in. Close the snippets view by clickin on the x. Reopen it via windows/Show View. Your snippets should reappear. Sandra Clark

RE: js browser detection library

2006-05-02 Thread Hugo Ahlenius
| This looked like the best, but it is abandonded: | http://www.bgsu.edu/scripts/browser.js.html Sorry pasted a wrong link, the above wasn't anything too interesting, this was what I had in mind (extensive script, but not updated recently): http://www.dithered.com/javascript/browser_detect/index.h

RE: js browser detection library

2006-05-02 Thread Steve Brownlee
Give BrowserHawk a try. We use it in our application to detect Javascript, Flash, and OS/Browser versions. http://www.cyscape.com/Default.aspx?bhjs=0 -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 11:54 AM To: CF-Talk Subject: OT: js browser

OT: js browser detection library

2006-05-02 Thread Hugo Ahlenius
Hi, I was just looking for a javscript browser detection library. Yes, I know, one should do object detection foremost, but for special needs this is good. I found a lot of libraries out there, but they seem to all have been abandonded a couple of years ago (when the browser-wars got stale, when

RE: Metasploit Framework

2006-05-02 Thread Kevin Aebig
I use it with security auditing. Please be advised that there are many dangerous packages included and you can do a lot of damage with it, depending what types of extras you use with it. Cheers, !k -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: May 2, 2006 8:52 AM To:

Re: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread jonese
thanks snake that's exactly what i was looking for :) jonese On 5/2/06, Snake <[EMAIL PROTECTED]> wrote: > > JRUN will use at least 100mb off the bat, how much each site will ad dto > that depends how much it uses. > If the site gets low tarffic and does not store any memory resident > variables

Lost my CFEclipse snippets

2006-05-02 Thread Barthle, Robert \(Contractor\)
Sometime in the last couple of weeks, I lost the ability to use my snippets in CFEclipse. I'm using Eclipse 3.1.2 and CFEclipse 1.2.0. Here's the weird parts of this: 1. It's happened on both my home and work PC's seemingly at around the same time. 2. The snippet files are in the d

RE: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Snake
JRUN will use at least 100mb off the bat, how much each site will ad dto that depends how much it uses. If the site gets low tarffic and does not store any memory resident variables then it will add little, but if it is a busy site and/or stores everything in session/application scope and does a lo

RE: cfschedule delete work around??

2006-05-02 Thread Snake
Presuming it's his own server and he has access to do that. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 15:52 To: CF-Talk Subject: RE: cfschedule delete work around?? Or you could just use the AdminAPI, I thought you could plug into that directly

RE: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Mark A Kruger
This memory limit of 2 gig is related to the 1.4 JVM. We've found about 1.4gigs is the practical limit. What's everyone elses experience? I understand that 1.5 removes this heap limitation. -mark -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday

Low CC processing recommendations

2006-05-02 Thread Steve Kahn
Anyone have a low rate way of receiving credit card payments, Paypal's around 2.9%? Thanks -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.5.1/328 - Release Date: 5/1/2006 ~~~

Re: Taking the CF exam tomorrow...

2006-05-02 Thread Crow T. Robot
Good luck Andy. Let us know how it goes. Andy Matthews wrote: > So I'll be taking the CF exam tomorrow. I've read through the CF study guide > book several times and taken tons of tests using the Exam-Buster software. > > I think I'm about as ready as I'll ever be. I think I'll have no problem a

RE: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Robertson-Ravo, Neil (RX)
There is no 'typical'.. your app will use as much as it needs to ;-) up to a limit of 2GB -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: 02 May 2006 15:59 To: CF-Talk Subject: Typical JRUN Memory Usage CF 7 Integrated JRUN We're running CF7 Enterprise as in in

RE: (announcement) Beta release of next JRun

2006-05-02 Thread Snake
If anyone would like to open up and substantiate the claim then that is up to them, they are on this list. But I'm not going to start pointing fingers because people trouble makers like Jenny will just use it as another ropportunity to start flaming again. Russ -Original Message- From: Jo

Re: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Ryan Guill
I would definately say "it depends" ;) It would depend on your settings in your jrun and cf, and the types of things the applications are doing. I would say close to a gig of memory usage (if you have it) would not be uncalled for if even one of your sites was doing any heavy lifting. On 5/2/06,

  1   2   >