Re: eSignature

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Randy Adkins wrote: Or if there is a way to use CF to verify that a document (DOC or PDF) has been electronically signed?? With what standard ? The generic answer would be to cfexecute 'gpg' and parse the result, or find a suitable Java API. -- Helping to efficiently

Re: CF app control

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Don L wrote: Thank you for your thoughts. See also defectivebydesign.org - if you can't trust your paying customers you have bigger issues. -- Helping to authoritatively incentivize IPOs as part of the IT team of the year, '09 and '08

Re: CFMX7, Ubuntu, Virtual Hosts, and a weird CFLOCK issue

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Rob Barthle wrote: Background: I have a local CFMX7 ... The Application.cfc file has things set up properly: Wasn't Application.cfc introduced in CF8, not 7 ? -- Helping to professionally entrench open-source convergence as part of the IT team of the year, '09 and

cfquery

2009-07-22 Thread RamaDevi Dobbala
cfquery datasource=askseaton name=getOffices result=varibles select address + ' ' + address2 + ' ' + address3 + ',' + city + ',' + state + ',' + city as office_address, (select first + ' ' + last as full from user_info where

RE: Caching issue

2009-07-22 Thread Jacob
Found it. There is a program call PipeBoostCache for compression and caching. It was for compression and not for caching, but someone turned on the caching... -Original Message- From: Gaulin, Mark [mailto:mgau...@globalspec.com] Sent: Tuesday, July 21, 2009 1:07 PM To: cf-talk Subject:

Re: CFMX7, Ubuntu, Virtual Hosts, and a weird CFLOCK issue

2009-07-22 Thread Rob Barthle
Wasn't Application.cfc introduced in CF8, not 7 ? If that were the case, then I'd be having bigger problems... ;-) ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

re: cfquery

2009-07-22 Thread Jason Fisher
I think you want it this way, using a CASE statement for the leadmgr column. I also moved all your subselects into left joins, which should give a bit better performance. cfquery datasource=askseaton name=getOffices result=varibles select s.address + ' ' + s.address2 + ' ' + s.address3 +

Request in cfhttp tag.

2009-07-22 Thread Piotr Artman
Hi, I have to send post reqest with data in url string, for example: cfhttp url=https://example.com; username=xxx password=xxx method=post result=result cfhttpparam name=address type=formfield value=00353 cfhttpparam name=accuracy type=formfield value=coarse /cfhttp Is this example

A request in cfhttp tag.

2009-07-22 Thread Piotr Artman
Hi, I have to send post reqest with data in url string, for example: cfhttp url=https://example.com; username=xxx password=xxx method=post result=result cfhttpparam name=address type=formfield value=00353 cfhttpparam name=accuracy type=formfield value=coarse /cfhttp Is this example

re: Request in cfhttp tag.

2009-07-22 Thread Jason Fisher
Change type to url, I believe. cfhttpparam name=address type=url value=00353 ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: 8.0.1 webservice compile errors

2009-07-22 Thread Sebastiaan van Dijk
Has anyone got a solution to this problem? We get the same error on our internal production servers, but our external servers seem to run the cfc with no problem. ~| Want to reach the ColdFusion community with something they

Re: 8.0.1 webservice compile errors

2009-07-22 Thread Sebastiaan van Dijk
We're on CF801 Enterprise with JRE 1.6.013. Has anyone got a solution to this problem? We get the same error on our internal production servers, but our external servers seem to run the cfc with no problem. ~| Want to

RE: eSignature

2009-07-22 Thread cftalk
Hi Tom, Could you elaborate on that answer? I am also interested in digital signatures. Using standard... -Original Message- From: Tom Chiverton [mailto:tom.chiver...@halliwells.com] Sent: July-22-09 1:55 AM To: cf-talk Subject: Re: eSignature On Tuesday 21 Jul 2009, Randy Adkins

RE: using CF to eliminate old Real Estate photos

2009-07-22 Thread Sawyer, Edward
It sounds to me like the photos aren't in the database at all, but probably just in a directory? If they are in a DB table, then as mentioned the primary key/ indexing really needs to be rethought. Rather than run a purge via the query (which is going to be a big resource load, from the

