Error registering remote instance

2010-07-20 Thread Ben Densmore
I'm trying to set up a cluster in CF 9.0.1. Prior to creating the cluster I'm trying to register a remote instance on one of the servers. Every time I try to create the remote instance I get the following error. Variable ORGSPECDIR is undefined. The error occurred

CFGrid in CF9 changes

2009-12-31 Thread Ben Densmore
We have an app that is currently running on CF8 and we are in the beginning phases of doing some re-writes and moving to CF9. This app uses a lot of CFGrids and uses one of the non-default themes that CF8 offered. It seems that Adobe stripped out all the ExtJS themes in CF9 and only include

Re: EBay API issues

2009-07-02 Thread Ben Densmore
that struct is building up the parameters to send to the SOAP Request. So, if the API requires the following parameters: version / CategoryID / ItemName / Then in your struct you have: cfscript myRequest = structNew(); myRequest.version = 623; myRequest.CategoryID = 20; myRequest.ItemName

Ebay API help

2009-06-30 Thread Ben Densmore
I've been stuck on this for a while and haven't made much progress so I'm hoping someone can tell me what I'm missing. I'm using the Ebay API and trying to use make the following method call, here is the XML from the API: ?xml version=1.0 encoding=utf-8? SetStoreCategoriesRequest

Re: Need a fresh perspective

2009-06-05 Thread Ben Densmore
exactly how you need it diplayed... can you try and post it formatted with tabs, or maybe just describe it in words? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 05/06/2009 12:34, Ben Densmore wrote: I've been working on an event scheduling application for the past 2 weeks

Re: Need a fresh perspective

2009-06-05 Thread Ben Densmore
and checkboxes. ** you will need a year as separate column for cases when an event spans over Dec 31 Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 05/06/2009 20:24, Ben Densmore wrote: Hi Azadi, Here is an image of what the output should ultimately be. http://wedapstudios.com

Need a fresh perspective

2009-06-04 Thread Ben Densmore
I've been working on an event scheduling application for the past 2 weeks. I'm pretty close to wrapping it up but have now run into an issue on my last part of the display. I'm thinking my data model might be the issue and would like to get some ideas from people on how I might be able to fix it.

Re: Convrt Access to Excel via XML

2008-06-12 Thread Ben Densmore
Hi Marc, You might want to check out the POI Library from Apache. http://poi.apache.org/ There are examples of using it with CF out there. Ben On Thu, Jun 12, 2008 at 7:10 AM, marc -- [EMAIL PROTECTED] wrote: Hello, I have an Access DB that has to be converted to a Excel spreadsheet. The

Re: MS SQL / Mac OS X

2008-06-02 Thread Ben Densmore
Hi Steve, I've been using Aqua Data Studio. It works quite well for doing most things in SQL Server. I'm not sure if it can be completely used to manage but for doing queries, writing stored procs and things like that it's fine. The one time I ran into an issue was trying to log into an account

CF Debugger on OS X with Multiiple instances

2008-05-14 Thread Ben Densmore
I'm running multiple instances of CF on my Mac with Apache and haven't been able to successfully use the line debugger. I can get all the tests to pass and the debugger even starts but when I set a break point and try to run a page the debugger doesn't show me anything. I have several virtual

Re: CF Debugger on OS X with Multiple instances

2008-05-14 Thread Ben Densmore
from JMC, it is going to use the default (shared jvm.config in jrun/bin) jvm.config. Thanks, Dipanwita -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 6:47 PM To: CF-Talk Subject: CF Debugger on OS X with Multiiple instances I'm

Re: CF Debugger on OS X with Multiple instances

2008-05-14 Thread Ben Densmore
then allow this port in the firewall. Please try changing the debugger server port number to something else in CF Admin. Thanks, Dipanwita -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 8:29 PM To: CF-Talk Subject: Re: CF Debugger on OS X

Re: MS SQL Triggers and Coldfusion 8

