RE: Verisign/Paypal Down

2007-02-20 Thread Leon Oosterwijk
Eric, We are also a Payflow Pro customer and received much the same treatment. I tried all the numbers I could find on their web site but no one answered or knew what they were talking about. This was a very bad experience for us. I believe we might soon switch away from them as our vendor. Leon

RE: CFMX7 Java version compatibility

2007-01-24 Thread Leon Oosterwijk
Kevin, I believe flash remoting doesn't work with JVM 1.5. We just had to downgrade because of this. Leon > -Original Message- > From: Kevin Kreuter [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 24, 2007 7:06 AM > To: CF-Talk > Subject: CFMX7 Java version compatibility > > I

RE: OT: Anyone using scan alert (Hacker safe) services?

2006-11-09 Thread Leon Oosterwijk
All, I have used ScanAlert Hackersafe for several months this summer. I found their scanning was much more in-depth than Nessus. They seem to do a lot more, some of it even seemed like there was a human on the other end (for some of the things). Their web-interface is a mess though. It's horrible

ColdFusion and Maven

2006-10-30 Thread Leon Oosterwijk
All, We are interested in formalizing our deployment process from development/staging/(pre-release)/production. I know Maven is really popular for this in the Java world and was wondering if anyone had experience using Maven to deploy ColdFusion applications. We have a lot of ColdFusion and a go

RE: Can a Java program use a CF data source?

2006-09-27 Thread Leon Oosterwijk
I've done this. It is pretty easy. Here is the code: import coldfusion.server.*; coldfusion.server.ServiceFactory.getDataSourceService().getDatasource(da tasourcename).getConnection(); Just remember to close up the connection when you're done. :) Leon > -Original Message- > From

RE: upgradeing jar file in coldfusion server