Re: eSignature

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, cftalk wrote: Hi Tom, Could you elaborate on that answer? I am also interested in digital signatures. Using standard... gpg is a GNU tool for processing (public key) cryptography, such as digital signatures. http://www.gnupg.org/documentation/ -- Helping to

Re: CFMX7, Ubuntu, Virtual Hosts, and a weird CFLOCK issue

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Rob Barthle wrote: Wasn't Application.cfc introduced in CF8, not 7 ? If that were the case, then I'd be having bigger problems... ;-) Coffee failure, oops. -- Helping to proactively compete essential cross-platform systems as part of the IT team of the year, '09

Re: 8.0.1 webservice compile errors

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Sebastiaan van Dijk wrote: We get the same error on our internal production servers, but our external servers seem to run the cfc with no problem. Could it be a proxy setting ? -- Helping to adaptively monetize industry-wide B2B appliances as part of the IT team

Re: cfquery

2009-07-22 Thread RamaDevi Dobbala
cfquery datasource=askseaton name=getOffices select iif(lm.user_id = s.lead_mgr, (lm.first + ' ' + lm.last) , s.lead_note) as leadMgr,

RE: 8.0.1 webservice compile errors

2009-07-22 Thread Sebastiaan GMC van Dijk
It's even stranger. We've continued to test today and on one instance on one server the webservice runs without a hitch and on another server we get this error. Within the same domain. Alas it fails on the server where it should run and works on a server where it doesn't need to run... Crap!

cfgrid customization

2009-07-22 Thread RamaDevi Dobbala
hi frnds, how to customize the cfgrid, based on the no.of columns i am returning that many cfgridcolumns i need to display automatically, how can i do that, please any one can help me... Rama ~| Want to reach the

Re: CF app control

2009-07-22 Thread Don L
I don't think you know how my app is going to be deployed. Of course one should trust their customers. On Tuesday 21 Jul 2009, Don L wrote: Thank you for your thoughts. See also defectivebydesign.org - if you can't trust your paying customers you have bigger issues. -- Helping

dynamic EXCEL print header/footer using coldfusion MSSQL

2009-07-22 Thread Tony Bentley
Does anyone know of a way to insert a print header either using an external source using SQL, CF and possibly POI? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
I am beginning to see how WSDL works here and how I will be able to call it via CFINVOKE. If I want to call the method called 'CheckAvailability' I am still a bit sketchy on what data structures to pass. It appears that: - CheckAvailability CALLS CheckAvailability_irmRQ -

CFML Code Colorizer for display on a web page.

2009-07-22 Thread Gerald Guido
I have been looking around on Google, CFLib and RIAforge for something to colorize CF code (and CSS,JS, html if possible) such that it can be displayed on a web page. I am pretty sure I have seen one before, I just can't seem to find it. Does anyone know off hand of a CFC or UDF that will do

Re: CF9 and Bolt in eWEEK

2009-07-22 Thread Casey Dougall
On Wed, Jul 15, 2009 at 11:15 AM, george.e...@ssa.gov george.e...@ssa.gov george.e...@ssa.gov wrote: http://www.eweek.com/c/a/Application-Development/Adobe-Delivers-Beta-of-ColdFusion-9-and-ColdFusion-Builder-IDE-361260/?kc=EWKNLNAV07152009STR5 George Eweek arrived in mailbox today...

Re: CFML Code Colorizer for display on a web page.

2009-07-22 Thread Charlie Griefer
check out http://coldfish.riaforge.org/ On Wed, Jul 22, 2009 at 10:06 AM, Gerald Guido gerald.gu...@gmail.comwrote: I have been looking around on Google, CFLib and RIAforge for something to colorize CF code (and CSS,JS, html if possible) such that it can be displayed on a web page. I am

Re: dynamic EXCEL print header/footer using coldfusion MSSQL

