Re: License Exception for JSP Pages - how to disallow

2007-04-30 Thread T Lux
Alex, Thanks for the response, but that option requires that the jsp extension exists with an associated Executable Path in IIS. Earlier in this thread, to get around JSP pages associated with JRun, the JSP extension was removed from IIS altogether. For kicks, I added it back, and still the

Re: License Exception for JSP Pages - how to disallow

2007-04-28 Thread T Lux
Which it doesnt, hence my question! Thanks, Tim Well I would presume that if there is no page for it to serve of that type is should indeed 404 you. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration

Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
To followup in hopes it may help someone else. We are running CF 7.0.2 Standard. Before, when someone hit a JSP page, they saw this error: 500 A License Exception has been thrown A License Exception has been thrown After following the docs at

Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
Yes, this is a licensed copy. I gather this I a licensed copy? As in not a dev server copy which has timed out? ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business. Upgrade now

CF 7.02 - Archiving Logs in TS Admin

2007-04-27 Thread T Lux
Ive seen this happen every now and then... and it is one of those now times at the moment. In TS Admin, I see that the mailsent.log (for example) is large. It is stored on our server at CFusionMX7\logs with all the other CF logs. In TS Admin, I click the archive button next to mailsent.log, and

Re: CF 7.02 - Archiving Logs in CF Admin

2007-04-27 Thread T Lux
Sorry.. I meant CF Admin as in the ColdFusion Administrator, not TS Admin. Duh. ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial.

Re: License Exception for JSP Pages - how to disallow

2007-04-27 Thread T Lux
In IIS 6, I went to the website in question. Right click, Properties, Home Directory tab. Configuration button. Selected the .jsp extension and removed it. I restarted IIS just for kicks. I called a JSP page on the website (which doesnt exist) and now I dont get the JRun Servlet error -- I

Re: CF 7.02 - Archiving Logs in CF Admin

2007-04-27 Thread T Lux
Apologies for the mistake in the original post. Ive seen this happen every now and then... and it is one of those now times at the moment. In CF Admin, I see that the mailsent.log (for example) is large. It is stored on our server at CFusionMX7\logs with all the other CF logs. In CF Admin, I

Re: A very unusual HTTP 500 Null Error

2007-04-26 Thread T Lux
that is screwing it up, but Firefox never seemed to give us the problem. Maybe Firefox resends malformed packets and IE doesnt? Not really sure. But this is definitely not a coding issue -- it is happening at the browser/network layer. *shrug* On Tuesday 24 Apr 2007, T Lux wrote: Can you intercept

License Exception for JSP Pages - how to disallow

2007-04-26 Thread T Lux
We are not running CF Enterprise, and do not serve JSP pages. But as you may know, whenever a JSP page is called on the server, we get A License Exception has been thrown errors in \CFusionMX7\runtime\logs\coldfusion-err.log. We are using IIS6--so I tried to not allow JSP pages at all but

Re: A very unusual HTTP 500 Null Error

2007-04-24 Thread T Lux
Did you ever find a solution/fix? We are running into the same thing... same version of CF. The form that is posting is relatively small -- but there is a textarea that we think is the problem. There really isnt a lot of data in the textarea -- maybe 400 characters. I get a 500 Null error and

Re: A very unusual HTTP 500 Null Error

2007-04-24 Thread T Lux
Did you ever find a solution/fix? We are running into the same thing... same version of CF. The form that is posting is relatively small -- but there is a textarea that we think is the problem. There really isnt a lot of data in the textarea -- maybe 400 characters. I get a 500 Null error and

Re: Using 404 error to automatically redirect...

2007-04-01 Thread T Lux
We do this with several of our apps. In IIS, we set the Custom Error for 404 to a cfm page (/404.cfm for example). That page looks at the URL's query_string and redirects as appropriate. Tim I have a website that has listings, but I want to make it so that people can type in a much smaller

Re: VAL() and IsValid()

2006-04-03 Thread T Lux
In that example, I knew the value was a number so I wouldnt val() it. But let's say it was a URL parameter. I always do something like VAL() around them when I expect a number -- and I noticed that running isValid(integer,myVal) returns NO on legitimate numbers that have been VAL()'d. It seems

Re: CFWDDX and Component Objects

2006-03-30 Thread T Lux
Dave/Dan: Thanks for your replies. Do you have any tips to create this serialize function? My CFC has some instantiation variables set (this.numberitems, this.cartType, etc) and those are really the only variables I want to serialize. I tried using CFWDDX with an input of #variables# and again

Re: The var scope in CFCs was(RE: CFWDDX and Component Objects)

2006-03-30 Thread T Lux
This has gotten a bit off topic, but it is an important discussion none the less. I want to see if I understand what the recommended practice is with regard to CFCs. I use CFC is two different ways. I have some CFCs that are really just a grouping of functions. For example, a common.cfc that