cfencrypt alternative that also works in visual basic 6 and visual basic .NET

2003-12-09 Thread ezine
I have been working on an encrypt/decrypt alternative that works in(code) both ColdFusion, Visual Basic .NET, and Visual Basic 6. This makes encrypted values available to applications outside of ColdFusion.For example, lets say that you have a ColdFusion application and have stored the user's

COM Object With Return Variables. How do I get the return variables out of the object?

2003-07-29 Thread Ezine
I'm dealing with COM objects more and more lately.. Here's my problem..The Com object(objOnHand) has a method with parameters that point to variables which we would later be able to use in Visual Basic.. VB Code Snippet --- objOnHand.AuthorizeEx

RE: track duplicate survey votes

2003-07-19 Thread Ezine
If you are looking for the closest thing to secure as you can without requiring a log-in..the do track both cookies and IP. There are two things with just tracking IP.. that you should know about anyway..I If you have a client on a network behind NAT or behind a firewall..and he

Encrypt/Decrypt Functions - Questions

2003-07-02 Thread Ezine
Hey there again I have been using the Encrypt/Decrypt functions to store encrypted values into the database. I have a Visual Basic application that I want to integrate with the user database.. however the database is encrypted with the Encrypt/Decrypt functions. I have the code for the VB

Solutions on 'Error parsing the Tag Library Descriptor'?

2003-06-08 Thread Ezine
This is an error that appears from time to time in the production environment. 'Error parsing the Tag Library Descriptor' -Seems to happen by client.- If the client gets the message once.. they will.. indefinitely. Might this one be fixed in updater 3? -Zine -Original

More Aggravation RE: Very unsatisfied with Macromedia's support attention ...

2003-06-06 Thread Ezine
I hate to aggravate this issue any further.. however.. Coldfusion on our dev server returns a 404 on every cfm page that is directly accessed(but not index pages for some reason.. Ex: http://www.domain.com/ works fine even if the index page is a .cfm file.. but

RE: Duplicate URL parameters?

2003-06-06 Thread Ezine
You can do a listfirst(formfield) to get the first one of the duplicated parameters. so if you have index.cfm?id=6id=5id=4 Coldfusion MX will treat it like,Id=6,5,4 and, listfirst will get the first item in the list, (6) Listfirst takes two parameters, listfirst(list,Delimiters).

RE: Problem with shopping cart (probably bad session coding)

2003-05-30 Thread Ezine
Hrm..perhaps this has to do with browser caching :).. You also may want to make sure that on a multiple product listing.. that the other products on the form are not also getting added to the user's cart. Also.. be careful when storing the price in a hidden field in the HTML form..a

RE: Removing bad emails from newsletter db