2009-07-22 Thread Tony Bentley
I found a way to do it using VBS here: http://www.cpearson.com/excel/headfoot.htm Which is a shortcut that grabs field/s in one of the sheets as the header value/s. ~| Want to reach the ColdFusion community with something

Re: CFML Code Colorizer for display on a web page.

2009-07-22 Thread Wil Genovese
Yeah, Jason Delmore wrote one that gets included into BlogCFC. It's called Cold Fish. http://coldfish.riaforge.org/ Wil Genovese Sr. Web Application Developer On Wed, Jul 22, 2009 at 12:06 PM, Gerald Guido gerald.gu...@gmail.comwrote: I have been looking around on Google, CFLib and

Re: CFML Code Colorizer for display on a web page.

2009-07-22 Thread Gerald Guido
That's the one. Thanx... I was searching for the wrong thing. G! On Wed, Jul 22, 2009 at 1:17 PM, Charlie Griefer charlie.grie...@gmail.comwrote: check out http://coldfish.riaforge.org/ On Wed, Jul 22, 2009 at 10:06 AM, Gerald Guido gerald.gu...@gmail.com wrote: I have been looking

Re: Calling .ASPX.VB from .CFM

2009-07-22 Thread Dave Watts
SO... if I use CFINVOKE I am not quite sure what to pass in the CFINVOKEARGUMENT Do I attempt to create a large structure and pass it in under 'CheckAvailability_irmRQ'? I think you'll need a little more than that; you'll need CFCs to represent the objects and you'll need to use CFPROPERTY

scrolling thumbnails delema

2009-07-22 Thread Richard Dillman
I need to add an image up loader to a clients site. I need to create thumbnails during the upload. I need an auto scrolling container to hold all the thumbnails. Pagination is optional. I need to plan on having 300+ products at any one time in this scroller. I cannot dictate to the photographer

Re: scrolling thumbnails delema

2009-07-22 Thread Alan Rother
Check out Ben Nadel's Image Utils CFC on RiaForge.com, it should help with the cropping (he's done all the hard work for you) http://imageutils.riaforge.org/ http://imageutils.riaforge.org/As for Pagination, check out Nathan Strutz's Pagination.cfc http://paginationcfc.riaforge.org/

verity search

2009-07-22 Thread Chad Gray
Is verity case sensitive on a search? I type in Test and test and get different results. Is there a way to make it not case sensitive? ~| Want to reach the ColdFusion community with something they want? Let them know on the

Re: asynchronous form values

2009-07-22 Thread David Mineer
I had no luck figuring this out so I used another method. I used coldfusion.navigate to submit the form to a div at the bottom of the page. This works great and is actually a nicer solution, but I still I wish I knew how to make asynchronous form values stick. On Mon, Jul 20, 2009 at 2:25 PM,

CF8 functions only working in webroot?

2009-07-22 Thread Paul Henderson
I'm not sure why this is but I'm working on a new CF8 install using IIS and for whatever reason the CF8 functions such as cflayout only seem to work in the webroot and default site. All other CF functionality works on the sub sites. Any ideas why I'm facing this issue? Thanks in advance

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
Dave, That definitely points me in a better direction, thank you. One other thing that is confusing me however is how the complex types of the WSDL are pointing to other complex types. For instance, in this following bit of the WSDL: s:element name=CheckAvailability s:complexType

RE: CF8 functions only working in webroot?

2009-07-22 Thread Adrian Lynch
All the AJAXy tags and function access files in domain.com/cfide/blaa/blaa. Add CFIDE as a virtual directory in your new sites and see if that fixes it. Adrian -Original Message- From: Paul Henderson [mailto:pa...@d2phosting.com] Sent: 22 July 2009 21:14 To: cf-talk Subject: CF8

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
Dave, I dug more and here is the aspx.vb file which .NET uses to create the objects: In the web.config file there is a setting: appSettings add key=IRMPublic.IRMPublic value=http://irm.resortdata.com/LutsenInterface/IRMPublic.asmx/ /appSettings Then in the aspx.vb file: Dim irm

RE: CF8 functions only working in webroot?