2006-09-13 Thread Leon Oosterwijk
. (documented linux jvm specific bug) Leon > -Original Message- > From: Paul Hastings [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 12, 2006 8:08 PM > To: CF-Talk > Subject: Re: upgradeing jar file in coldfusion server > > Leon Oosterwijk wrote: > > Event

RE: upgradeing jar file in coldfusion server

2006-09-12 Thread Leon Oosterwijk
Eventhough Adobe doesn't support CFMX on 1.5 it does work, with some minor inconveniences. Leon > -Original Message- > From: krish P [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 12, 2006 9:08 AM > To: CF-Talk > Subject: Re: upgradeing jar file in coldfusion server > > >Dave W

RE: Selenium Testing with CF (?)

2006-09-06 Thread Leon Oosterwijk
Michael, We use Selenium in-house for our testing. It has saved us a lot of time and is a great tool. Highly Reccomended. We plan to wire up a bunch of selenium test cases to run at night on our HEAD code branch. Leon > -Original Message- > From: Michael E. Carluen [mailto:[EMAIL PRO

RE: Adding encryption algorithm to MX

2006-09-01 Thread Leon Oosterwijk
Doug, Before we switched to MX7 we needed RSA, so we rolled our own wrapper around the Bouncy Castle Encryption library. Email me off-list if you're interested. Leon -Original Message- From: Doug Boude (rhymes with 'loud') [mailto:[EMAIL PROTECTED] Sent: Thursday, August 31, 2006 12

RE: Problems with float

2006-08-14 Thread Leon Oosterwijk
Are you storing the data in a float field in the db? Floats are inherently inaccurate. You should probably use the decimal(x,y) data type (if you're using SQL server). Leon -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: Monday, August 14, 2006 7:11 AM To: CF-Talk

RE: ColdFusion and Google Checkout

2006-07-12 Thread Leon Oosterwijk
We'be been running ColdFusion CFMX 7 with Java 1.5 for over a year now. It runs very stable and the only issue I've found is the verity admin doesn't work. Leon -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 11:40 PM To: CF-Talk Subject:

RE: Select * in SQL

2006-07-11 Thread Leon Oosterwijk
All, Let me be the devil's advocate and say that I prefer * despite all the arguments made against it. To me, hand-coding the column names before it becomes evident that this is needed for performance reasons amounts to premature optimization. Most of the time, especially early on in development,

ColdFusion DataSources in JNDI?

2006-07-03 Thread Leon Oosterwijk
All, I've run into a situation where I have some java code that wants to access a datasource as a jndi lookup. The java code will be invoked inside a coldFusion server. I know that coldFusion uses jdbc for its underlying data-access but i don't know if it uses jndi to store those datasources. Do

RE: Capturing executed SQL in CF

2006-06-08 Thread Leon Oosterwijk
Have you tried using profiler? That way you don't need to change a line of code. Leon -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 07, 2006 11:13 AM To: CF-Talk Subject: RE: Capturing executed SQL in CF ... #BoyGeorge.sql# --

RE: accessing cfmail functionality from java

2006-05-17 Thread Leon Oosterwijk
Dave, CFMAIL uses JavaMail but it spools requests, causing the calling thread to not block. This is important because a transient mail delivery failure/delay will not impact the performance of the calling page. I managed to access the cfmail functionality using the coldfusion.server.ServiceFactor

accessing cfmail functionality from java

2006-05-16 Thread Leon Oosterwijk
All, I have come across the need to do a from a java class. We have some thirdparty software that runs on our ColdFusion server that uses the JavaMail system. It turns out JavaMail does a blocking call to send out mail. Does anyone know of an easy way to access the cfmail functionality from jav

RE: Does coldFusion just need a servlet engine

2006-05-01 Thread Leon Oosterwijk
not just a servlet container. To run CF you need the J2EE version. -Original Message- From: Leon Oosterwijk [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 9:06 AM To: CF-Talk Subject: Does coldFusion just need a servlet engine All, I came across this article the other day ( http

Does coldFusion just need a servlet engine

2006-05-01 Thread Leon Oosterwijk
All, I came across this article the other day ( http://www.adobe.com/support/coldfusion/j2ee/phase2-tomcat-deploy.html ) which talks about deploying the coldFusion server on Tomcat. It was my understanding that Tomcat is just a servlet/jsp processor and is not a full j2ee server. (ejb's etc.) I

RE: Get String Byte Size

2006-04-21 Thread Leon Oosterwijk
I thought java stored all strings as double-byte unicode. Is this incorrect? That would make it len(string) * 16 Leon -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 9:13 AM To: CF-Talk Subject: RE: Get String Byte Size Oops yes, / 8

RE: CF and 64 Bit Windows 2K3

2006-04-13 Thread Leon Oosterwijk
I currently run jRun4 with the latest updater and java 1.5 on Linux. All the articles out there talk about a windows based setup. Will I be able to run in full 64-bit mode under linux? Leon -Original Message- From: J W [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 3:55 PM To

RE: CF and 64 Bit Windows 2K3

2006-04-12 Thread Leon Oosterwijk
OK so let me get this right. CFMX7 doesn't run on 64-bit in 64-bit mode? I would assume this would be a function of the JVM, not of coldFusion. That's a real bummer. I was thinking about upgrading to 64-bit soon. =Leon -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED]

RE: Upgrading JVM to 1.4.2_09

2006-04-06 Thread Leon Oosterwijk
Scott, I'm not nathan, but we did upgrade to 1.5 and have been running that in production for a while now. It's very stable and after the latest jrun updates there aren't any issues that we have experienced. We do use xml functionality, but not really any web services so I can't tell you about th

RE: Fusion Reactor Question

2006-03-30 Thread Leon Oosterwijk
Rick, I believe, depending on the garbage collector you are using, that the JVM might not actually free the memory those threads used up untill it needs it. You could force a garbage collection and see if it clears up. to force GC: Leon -Original Message- From: Rick Root [mailto:

RE: JRun High Memory Usage on CFMX 7

2006-03-08 Thread Leon Oosterwijk
Ming Lu, I don't think there is an easy way to determine what application/site those session belong to. There are some things you can do to get a better idea of the memory load of a particular session. Here's a code snippet of something we've done on different sites to determine how much a certai

RE: JRUN and CF7 Enterprise

2006-03-07 Thread Leon Oosterwijk
Chad, My response to you would be similar to my response to Ming Lu. What I've found helpful is graphing my memory usage in mrtg or cacti. This way you can see when/if it crests and if this causes your jrun to die. If the session number is accurate that means you're using about 10 meg / session.

RE: JRun High Memory Usage on CFMX 7

2006-03-07 Thread Leon Oosterwijk
Ming Lu, If you find jrun running out of memory you have several options. A) Increase the maximum memory B) determine what is using so much memory and try to minimize it C) check if you have a memory leak and try to fix it The easiest is option A). You just have to edit your jvm.config file in t

Cold Fusion and Dynamic PDF Files

2001-10-24 Thread Leon Oosterwijk
All, I'm going to be working on a dynamic PDF File generator. Has anyone on the list had any experience with generating dynamic PDF files based on some user variables? Based on some user input I need to fill in the blanks in a PDF document and present this to the user. Sincerely,

Getting Information from a RecordSet

2001-10-05 Thread Leon Oosterwijk
All, I'm trying to find a way to get certain information from a recordset. I need to get a certain field from the last row of the result of a query. I know I can use #RecordCount# to get the number of rows, and I know the field name. So now I need a way to get to that information. I assume if wo

CFMAIL and Inline images

2001-10-05 Thread Leon Oosterwijk
All, I want to send an Email using Cfmail that has images inline. That means, I want someone to get an Email with an HTML format that has images in it that will be view-able in this E-mail even if the user if offline. I used to have this solution working in PERL. In which case I merely send a fl

RE: Strangest Problem in a long time

2001-10-04 Thread Leon Oosterwijk
For those interested I used the following code snippet which I added to FormUrl2Attributes.cfm Replace the strStructFieldName with your own variable names if you wish to adopt this code. Leon ~~ Get the m

RE: Strangest Problem in a long time

2001-10-04 Thread Leon Oosterwijk
ponse page, try something like this: In other words, convert the "safe" form field names into what your SQL needs to read. H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 > -Original Message- > From: Leon Oosterwijk

RE: Strangest Problem in a long time

2001-10-03 Thread Leon Oosterwijk
Dave, I'm using this in a large site where the SQL is generated based on the fieldname. fieldnameXXcolumnname is translated into: Insert into fieldname (columname) values ('#fieldnameXXcolumname#'); I will have to come up with an extra conversion step to change the name of these fields and t

RE: Strangest Problem in a long time

2001-10-03 Thread Leon Oosterwijk
will try to validate the field. Therefore the form field is in fact called "ticketXXdue" rather than "ticketXXdue_date". Just change the name of the field to not end with "_date" ("_required" or a few other reserved names). Darryl -Original Messag

Strangest Problem in a long time

2001-10-03 Thread Leon Oosterwijk
People, I've encountered the strangest problem in a long time using Cold Fusion. I've got a form which posts to a Cold fusion page. One of the form elements is: When I look at my Cold Fusion Debugging information on the page that is supposed to use this form: FIELDNAMES=TICKETXXTYPE_ID,TICKE

RE: SQL quicky

2001-10-03 Thread Leon Oosterwijk
I wrote a function once that does this. Please make changes accordingly, it's not rocket science. // // Formats a string of 10 digits to look like a // phone number with dashes (-) in the right // places //=

RE: Code Red backdoor triggered?

2001-09-18 Thread Leon Oosterwijk
Does anyone know what the Log signature for Apache is for this new virus/worm? Leon -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 10:54 AM To: CF-Talk Subject: RE: Code Red backdoor triggered? I use black ice on my server. THe co

RE: Left Outer Join Question

2001-09-14 Thread Leon Oosterwijk
Kamie, If you do have to break this out, you might want to concider using UNION ALL This was you could encapsulate your (big) query in either a view or a single Cold Fusion query. It works like this: SELECT count(*) AS num FROM a WHERE a.id = x UNION ALL Select count(*) AS num FROM b WHERE

RE: Cold Fusion 5 Install Failure

2001-09-04 Thread Leon Oosterwijk
Neil, Thanks for the help! I'll try this. Leon -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 10:17 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: Cold Fusion 5 Install Failure Leon, I have had this error on a Pro ins

Cold Fusion 5 Install Failure

2001-09-04 Thread Leon Oosterwijk
. anyway, i'm running IIS 5.0 with most of the ISAPI filters removed (code red). if anyone has any insight please help me out! Leon Oosterwijk ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Attributes Scope Variable List

2001-08-31 Thread Leon Oosterwijk
All, Is it possible to find out all the variables that are declared in a certain scope? I'm trying to loop over all the variables in the Attributes Scope and insert their contents in hidden form fields. I was wondering if anyone has accomplished something like this. Leon Oosterwijk ISD

RE: Access memo fields truncated in GROUP BY?

2001-08-23 Thread Leon Oosterwijk
Joseph, The problem here lies in Access/SQl Server not with Cold Fusion. If you wish to retrieve a big field with more than 255 chars you need to either specify this in at the end of your sql query or, if you are using complex query clauses as a separate query. I ran into this problem developing

RE: Remove spaces

2001-08-15 Thread Leon Oosterwijk
I know that both English and Dutch Zip codes are alpha-numeric and 6 characters long (minus spaces). -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 14, 2001 4:22 PM To: CF-Talk Subject: RE: Remove spaces Can't do that because the US zips are 5 di

Is CFLOCK Really Locking?

2001-08-14 Thread Leon Oosterwijk
es on the CFLOCK tag. Could Not Execute This page, Sorry Leon Oosterwijk ~~ Structure your ColdFusion code w

RE: Client Variables Storage Woes

2001-08-08 Thread Leon Oosterwijk
Cameron, I do not use client variables on this particular system. I was merely playing with the option. Understand that this is a Linux Server. I understand that the registry is a text file and means a performance hit as well as a security risk. however given the development state this server i

RE: Client Variables Storage Woes

2001-08-08 Thread Leon Oosterwijk
data store. this is to me more worriying than the performance/scalbility issues related to registry-stored client vars. Leon Oosterwijk -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 08, 2001 1:34 PM To: CF-Talk Subject: RE: Client Variables Storage

Client Variables Storage Woes

2001-08-08 Thread Leon Oosterwijk
All, Our Cold fusion 5 server has been experiencing significant problems with our client variables storage. We used a SQL Server datasource to store our Client Variables. Before we took our database offline we changed the administrator setting to store the client variables in the registry. Howev

RE: MS SQL DB to MS Access

2001-08-07 Thread Leon Oosterwijk
e SQL-capable client should work. Leon Oosterwijk ISDN-NET -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 3:09 PM To: CF-Talk Subject: RE: MS SQL DB to MS Access Well I have successfully "downsized" my SQL DB to Access.

RE: selecting top n records

2001-07-31 Thread Leon Oosterwijk
SELECT * FROm Table LIMIT 10; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 3:23 PM To: CF-Talk Subject: RE: selecting top n records First thought would be something like: SELECT TOP 10 COUNT(PRODUCTID) AS COUNTER, PRODUC

Calling Template File name lookup

2001-07-26 Thread Leon Oosterwijk
All, I'm trying to find a way to find the name of a calling template. say, for instance I've got the following page structure: index.cfm ---include--> somefile.cfm ---include--> anotherfile.cfm When I'm executing in the "anotherfile.cfm" is there a way to get the filename of the calling page?

Client Variables Datasource

2001-07-24 Thread Leon Oosterwijk
All, This morning my Cold Fusion server started acting very strange. I noticed that any page with a query that I pulled up was taking extremely long to load. most of the pages timed out or display a SQL Error. After some serious digging around it turned out that the problem was our Client Variab

RE: Is this list monitored?

2001-07-19 Thread Leon Oosterwijk
Sincerely, Leon Oosterwijk -Original Message- From: Matt Brown [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 8:48 AM To: CF-Talk Subject: Re: Is this list monitored? It is monitored but not moderated. The owner reads the posts or at least is aware of them all, but doesn'