2007-10-03 Thread Ben Densmore
Hey Jim, that issue was fixed with the latest hotfix. http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402466sliceId=1 It's not listed in the notes, but I was the one who reported the bug and received an email back stating it was an official bug and that it would be fixed in the

Inserting new record into DB based on new line

2005-08-01 Thread Ben Densmore
I'm having a hard time trying to write some code and was hoping someone could give me some ideas on the best way to handle this. I have a spreadsheet that I need to take info from and dump into a database table, that's simple enough but in the spreadsheet, a couple of the cells have 5 lines

Simulate sending emails

2005-06-27 Thread Ben Densmore
Is it possible to simulate sending emails in CF without letting them actually send out? I am having an issue where once in a while CF sends out duplicate emails to our customers. We do an email blast once a week and have about 11,000 emails in it. Sometimes it goes fine and other times it goes out

Re: Simulate sending emails

2005-06-27 Thread Ben Densmore
that's what I thought about doing but I thought CF would complain that the smtp server was invalid if I did that. On 6/27/05, S. Isaac Dealey [EMAIL PROTECTED] wrote: So don't simulate it... let the cf server spool the mail, feed it a bogus smtp-server address (i.am.not.an.smtp.server instead

Re: Simulate sending emails

2005-06-27 Thread Ben Densmore
27, 2005 10:11 AM, Ben Densmore scribed: --- Is it possible to simulate sending emails in CF without letting them actually send out? I am having an issue where once in a while CF sends out duplicate emails to our customers. We do an email blast once a week and have about 11,000 emails

Stock Info

2005-03-16 Thread Ben Densmore
I'm looking into finding some stock services for our website and curious as to what other people on the list use for displaying stock info as well as stock charts. I checked out one of the web services from xmethods but it doesn't seem like it returns too much info. I found a company called

Re: Stock Info

2005-03-16 Thread Ben Densmore
info you could imagine... but at a fee. Cheers, Kevin -- http://www.keslabs.com Coldfusion Remote Dashboard :: http://www.keslabs.com/crd -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 16, 2005 3:33 PM To: CF-Talk Subject

Email problems

2005-02-01 Thread Ben Densmore
I'm all of a sudden having issues with sending emails and can't seem to find out where the issue is. Everything was working up until about 10:00 AM EST this morning then all of a sudden the emails stopped coming through. I can send an email, watch it go into the spool directory and then leave. I

Using Like Keyword for searching

2004-11-09 Thread Ben Densmore
I'm building in somewhat of a keyword search into a site I'm working on. The search basically looks at what was typed into the search field, does a query on a particular field in the database using the like keyword and then returns a code or codes that is associated with that particular field in

Re: Using Like Keyword for searching

2004-11-09 Thread Ben Densmore
... -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: 09 November 2004 15:48 To: CF-Talk Subject: Using Like Keyword for searching I'm building in somewhat of a keyword search into a site I'm working on. The search basically looks at what was typed into the search

Query string in db field

2004-10-20 Thread Ben Densmore
I'm trying to find the best way to take a query string that would look something like name=somenameid=12address=123email=yes and pull out the values. These query strings are stored in a field in a database. I just can't seem to think of a way to do this. Anyone have any ideas? Thanks, Ben

Need some help on this

2004-10-20 Thread Ben Densmore
I am running a query that pulls in a query string that is stored in a field in one of my tables. Thanks to some of the people here I was able to get the variable and the value of each part of the query string. cfquery name=getSearches datasource=ds Select * From savedSearches Where sendEmail

Strange list behavior

2004-09-19 Thread Ben Densmore
I am running a query then taking the results of the query and storing them in a list using the quotedValueList() function. I am then doing another query to see if any of the values in the list match any values in the database using the following: SELECT Distinct subcategory_name FROM

Is this too much?

2004-08-10 Thread Ben Densmore
I have a function called eccnLookUp() that accepts one argument named PartNumber. In another cfc I need to do 5 calls to this function and pass in 5 different part numbers. Would this be a huge hit on the server to do it like: cfset variables.partNum1 =

Carriage returns in XML file

2004-07-20 Thread Ben Densmore
I'm wondering if there is a way to fix an attribute in an XML file that has carriage returns in it? I have an admin section that has a teaxtarea for putting in a description as well as some other fields. The problem is if the user puts carriage returns in the textarea the xml file outputs like:

Re: Free Stuff: Tree, Tab, Accordian Pane Custom Tags[ENCRYPTED]

2004-07-16 Thread Ben Densmore
This is great Joe. I was just about to start rebuilding one of our forms that has gotten unbelievably long and move it to a flash based form so I can use the accordian for a multi step form. I will definitely be playing around with this. Ben On Thu, 15 Jul 2004 11:19:28 -0400, Joe Rinehart

Re: Free Stuff: Tree, Tab, Accordian Pane Custom Tags

2004-07-15 Thread Ben Densmore
This is great Joe. I was just about to start rebuilding one of our forms that has gotten unbelievably long and move it to a flash based form so I can use the accordian for a multi step form. I will definitely be playing around with this. Ben On Thu, 15 Jul 2004 11:19:28 -0400, Joe Rinehart

XML Question

2004-07-14 Thread Ben Densmore
If I have the following XML file: events startDate=2003-01-01 endDate=2004-12-31 event id=5 title=Test Event 5 description=every second tuesday startDate=2003-01-01 endDate=2003-12-31 allDay=1 eventType=weekly pattern sun=0 sat=0 fri=0 thu=0 wed=0 tue=1 mon=0 recur=2 / /event /events The

XML Attributes

2004-07-14 Thread Ben Densmore
Is there a way to tell what attributes an element has? The Xml file I'm working with has an element named pattern, but it can have different attributes. One can look like: pattern sun=0 sat=0 fri=0 thu=0 wed=0 tue=1 mon=0 recur=2 / and another can look like: pattern day=wed week=3 recur=1 /

Re: XML Attributes

2004-07-14 Thread Ben Densmore
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Densmore Sent: Wednesday, July 14, 2004 11:04 PM To: CF-Talk Subject: XML Attributes Is there a way to tell what attributes an element has? The Xml file I'm working with has an element

RE: Ben in Boston?

2004-07-01 Thread Ben Densmore
I am planning on going tonight. Should be fun. Ben -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 30, 2004 3:52 PM To: CF-Talk Subject: Ben in Boston? Any of you guys/girls here from Boston?Will you be attending Boston CFUG meeting tomorrow

Re: dynamic path in cfc

2004-06-30 Thread Ben Densmore
Thanks Paul and Barney. Ben -Original Message- From: Paul Kenney [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 29, 2004 11:32 PM To: CF-Talk Subject: Re: dynamic path in cfc Perfectly legal.Go for it. On Tue, 29 Jun 2004 23:19:19 -0400, Ben Densmore [EMAIL PROTECTED] wrote: If I

dynamic path in cfc

2004-06-29 Thread Ben Densmore
If I create an instance of a cfc using createObject() can I use an application variable in the path that points to the cfc or does the path have to be hard coded? cfset someObect = createObject(component, #application.cfcPath#.components) / Thanks, Ben [Todays Threads] [This Message]

RE: Mach II and whitespace

2004-06-03 Thread Ben Densmore
The best way is to use cfcontent reset=true / in your final display view. So if you have a view called main.cfm that does all your final displaying, at the top of that file you would use the cfcontent tag. It works great. You can also check out Phil Cruz's site at http://www.mach-ii.info

Re: Mach II and whitespace

2004-06-03 Thread Ben Densmore
Whitespace has been an issue all along. They fixed it somewhat in the latest release but the framework still has a lot of whitespace. Ben -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Thursday, June 03, 2004 11:04 AM To: CF-Talk Subject: Re: Mach II and

Weird problem with Next X records

2004-05-25 Thread Ben Densmore
I have an application that I am using Next and Previous records links to sort through data. The I'm using the group attribute in the cfoutput tag to group by the customerID. My page will look like: Ben's Accounts CustomerID1 CustomerID2 CustomerID3 CustomerID4 Johns Accounts CustomerID1

Extracting an email address out of a text file

2004-05-21 Thread Ben Densmore
I have about 1800 text files that I exported from outlook that are all bounced emails. I need to extract the email addresses that were bounced back. Unfortunately not all mail servers bounce messages that look alike. I was thinking I could just read through each text file and find where the email

RE: Extracting an email address out of a text file

2004-05-21 Thread Ben Densmore
Thanks Claude, I bought the tag and it seems to work ok. I'm wondering if someone can help me with a reg ex. Just playing around with the tag I was trying: CF_REextract INPUTMODE=File INPUT=c:\cfusionmx\wwwroot\email_blast\#name# OUTPUTMODE=output RE1=([[:alnum:]_\.\-]+@([[:alnum:]_\.\-]))

RE: Extracting an email address out of a text file

2004-05-21 Thread Ben Densmore
Thanks Claude. According to the REWizard my regular _expression_ works but in the REExtract tag it doesn't. Is there any way to not use the RE2 option? Thanks, Ben -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 12:36 PM To: CF-Talk

RE: Version Management Inquiry

2004-05-19 Thread Ben Densmore
I would at the very least use Dreamweavers CheckIn/Out feature if you are using Dreamweaver MX 2k4. If not then use CVS or Visual Source Safe. CVS is free but requires a little more work to get set up. Ben -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent:

RE: Version Management Inquiry

2004-05-19 Thread Ben Densmore
Massimo, Is there a extension for DWMX 2k4 to use subversion? Thanks, Ben -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 9:26 AM To: CF-Talk Subject: Re: Version Management Inquiry On one of my projects I am working with a fellow

Format cfdump

2004-05-12 Thread Ben Densmore
Is there a way to format the cfdump tag? I am trying to dump some info from 2 queries but they both display horizontally and I would like them to display vertically because they have quite a few fields. Thanks, Ben [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: CFC 2 XML - ERROR: Whitespace required before attributes

2004-05-10 Thread Ben Densmore
If you are going to have attributes in your XML they have to be like: part_no id=#partno# shortdesc#shortdesc#/shortdesc /part_no Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 4:39 PM To: CF-Talk Subject: CFC 2 XML - ERROR:

RE: cfloop

2004-04-16 Thread Ben Densmore
How did you get that to even run with the , in there? I just tried 40 and it worked fine. Ben -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 11:42 AM To: CF-Talk Subject: Re: cfloop Well, I just did a quick one (index loop) that tried

CFExecute and Winzip

2004-04-01 Thread Ben Densmore
I just downloaded the new command line utility for winzip 9 hoping I could use cfexecute to unzip a whole bunch of zip files. When I try to run it via cfexecute I constantly get the error: An exception occurred when invoking an external process. The cause of this exception was that:

RE: CFINVOKE vs CreateObject - Flogging OOP!

2004-03-31 Thread Ben Densmore
There was a huge discussion about this on the CFC Dev mailing list. I'm still relatively new to OO but moving over to the Mach-II framework has helped me get a better understanding for it. I personally use createObject(), I haven't seen a need to use cfinvoke. I have a feeling that with

RE: CFINVOKE vs CreateObject - Flogging OOP!

2004-03-31 Thread Ben Densmore
The only caution I would give about using the Mach-II example apps is that they are outdated and may not reflect best practices for the current version of the framework(1.0.9). Sean Corfield has some good info in the Mach-II dev guide at http://livedocs.macromedia.com/wtg/public/machiidevguide/

RE: Simple CFC question

2004-03-30 Thread Ben Densmore
If C:\inetpub\mysite is your web root then you should be able to reference it like cfset object = createObject(component, admin.store.cf-inf.cfc.products) / Ben -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 3:31 PM To: CF-Talk Subject:

RE: Simple CFC question

2004-03-30 Thread Ben Densmore
, admin.store.cf-inf.cfc.products) / cfinvoke component=object method=ListProducts returnvariable=qProducts Thanks, Mark _ From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 3:45 PM To: CF-Talk Subject: RE: Simple CFC question If C:\inetpub\mysite is your web root then you

RE: Simple CFC question

2004-03-30 Thread Ben Densmore
it can't find the component - i checked to make sure it was posted and correct spelling. Here's what I've done: cfset object = createObject(component, admin.store.cf-inf.cfc.products) / cfinvoke component=object method=ListProducts returnvariable=qProducts Thanks, Mark _ From: Ben

RE: Simple CFC question

2004-03-30 Thread Ben Densmore
:34 PM To: CF-Talk Subject: RE: Simple CFC question Yes, I did try your suggestion here, but it didn't work. Thanks, Mark _ From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 4:21 PM To: CF-Talk Subject: RE: Simple CFC question Have you tried mysite.admin.store.cf

RE: CF Email Function

2004-03-26 Thread Ben Densmore
You can resend the undeliverable mail by just copying the files back into the spool directory. Ben -Original Message- From: Rick Lansford [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 11:42 AM To: CF-Talk Subject: CF Email Function Help! I have a web page using CFMAIL

SOT: JDBC driver

2004-03-26 Thread Ben Densmore
Does anyone know the name of the JDBC driver that CFMX uses and where it is located? We have a Java app that is using an eval version of a JDBC driver and I was thinking we could just use the one that's built into CFMX so we don't have to purchase a license for this other driver. Thanks, Ben

RE: SOT: JDBC driver

2004-03-26 Thread Ben Densmore
What if it's an applet that is encompassed in a CF app? I wonder if that would still violate the license. Ben -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 2:09 PM To: CF-Talk Subject: RE: SOT: JDBC driver Does anyone know the name of

CFMAIL Attachments

2004-03-22 Thread Ben Densmore
I'm trying to use the cfmailparam tag in cfmail to send a file attachment. When the file comes through it shows up with a .tmp extension instead of a .doc extension if it's a word doc. I even tried specifing the type as application/msword and it still comes through as a .tmp file. Do I need to

RE: CFMAIL Attachments

2004-03-22 Thread Ben Densmore
e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolutionwebdesign.com its only looks good to those who can see bad as well -anonymous -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Monday, March 22, 2004 11:03 PM To: CF-Talk Subject: CFMAIL Attachments

RE: Quick Help

2004-03-16 Thread Ben Densmore
I think it's getTickCount(). Ben -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 4:59 PM To: CF-Talk Subject: Quick Help I forgot the function to get the time a page took to process in CF (ie like in the debugger) I need to run a large

RE: Invoking a Java Jar File

2004-03-12 Thread Ben Densmore
The WEB-INF folder should be under the CFUSIONMX directory. I think in the docs they assume CFUSIONMX is the web root. Ben -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 3:07 PM To: CF-Talk Subject: Invoking a Java Jar File I am attempting

RE: Reliable way to get ID of inserted record

2004-03-11 Thread Ben Densmore
Can scope_identity() be used to get identities in a query such as the piece I have below? I tried using Select Scope_Identity() AS emailID but my query kept complaining that emailID didn't exist. SET NOCOUNT ON DECLARE @thisID int DECLARE @emailID int BEGIN transaction /* assume this table

RE: Reliable way to get ID of inserted record

2004-03-11 Thread Ben Densmore
Nevermind, I got it. Thanks, Ben -Original Message- From: Ben Densmore Sent: Thursday, March 11, 2004 3:53 PM To: CF-Talk Subject: RE: Reliable way to get ID of inserted record Can scope_identity() be used to get identities in a query such as the piece I have below? I tried using

Custom Tag for importing into ACT?

2004-02-17 Thread Ben Densmore
Does anyone know if there are any custom tags for importing some info from a form into ACT? I've looked on the MM exchange and on google but couldn't seem to find anything. Thanks, Ben [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Site Compiler that will handle CF

2004-02-13 Thread Ben Densmore
Can't you just install IIS and CF on the laptop? That way the presentations can run locally. Ben -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 6:07 PM To: CF-Talk Subject: Site Compiler that will handle CF Does any one know of a web

RE: RDS Password on MX 6.1

2004-02-11 Thread Ben Densmore
In the CF Admin there is a security section, then under that there is a link to RDS Password. You can change it in there. Ben -Original Message- From: Robert Shaw [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 11, 2004 9:55 AM To: CF-Talk Subject: RDS Password on MX 6.1 Hi All,

RE: Linux ODBC Socket

2004-02-05 Thread Ben Densmore
Yes that is built into MX. It's so you can create an ODBC connection via the ODBC control panel, then you use the ODBC Socket option and tell it the name of the DSN you created in the ODBC Control Panel. It's used when there is a Database that CF doesn't have a driver for. I am currently using it

RE: Obtaining Request URL

2004-01-29 Thread Ben Densmore
You could just use _javascript_. That way it wouldn't matter what version of CF you are using. Ben -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 1:59 PM To: CF-Talk Subject: Obtaining Request URL Just curious, is there a way to get

SOT: DB Design Question

2004-01-19 Thread Ben Densmore
I am building a few new tables to store some articles and notes on our website. I want it structured so that it displays: Top Level Header Sub Heading Title of Article I built 3 separate tables: One has just an ID and a Header field The second has an ID and the Sub Heading The third table

RE: Re[2]: real quick ot

2004-01-15 Thread Ben Densmore
Has anyone used igloo with DWMX 2004? I need to set up source control on our development server and not sure if I should go the VSS route or try cvsnt and wincvs with igloo. I want something that will work with DWMX 2004 though. Thanks, Ben -Original Message- From: Toby Tremayne

RE: Learning .NET (c-sharp) books

2004-01-08 Thread Ben Densmore
Oliver, I got this book which is pretty good. It's called C#: A Programmers Introduction by Harvey Deitel. He explains things really well and starts from the beginning. The ISBN is: 0130461326 Ben -Original Message- From: Oliver Cookson [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Looking for duplicate @ signs

2004-01-07 Thread Ben Densmore
Thanks guys. Here is another question. Why the hell doesn't CFMAIL in CFMX ignore bad email addresses instead of throwing an error and stop all processing? We just upgraded our production server last week to CFMX 6.1 and went to send out a new product announcement last night. This is the same list

Looking for duplicate @ signs

2004-01-06 Thread Ben Densmore
Can someone tell me if this should work? I'm trying to look for duplicate @ signs in some email addresses. I was using the following code but it doesn't seem to work. According to the docs that should find 2 - 4 occurrences of the @ symbol but it always returns 0 even though I know there is at

RE: Flash Remoting to CF

2003-12-19 Thread Ben Densmore
I think that's for ASP.NET and PHP only. CF comes with Flash Remoting built in. I have Flash MX 2004 PRO and I can use Flash Remoting with no problems. Ben -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 2:08 PM To: CF-Talk Subject: Flash

RE: Hiding an Email Address from harvesters

2003-12-18 Thread Ben Densmore
If these email addresses are being pulled from a database or a list and using CFMail to send them I don't see how this is possible. I would think the only way they could get the emails was if you had a page displaying the email addresses. Ben -Original Message- From: Les Mizzell

RE: Hiding an Email Address from harvesters

2003-12-18 Thread Ben Densmore
Are you hardcoding an email address into the CFMail tag? That may be possible for someone to sniff out the email address that way, but if the email is set as a variable I can't see how they would get the email address. Ben -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED]

Test

2003-12-17 Thread Ben Densmore
Test [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:has anybody used cfx_rawsocket

2003-12-04 Thread Ben Densmore
Ketan, I used cfx_rawsocket for talking with UPS to implement the XMLTrack feature on the website for my old employer. Here is the chunk of code I used to do it. This was for CF 4.5 so I had to use the cf_SOXML tag to get at the XML that was returned. Hope this helps you. Ben !--- Build XML

Another Query Question

2003-11-26 Thread Ben Densmore
I have a query that currently looks like: CFQUERY name=clicks_per_product datasource=#Data_Source# select Count(*) As Clicks,emres_prod_part_numl, emres_prod_catagory from email_results Where emres_blast_sent_id = 23 GROUP BY emres_prod_part_numl, emres_prod_catagory /CFQUERY Based on the

RE: Another Query Question

2003-11-26 Thread Ben Densmore
) As Clicks,emres_prod_part_numl, emres_prod_catagory Ofcourse, here I am assuming that emres_prod_catagory is of type varchar and emres_prod_part_numl is not a varchar. If both are varchar, then u dont have to use the CONVERT function. Thanks, Milan From: Ben Densmore [EMAIL PROTECTED] Reply

Group By Question

2003-11-25 Thread Ben Densmore
Hi, I have a query that currently looks like: CFQUERY name=clicks_per_product_market_display datasource=# Data_Source # select * from email_results, email_blast Where email_results.emres_blast_sent_id = #URL.BLAST# AND email_results.emres_prod_catagory = '#get_cat_info.Category#' AND

RE: Group By Question

2003-11-25 Thread Ben Densmore
Dave, That doesn't seem to do what I want it to. I modified the query to grab just the fields I'm using and grouped by those fields: CFQUERY name=clicks_per_product_market_display datasource=# Data_Source # select email_blast.embl_email,email_blast.embl_companyname,email_blast.embl_nam

RE: Framework Comparisons

2003-11-25 Thread Ben Densmore
Is the onTap Framework the one you created? Are you going to compare it to Mach-II? I'd be curious to see the differences both plus and minus. We are going to be re-doing our site in the coming months and want to do it using some type of framework, was going to be Mach-II but maybe I will check

Stuck on Query

2003-11-25 Thread Ben Densmore
I thought I had figured out a way to display some info but then realized that I was missing something. I have a table called email_results that keeps track of products that users click on from an email they received. In this table I have a unique ID that matches them up to their email address and

Find out a position in a list

2003-11-21 Thread Ben Densmore
If I have a list that looks like 15,18,19,20,21 How can I find out what position 18 is at? I was using Find but that tells me that 18 is at position 4 but I need to use along with ListGetAt to get the actual value at that position and listgetAt sees it as being at position 2. Thanks, Ben [Todays

RE: Find out a position in a list

2003-11-21 Thread Ben Densmore
Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2003 12:22 PM To: CF-Talk Subject: Find out a position in a list If I have a list that looks like 15,18,19,20,21 How can I find out what position 18 is at? I was using Find but that tells me that 18 is at position 4

Question on error

2003-11-20 Thread Ben Densmore
Hi everyone, We just upgraded our dev server to MX 6.1 and also have a new SQL Server 2K machine that I just exported all of our tables to. I'm getting the following error: Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Invalid object name 'tbl_Product_Main_LU'.

RE: Question on error

2003-11-20 Thread Ben Densmore
Thanks Jochem, That's what it looks like it is. The username doesn't have rights to do selects,updates,deletes etc... Ben -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 12:02 PM To: CF-Talk Subject: Re: Question on error Ben

Array Sum

2003-11-19 Thread Ben Densmore
Can someone tell me why this won't work correctly. I have the following code code cfloop from=1 to=#clickCount# index=i cfset prodLinkTotal = ArrayNew(1) cfset prodLinkTotal[i] = clicks_per_product.click[i] cfoutput#ArraySum(prodLinkTotal[i])#/cfoutput /cfloop /code Rightnow the

RE: Array Sum

2003-11-19 Thread Ben Densmore
] an array? if not, then you can't ArraySum it -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 11:51 AM To: CF-Talk Subject: Array Sum Can someone tell me why this won't work correctly. I have the following code code cfloop from=1

RE: Array Sum

2003-11-19 Thread Ben Densmore
from=1 to=#clickCount# index=i cfset prodLinkTotal = arrayAppend(prodLinkTotal, clicks_per_product.click[i]) /cfloop cfoutput#arraySum(prodLinkTotal)#/cfoutput /code Steve -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 11:51 AM To: CF

RE: Array Sum

2003-11-19 Thread Ben Densmore
Thanks Patti that worked. Ben -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 8:44 AM To: CF-Talk Subject: RE: Array Sum Yeah I didn't realize I was recreating the array at every iteration, that was an oversight.

getRowCount() differences

2003-11-19 Thread Ben Densmore
Is there a difference in the getRowCount() method between CF 5 and MX 6.1? We just upgraded our development server to MX but our live server is still at 5 for the time being. I was using getRowCount() to count the rows in my query which worked great on the development server but when I uploaded to

RE: getRowCount() differences

2003-11-19 Thread Ben Densmore
Because I need the number of rows the query is returning not a count of all the items. Because the part numbers are being grouped so we only display one part number and how many clicks that particular part number gets if I used recordcount it would give me all the records returned. Ben

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Ben Densmore
I had one from him this morning as well. Ben -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:09 PM To: CF-Talk Subject: OT: Arden Weiss - virus sending messages to the list? Hi all.Don't know if I'm the only one, but I've been

RE: News Feed for NFL games

2003-11-04 Thread Ben Densmore
That was classic. I laughed my a** off when I read that Dave. Ben -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 11:24 AM To: CF-Talk Subject: RE: News Feed for NFL games If Mike Dinowitz isn't here to remind us it's OT, it's not OT.

RE: Viewing client hard drive via web server.

2003-11-04 Thread Ben Densmore
ActiveX should have done what you needed. I know that a lot of the online virus scanners and tools are built with ActiveX. Try looking up the System.Management namespace in asp.net. I can't remember off the top of my head if you can view a clients hard drive with that or not. I know I wrote some

RE: Viewing client hard drive via web server.

2003-11-04 Thread Ben Densmore
it? --Original Message Text--- From: Ben Densmore Date: Tue, 4 Nov 2003 13:14:13 -0500 ActiveX should have done what you needed. I know that a lot of the online virus scanners and tools are built with ActiveX. Try looking up the System.Management namespace in asp.net. I can't remember off the top

RE: Viewing client hard drive via web server.

2003-11-04 Thread Ben Densmore
, November 04, 2003 2:03 PM To: CF-Talk Subject: RE: Viewing client hard drive via web server. --Original Message Text--- From: Ben Densmore Date: Tue, 4 Nov 2003 13:40:37 -0500 Viewing directories across a network? Yes but different domains. You can just map a drive letter to a folder on a system

RE: News Feed for NFL games

2003-11-03 Thread Ben Densmore
Makes me glad I have DirecTV. Ben -Original Message- From: Dan Phillips (CFXHosting.com) [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 4:13 PM To: CF-Talk Subject: RE: News Feed for NFL games It starts tonight at 8Pm EST. I think the only ones that can see it are DirectTV

RE: Anybody have an opinion on hostmysite.com?

2003-10-31 Thread Ben Densmore
They are definitely a great place to host with. I have several sites with them and any clients I do work for that don't have hosting I sign them up there. Any time I have needed something from them they respond within 10 minutes and have always done everything I needed. I definitely recommend

  1   2   3   >