2009-07-22 Thread Paul Henderson
The virtual directory did the trick, thanks Adrian -Original Message- From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] Sent: Wednesday, July 22, 2009 5:07 PM To: cf-talk Subject: RE: CF8 functions only working in webroot? All the AJAXy tags and function access files in

RE: Calling .ASPX.VB from .CFM

2009-07-22 Thread Jason Neidert
Digging deeper... Using a program called 'Altova MapForce'. Opened the WSDL file in there, here are the global settings. WSDL Definitions: http://irm.resortdata.com/LutsenInterface/IRMPublic.asmx?wsdl Service: {http://resortdata.com/IRMPublic}IRMPublicMethods Port: IRMPublicMethodsSoap

Open Source Store?

2009-07-22 Thread Phillip Vector
I recall awhile back when there was a discussion about a year or 2 ago on this list about free web ecommerce stores and it led me to a really fantastic application that handled all my needs. It had a menu on the left side, full ecommerce, customizable web pages, ran on MySQL, etc. It was

Log In Form

2009-07-22 Thread Barry Mcconaghey
Hello. I'm using this log in form for my website but went a user types in the wrong username or password, I would like to display an error message Sorry...wrong username or Sorry...wrong password. As of now this form, if wrong, returns back to loginform.cfm. I just think it would be nice to

Re: Log In Form

2009-07-22 Thread Alan Rother
I just think it would be nice to tell the visitors what went wrong. (Wrong username, password, or both). I wouldn't recommend doing that. If someone is trying to gain illicit access to your site, your providing them with helpful information. For example, if you tell them they got their username

Re: Log In Form

2009-07-22 Thread Barry Mcconaghey
Good point... Maybe I'll just say Wrong Paco OK now for the dumb question. Where do I add the code??? I just think it would be nice to tell the visitors what went wrong. (Wrong username, password, or both). I wouldn't recommend doing that. If someone is trying to gain illicit access to your

Re: Log In Form

2009-07-22 Thread Alan Rother
Yeah... Gimmie a sec, I'll knock a quick demo out... =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org ~| Want to reach the ColdFusion community with

Re: Log In Form

2009-07-22 Thread Alan Rother
It's not real or tested, but it should give you an idea how to do it. =] cfquery datasource=myDSNName name=variables.qCheckUN SELECT UserUUID, UserName FROM SomeTable WHERE UserName = cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#Form.userLogin# AND User_IsActive = 1 /cfquery !--- CF by

Re: Log In Form

2009-07-22 Thread Barry Mcconaghey
Thanks Alan. I'll test it. It's not real or tested, but it should give you an idea how to do it. =] cfquery datasource=myDSNName name=variables.qCheckUN SELECT UserUUID, UserName FROM SomeTable WHERE UserName = cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#Form.userLogin# AND User_IsActive =

Re: Calling .ASPX.VB from .CFM

2009-07-22 Thread Casey Dougall
On Wed, Jul 22, 2009 at 6:06 PM, Jason Neidert ja...@steelfusion.comwrote: How can I accomplish the creation of the object CheckAvailabilityRQ using ColdFusion? cfobject name = IRMPublic webservice= http://resortdata.com/IRMPublic; type = webservice wsportname =

Re: Log In Form

2009-07-22 Thread Arsalan Tariq Keen
The approach used by Alan is nice... I guess that's is the most common one used ... besides ... don't ever tell the visitor that he/she entered the WRONG PASSWORD ... that's just affirming that they entered the right username ... hence doing 50% of their work if they are trying to break into

ecommerce emergency

2009-07-22 Thread mike pop
i have 2 months to learn how to build an entire ecommerce application. i've been in the finance field for so long that ecommerce is a completely new industry for me. to be honest, i wouldn't know if cookies or client variables are the best choice for cart storage. what data should i store

Re: ecommerce emergency

2009-07-22 Thread Greg Luce
Here is a fusebox shopping cart app that might be a good starting point: http://www.briankotek.com/index.cfm?fuseaction=content.viewcontentitemcontentid=47returnto=coldfusion.main Greg On Wed, Jul 22, 2009 at 10:00 PM, mike pop mikepoplaw...@gmail.com wrote: i have 2 months to learn how to