2003-05-29 Thread Ezine
Have the e-mail come back to an address you pick up with cfpop.. then parse the e-mail for keywords.. such as 'Undeliverable' and 'not deliver' and 'delivery failure' and 'quota'.. and 'transient delivery failure' etc... -Zine -Original Message- From: Python Python [mailto:[EMAIL

OT: Removing bad emails from newsletter db

2003-05-29 Thread Ezine
There is a piece of software out there called MAILLOOP which does that http://www.mailloop.com/ We used it on over 120,000. Be warned of popups on the site though.. -Zine -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 2:35 PM To: CF-Talk Subject:

RE: CFMX Webservices hangup

2003-03-24 Thread Ezine
Tyler, perhaps if you CFHTTP to it first as a test with a timeout of 10 seconds of something of that nature? And, if an error occurs, trap it with cftry and cfcatch.. and then display a message that states, Sorry the x service is not available now. Check back in a few hours. The CFHTTP

RE: ColdFusion MX Still crashing after updater. *pulling hair out*

2003-03-22 Thread Ezine
* -Original Message- From: Ezine [mailto:[EMAIL PROTECTED] Sent: Saturday, March 22, 2003 2:39 AM To: CF-Talk Subject: ColdFusion MX Still crashing after updater. *pulling hair out* Coldfusion is set to time out all requests after 9 milliseconds(90 seconds).. and yet

RE: IBM JRE with ColdFusion MX

2003-03-22 Thread Ezine
Dave, I've been running a portal for some time..and it would pop-up as a process during the time when the server would get unstable and crash :).. *grin* It's been one full day without crashing :).. good good. -Zine -Original Message- From: Dave Watts [mailto:[EMAIL

ColdFusion MX Still crashing after updater. *pulling hair out*

2003-03-21 Thread Ezine
As much as I hate to mention things like this.. In a previous e-mail I mentioned that I had an issue with Coldfusion MX crashing on a high hit site. At the time, Coldfusion MX was un-patched.. Yesterday I ran the ColdFusion MX Updater 2. and, is still crashing at least three times a day..

DLLHOST.exe woes. Part of ColdFusion MX? IIS Connector?

2003-03-20 Thread Ezine
Hey there again I'm wondering what part DLLHOST.exe plays in the coldfusionMX implementation. It would make sense that dllhost.exe is what is calling the coldfusion connector...right? Is it normal for DLLHOST to be using more processing power then the jrun.exe process? Does DLLHOST play an

RE: DLLHOST.exe woes. Part of ColdFusion MX? IIS Connector?

2003-03-20 Thread Ezine
I'm less worried about the RAM it is taking up and more worried about the amount of processing time it is taking. 100% for long periods of time. What ends up happening..is Jrun.exe doesn't have enough processing power to execute the pages.. and the server queues up users -Zine

RE: What on earth? I don't even know where to begin Troubleshooting this error...

2003-03-20 Thread Ezine
when renaming files, be careful of the case.. Lets us this scenario: You have a Index.cfm that you are editing..(notice the capital 'I' in Index.cfm) ColdFusion already Ran the Index.cfm and made an Index3939493.class You then rename Index.cfm to index.cfm(lower case 'i') and save the

RE: Unique random number?

2003-03-20 Thread Ezine
Eventually though..this will cause a page to loop many times.. and run the Query many times increasing load time and processor time. -Zine -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 1:14 PM To: CF-Talk Subject: Re: Unique random

RE: How do I stop losing my cookies and stay logged in?

2003-03-20 Thread Ezine
Dave This type of error is usually caused by a Date/Time issue for cookie expiration. this may be solved by a number of methods.. depending on the issue.. Ex: one time my user login script was doing exactly what yours is doing.. and it ended up.. the system clock was incorrect.. one of

Another Challenging question

2003-03-20 Thread Ezine
Ok.. lets say that I have a HTML form with field names from the database.. Like.. ShoppingItem_ItemCode Or a better example.. : 'ShoppingItem_' database.itemcode so..as people add items to their shopping cart.. this list gets longer.. input type=text name=ShoppingItem_Gyro

CFMX Giving up in high strain conditions.

2003-03-19 Thread Ezine
Hey This server is pre-updater 1. I'm having an issue with a pair of twin ColdFusionMX (Win2000 Server 500MB RAM, 800Mhz) servers, where CFMX seems to give up when it cannot muster enough system resources. then when the resources are available.. it is still down and the only way to fix it

RE: Linkpoint

2003-03-07 Thread Ezine
Jason, It is relatively expensive to set up an API account.. though I have seen it for as low as $500. The Actual API is extremely complicated :)..'C++' Libraries are provided for free for anyone who wants to make one.. but they also offer the API/wrapper as a separate product(an

RE: Installation problem Wont ANYONE help?????

2003-03-07 Thread Ezine
lol, I had to re-build the DSNs when I upgraded to CFMX.( NT 4.0 SP6a).. but I happily did.. and it has been working since.. Installation never failed for me.. but it didn't work right off.. had to edit a JRUN XML file to get it to work. *shrugs*such is the way of upgrading..

RE: CFMX null null errors

2003-03-07 Thread Ezine
Interesting, In the past..I have seen this only on a site that is hit pretty hard.. (1 million hits a day+).. thanks for the info in checking into the cfform tag. Zine -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 2:55 PM

RE: New Macromedia.com launched! -- THE END

2003-03-06 Thread Ezine
How about holding down shift when clicking on the link? (the keyboard shortcut?) -Zine -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 12:54 PM To: CF-Talk Subject: RE: New Macromedia.com launched! -- THE END As Stan points out, I never

RE: Database Results - Quick DB -- CFOUTPUT Tutorial

2003-01-13 Thread Ezine
Well, Then you are going to like Coldfusion :) In ColdFusion.. it is much simpler(and less wordy).. more so then ASP because ColdFusion handles the details of the record set. For example... lets say that you have a table called 'names' with two fields in it; FirstName and LastName.

RE: CFMX load test

2002-12-20 Thread Ezine
are going to do load testing on your own server,Make sure that you do not enable debug mode while load testing as It adds a huge amount of load to the servers and the statistics generated from the load test are not accurate because of the excess stress from producing the debug information. Ezine

RE: Random SQL statement

2002-12-18 Thread Ezine
in as little as caching the query for 5 minutes :). -Ezine -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 12:15 PM To: CF-Talk Subject: RE: Random SQL statement This link goes into this in depth. http://www.aspalliance.com/stevesmith

RE: nesting cfoutputs?

2002-11-19 Thread Ezine
lol, In 4.5, you could nest cfoutputs without the group attribute by putting them inside a cfincluded document. Daniel Olivares WorldWideWebz.com Phone: (760) 268-0504 Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] URL: http://www.worldwidewebz.com mailto:[EMAIL PROTECTED]

(OT) Is Microsoft Using ColdFusion?

2002-11-19 Thread Ezine
Hey, Check it out.. Microsoft Using ColdFusion for a specific service? http://solutions.greatplains.com/FreeToWork1/form1_tdm.cfm?user=1code=22ci d=48mediatype=dm 'Great Plains Software Inc. is a wholly-owned subsidiary of Microsoft Corporation. The names of actual companies and products

RE: secure email...

2002-11-16 Thread Ezine
Storing 'IP', 'Cftoken'(if using client state management) and 'address to' database. Then checking against them based on SQL aggragate functions :) It isn't likely that user/customer would send it out to more then 20 friends... and.. it isn't likey that a user/customer would send the same

RE: Shopping Cart

2002-11-16 Thread Ezine
If your SSL provider supports it, parhaps passing the order number would also be an acceptable option.. I particularly like either UUID, or 'mmdd-hhmmss-ip1-ip2-ip3-ip4', example: 01132002-201001-192-168-0-1 if UUID isn't available. Code snippet: -- !--- Daniel Olivares -

RE: HTML E-mails with CFMAIL

2002-11-04 Thread Ezine
I wouldn't mind taking a look at the multipart e-mail sender also :). Thanks for the offer Daniel Olivares WorldWideWebz.com Phone: (760) 268-0504 Email: [EMAIL PROTECTED] mailto:dco;worldwidewebz.com URL: http://www.worldwidewebz.com mailto:dan;worldwidewebz.com -Original