Re: ecommerce emergency

2009-07-22 Thread James Holmes
The only sane advice, given those conditions, is to buy a cart product (e.g. http://www.cfwebstore.com/). mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/7/23 mike pop mikepoplaw...@gmail.com: i have 2 months to learn how to build an entire ecommerce

Re: ecommerce emergency

2009-07-22 Thread Phillip Vector
Just figured it out what I was looking for (and it seems we have the same issue). http://www.cfshopkart.com/ :) On Wed, Jul 22, 2009 at 7:00 PM, mike popmikepoplaw...@gmail.com wrote: i have 2 months to learn how to build an entire ecommerce application.  i've been in the finance field for

RE: ecommerce emergency

2009-07-22 Thread Justin Scott
The only sane advice, given those conditions, is to buy a cart product (e.g. http://www.cfwebstore.com/). Seconded. It's hard to be involved in web development and not have to do e-commerce at some point, but there are so many things to deal with that I would highly recommend you work with a

Re: ecommerce emergency

2009-07-22 Thread Kevan Stannard
Phillip, you might need to double check but last I looked cfshopkart it was storing credit card details in its database (an MS Access database). And if you're on shared hosting this this db is likely to be web accessible. If this is still the case then avoid this cart. Mike, cfshopkart was one of

Re: ecommerce emergency

2009-07-22 Thread Chris Montgomery
James Holmes said the following on 7/22/2009 9:21 PM: The only sane advice, given those conditions, is to buy a cart product (e.g. http://www.cfwebstore.com/). +1 Well worth the money when you consider the headaches and time it will save. -- Best regards, Chris Montgomery

Re: ecommerce emergency

2009-07-22 Thread Phillip Vector
On Wed, Jul 22, 2009 at 7:53 PM, Kevan Stannardke...@stannard.net.au wrote: Phillip, you might need to double check but last I looked cfshopkart it was storing credit card details in its database (an MS Access database). And if you're on shared hosting this this db is likely to be web

WildCard query

2009-07-22 Thread Tom Jones
Hello, I'm migrating some pages from Lasso to Coldfusion and one of the current pages in Lasso has a query to search any field/column for a value. I have never done this with coldsuion before so I'm not sure how to go about this. thanks, tom

Re: ecommerce emergency

2009-07-22 Thread C. Hatton Humphrey
That's all well and good, but I know for me personally, I don't have any cash at the moment. Unless you are willing to loan me some money to pay for it (I need it within the week), then I'll have to make due with what I got. :) I waited for someone else to say it but +1 for CF Webstore. The

Re: ecommerce emergency

2009-07-22 Thread Phillip Vector
Fair enough. Once I get a few bucks into my pocket, I'll look into it. But for now, I need to give him some freeware and charge him to set it up. So I hear what you are saying. Just with even a low price point, I can't afford it. On Wed, Jul 22, 2009 at 8:28 PM, C. Hatton

RE: ecommerce emergency

2009-07-22 Thread Justin Scott
So I hear what you are saying. Just with even a low price point, I can't afford it. Get your client to pay for it then. :) If they're going to be doing online sales, it should be pretty easy for them to front the $400 license fee as a cost of doing business. Whenever I'm working with a

Re: WildCard query

2009-07-22 Thread David McGuigan
You can grab a list of all of the columns of any table and loop through them pretty easily ( they syntax varies with your database vendor ). MySQL is just: describe tableName On Wed, Jul 22, 2009 at 9:10 PM, Tom Jones tjo...@acworld.com wrote: Hello, I'm migrating some pages from Lasso to

Re: Open Source Store?

2009-07-22 Thread Dave l
only free one i can recall http://www.cfshopkart.com/ I recall awhile back when there was a discussion about a year or 2 ago on this list about free web ecommerce stores and it led me to a really fantastic application that handled all my needs. It had a menu on the left side, full ecommerce,