Re: USPS test 400 Bad Request

2005-09-12 Thread Stan Winchester
Yes I have tried post, and tried cfhttpparam before I started this thead. I even asked the techie from USPS about the limitations on url strings, and he said that is the way they do it. Maybe only certain browsers have the 255 character limitation. I think it rather strange too to use url string

RE: USPS test 400 Bad Request

2005-09-12 Thread Russ
I kinda doubt it... since get is a url post... theoretically you can only post up to 255 characters in a get request... Have you tried post? Have you tried actually sending your xml in through a cfhttpparam? -Original Message- From: Stan Winchester [mailto:[EMAIL PROTECTED] Sent: Monda

Re: Can't use a CF mapping with CFFORMS? is this correct?

2005-09-12 Thread Mike Kear
Ray, it's quite likely I'm confused. I'm very easily confused - just ask my wife. I can't see what's wrong with this cfform tag, that works just fine on my dev pc, but when I ftp the same file to the production server, it doesnt work: blah blah blah When I turn on debugging for the Cffor

Re: USPS test 400 Bad Request

2005-09-12 Thread Stan Winchester
I thought so too, but they only accept "get". >Maybe they don’t' accept get requests? I'm assuming you need to use >method="Post" and post the xml there... > >-Original Message- >From: Stan Winchester [mailto:[EMAIL PROTECTED] >Sent: Monday, September 12, 2005 8:28 PM >To: CF-Talk >Sub

RE: USPS test 400 Bad Request

2005-09-12 Thread Russ
Maybe they don’t' accept get requests? I'm assuming you need to use method="Post" and post the xml there... -Original Message- From: Stan Winchester [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 8:28 PM To: CF-Talk Subject: USPS test 400 Bad Request Any ideas why when I do

Re: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Matt Robertson
On 9/12/05, Charles Polisher <[EMAIL PROTECTED]> wrote: > > There's a tutorial on throttling the e-mail loop > at http://tutorial256.easycfm.com/ > > That was basically the first generation of the trickler code. I revised it to provide failover recovery and posted it along with the original her

USPS test 400 Bad Request

2005-09-12 Thread Stan Winchester
Any ideas why when I do a test to the USPS test server I get a "400 Bad Request"? I have taken the sample code and cut and pasted it, then sent is via cfhttp as shown below: PRIORITY1002220008105Flat Rate BoxREGULAR Thank you, Aftershock Web Design, Inc. by: Stan Winchester President/Developer

Re: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Will Tomlinson
I've been using Matt's mail trickler. Works like a champ. http://mysecretbase.com/Slowing_Down_CFMAIL.cfm Will ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.co

Re: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Charles Polisher
On Sun, Sep 11, 2005 at 09:17:25PM -0400, Brian Polackoff wrote: > Does anyone know on a cfmx 6.1 box how to send using the CFMAIL tag a slew > of emails at a time. I have tried looping through, sending to a single > address at a time. I have also tried sending the message to every address > at o

Re: OT: Click-once submit button techniques?

2005-09-12 Thread Will Tomlinson
If it's CFMX7, you can do this: Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it f

Re: cfx_image or cfximage

2005-09-12 Thread Barney Boisvert
They're totally separate. If I recall correctly, Jukka's a very indepth image processing tag that utilizes it's own command language, while the other one is very simple. I might have that backwards, but I'm pretty sure it's right. I preferred Jukka's because the simple stuff wasn't much harder,

cfx_image or cfximage

2005-09-12 Thread Mike Soultanian
Does anyone know if the two are related? There is cfximage from gafware.com, and then there's cfx_image from http://www.kolumbus.fi/jukka.manner/ Does anyone know if one is based on the other, or if one is better, etc? Thanks! Mike ~

Re: Replacement for cfdirectory

2005-09-12 Thread Barney Boisvert
If you've got a directory with a million files and you need to check for the existance of a specific filename, it's going to be slow no matter what. I'd take a look at finding a new filesystem if you wan't break the directory down into smaller chunks. It's possible that some other file system wil

Re: Replacement for cfdirectory

2005-09-12 Thread Victor Moore
Thanks for your quick response. You are right, but I need something that is interactive, meaning that I need to check if the file being returned, exists and if not delete it. I will try to see if I can use filters and run the script a few times. If you have any script example that you can share

RE: Replacement for cfdirectory

2005-09-12 Thread Bobby Hartsfield
Batch files (or shell scripts) may come in handy ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 6:17 PM To: CF-Talk Subject: Replacement for cfdirectory Is there a

Re: Replacement for cfdirectory

2005-09-12 Thread Barney Boisvert
You're going to have to get off Java completely; the platform-independance it brings is great, but the performance costs make large-scale file operations horribly slow. I'd recommend something as native as you can to (like a shell script), and then just CFEXECUTE it. Doing that, you can return im

Replacement for cfdirectory

2005-09-12 Thread Victor Moore
Is there a more scalable option than cfdirectory? we have to perform some file manipulation (read a directory and delete files that are not in a db). Some directories have a size in excess of 25GB and 1 million files. Cfdirectory dies and takes the server down too (works fine for smaller jobs).

RE: OT: Click-once submit button techniques?

2005-09-12 Thread Bobby Hartsfield
Are using something like Process the form vars (or form.button.x) If you click a form button, image or not... and it submits. The form scope is there. Just use something else to check to see if the form was just submitted. Most any of the fields will work in it’s place. ..:.:.:.:.:.:.:.:.

RE: Click-once submit button techniques?

2005-09-12 Thread Bobby Hartsfield
Here are the functions I use to disable/enable buttons. The onclick of the button would call the disbtn(). It would only need to be re-enabled if you had some client side JS checks that found errors and popped up an alert() or something. You'd want to call enbtn() so they cold give it another go.

RE: MS Word Com problem with CF

2005-09-12 Thread Javier Arroyo
oh ...sorry ...I forgot to mention ...this is on CF5 ..and for varied and sundried reasons, we can't upgrade versions of CF, so I don't have releaseComObject available to me, but looking at the CF 7 docs, that would TOTALLY do what I need it to :( -Original Message- From: Dawson, Micha

Re: file system access security question

2005-09-12 Thread Ryan Guill
Yeah, yeah, everyone forget he said that bit about the database thing lol, no holy war here! Alright, sounds great Michael, thats what I was expecting, but didn't know if there was maybe something I wasn't thinking of. Thanks a lot for the response! On 9/12/05, Dawson, Michael <[EMAIL PROTEC

RE: MS Word Com problem with CF

2005-09-12 Thread Dawson, Michael
Try this: [cfset releaseComObject(objectName)] M!ke -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 2:51 PM To: CF-Talk Subject: MS Word Com problem with CF I am having to convert an asp program to CF and one of th

RE: file system access security question

2005-09-12 Thread Dawson, Michael
Yes, you are right. You have to keep these files "behind" a .cfm page (or any dynamic page, for that matter). You should keep your documents out of the web root so that they are not web-accessible. Your links would be formatted such as: www.mydomain.com/download.cfm&doc=123 In "download.cfm",

RE: MS Word Com problem with CF

2005-09-12 Thread Javier Arroyo
Yep ...that's me!! -Original Message- From: Ken Ketsdever [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 2:38 PM To: CF-Talk Subject: RE: MS Word Com problem with CF Javier, Did you graduate from Roseville High School, class of 1980? Ken Ketsdever [EMAIL PROTECTED]

RE: Small Problem with Query Duplicates

2005-09-12 Thread Mark Henderson
I have it sorted now I think, and it's the behaviour I expected Deanna - the duplicates (as in duplicate results) might have been misleading and is probably not the best term to describe this, in that I believe distinct IS working correctly, it just doesn't give me what I want. This problem comes

RE: MS Word Com problem with CF

2005-09-12 Thread Javier Arroyo
OK ...I just remembered what my issue was with application scope Using the sample here: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/comm on/html/wwhelp.htm?context=ColdFusion_Documentation&file=1585.htm ...the "second time through" where it tries to connect versus

RE: Click-once submit button techniques?

2005-09-12 Thread Damien McKenna
I just wrote this and it seems to be working: var dupeCounter = 0; function stopDupe() { if(dupeCounter >= 1) return false; else dupeCounter += 1; return true; } Then I just added the following to the submit buttons: onclick="stopDupe();"

RE: MS Word Com problem with CF

2005-09-12 Thread Ken Ketsdever
Javier, Did you graduate from Roseville High School, class of 1980? Ken Ketsdever [EMAIL PROTECTED] Sorry this is OT. -Original Message- From: Javier Arroyo [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 2:04 PM To: CF-Talk Subject: RE: MS Word Com problem with CF

RE: OT: Click-once submit button techniques?

2005-09-12 Thread Damien McKenna
> -Original Message- > From: Charlie Griefer [mailto:[EMAIL PROTECTED] > > Only problem is that when I add this to an and try using Firefox it causes none of the data to get passed to the form. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimu

Re: OT: Click-once submit button techniques?

2005-09-12 Thread Charlie Griefer
On 9/12/05, Damien McKenna <[EMAIL PROTECTED]> wrote: > Anyone got a simple JS function to block multiple submit-button clicks? > I've looked a few times but never found anything simple that worked and > was cross-browser compatible. Thanks. > > -- > Damien McKenna - Web Developer - [EMAIL PROT

OT: Click-once submit button techniques?

2005-09-12 Thread Damien McKenna
Anyone got a simple JS function to block multiple submit-button clicks? I've looked a few times but never found anything simple that worked and was cross-browser compatible. Thanks. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-

RE: MS Word Com problem with CF

2005-09-12 Thread Javier Arroyo
Well I though about that ...but one of the issues I have is that this client is going to I load balanced environment, so no telling which one of the 4 "load balanced" servers we would end up on, if I use application scope, won't that blow chunks if I end up on server 1 with an instance then the nex

Re: CFOBJECT type=java - severe problems

2005-09-12 Thread S . Isaac Dealey
It's possible... It's not something I've seen before, although that doesn't mean much... This is your own server right? you're not using this code on a shared server where you don't have access to the cf admin? If it's shared it's possible the security sandbox might not allow you to use cfobject/cr

RE: MS Word Com problem with CF

2005-09-12 Thread Andy McShane
What I generally do is to create an instance of word in the application scope. I first check to see if there is an instance already created and if not then I create one. I then use the same instance for all of my calls, I don't create any new instances and I don't end the one I have got, I just hav

Re: More RegExp help...

2005-09-12 Thread Scott Stroz
Good point...then I might consider this ListFirst(ListFirst(fileName,"."),"_") Again, this is assuming teh format of th efile name will not change.. On 9/12/05, Ben Doom <[EMAIL PROTECTED]> wrote: > > Except he also needs to remove the "_640x640" part. However, you could > do the same thing wit

Re: Is there a way to see webservice request generated by CFMX?

2005-09-12 Thread Bryan Stevenson
Bryan the broken record says: On 9/8/05, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > have a lok at the tools at mindreef.netvery cool!! > This will show your WS request and response in XML, raw, ascii, and hexif you really need all those ;-) Bryan Stevenson B.Comm. VP & Director of E-C

Re: Expiring time of cookies for session management

2005-09-12 Thread Douglas Knudsen
I agree. Note that the below will convert the cfid/cftoken to be memory only cookie without the use of jssessionid DK On 9/12/05, Barney Boisvert <[EMAIL PROTECTED]> wrote: > I'm almost positive that those two cookies are unexpiring, because > they're used for more than just session manage

RE: Is there a way to see webservice request generated by CFMX?

2005-09-12 Thread Stacy Young
Won't help...this is cfmx consuming a web service deployed in j2ee. Getting argument mismatch exception which means I don't even think the request goes out...so nothing to capture. I believe CF is trying to validate against the locally cached wsdl. This document has helped: http://hcc.musc.edu/res

file system access security question

2005-09-12 Thread Ryan Guill
Hey guys, A coworker asked me about this today and although I know there is an answer, and I am almost positive there is a very simple answer, for the life of me I can't think of it. Thinking forward about an upcomming project, we will have files that only certain parties are authorized to view.

Re: ODBC for Sybase on MX 7

2005-09-12 Thread Tom McNeer
Jeff, On 9/12/05, Pratte, Jeff <[EMAIL PROTECTED]> wrote: > > Don't tell me I have to have the enterprise edition just for > one lousy Sybase file? Not as long as you have the right Sybase ODBC Driver in place. I just did an installation last week which connected to Sybase, although it was an

MS Word Com problem with CF

2005-09-12 Thread javiera
I am having to convert an asp program to CF and one of the functions needed is a server based mailmerge. I have it working in CF, except it creates a Word app on the server EVERYTIME the template is invoked, I'm invoking as: Error creating word object.

Re: CFOBJECT type=java - severe problems

2005-09-12 Thread Bryan Stevenson
> It this a problem with the underlying java platform, or??? I'd have to say it's more likley your install and not Java or CF ;-) Isn't it fun being special ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

ODBC for Sybase on MX 7

2005-09-12 Thread Pratte, Jeff
Gang, We are upgrade from Cold Fusion 5 to 7. On the old system we created an ODBC connection to Sybase with no problems, but we can't get it to work with MX 7. Don't tell me I have to have the enterprise edition just for one lousy Sybase file? Can anybody offer detailed help? p.s. we are ru

Re: Can't use a CF mapping with CFFORMS? is this correct?

2005-09-12 Thread Raymond Camden
CF mappings are server side. The SCRIPTSRC value you are using acts client side, as far as I know. If you add a virtual directory that maps to the same place your CF mapping does, you should be fine. Secondly, the SCRIPTSRC attribute is meant to be used to include the stuff Flash Forms use. Typica

Re: CFOBJECT type=java - severe problems

2005-09-12 Thread Dimo Michailov
Yes, and the result is the same - the thread hangs indefinitely with no response whatsoever. It this a problem with the underlying java platform, or??? On 9/12/05, S. Isaac Dealey <[EMAIL PROTECTED]> wrote: > Have you tried using CreateObject() instead? > > > > or > > CreateObject("java",

Re: Expiring time of cookies for session management

2005-09-12 Thread Barney Boisvert
I'm almost positive that those two cookies are unexpiring, because they're used for more than just session management. The session timeout is performed on the server - after period X, the cookies are accepted, but not considered to be part of the session any more. If you le J2EE sessions in the C

Expiring time of cookies for session management

2005-09-12 Thread Dave.Phillips
Hi, I'm trying to clarify the expiration time for the Cookie.CFID and Cookie.CFTOKEN cookies created when a new session starts. Is it the length of the time that is specified in the sessionmanagement attribute of the cfapplication tag? If so, is this documented anywhere? I did find some docu

Re: More RegExp help...

2005-09-12 Thread Ben Doom
Except he also needs to remove the "_640x640" part. However, you could do the same thing with underscores instead of periods. --Ben Jann E. VanOver wrote: > And if the filename COULD contain other periods: > listDeleteAt(filename,listLen(filename,"."),".") > > which says, delete the last list

Re: Mail Management Program

2005-09-12 Thread Cedric Villat
Rey, This sounds very similar to our product CFTicket. It has threading, keeps history of customer contacts, allows you to reply/delete/forward all emails from the server, etc. You can take a look at it at http://www.cornfeed.com. There is an online demo that you can try, as well as a trial

RE: CFFILE Problem with windows 2003

2005-09-12 Thread Dawson, Michael
2003 is a lot tighter than 2000. I would try running the CF service(s) under an account that specifically has been permissions to read/write to the directory. M!ke -Original Message- From: Ricardo Perez [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 12:10 PM To: CF-Talk Sub

Can't use a CF mapping with CFFORMS? is this correct?

2005-09-12 Thread Mike Kear
I have found I can't get a CFFORM (flash version) to work on the production server, even though it works fine in the dev environment. There's some script source issue, so to get around it for now, I've uploaded the scripts from the CFIDE folder into the site, and used the SCRIPTSRC="" attribute

Re: More RegExp help...

2005-09-12 Thread Jann E. VanOver
And if the filename COULD contain other periods: listDeleteAt(filename,listLen(filename,"."),".") which says, delete the last list item using "." as list delimiter Scott Stroz wrote: >I love RegEx, and use them frequently. However, they are not always my first >choice. I would actaully use: > >

Re: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Adrocknaphobia
No way. One of my apps sends 6k at a time without problem. Try pointing CF to a non-existent mail server for testing. Wrap cftry around the cfmail tag and take a look at the exact query vars when the error is throw. (By pointing to a non-existent server the emails will get put into the undeliverabl

Re: CFFILE Problem with windows 2003

2005-09-12 Thread Ricardo Perez
The CF services are running as a local system account. Richard On 9/12/05, Dawson, Michael <[EMAIL PROTECTED]> wrote: > Are you running the CF services as a domain account with the correct > permissions? > > M!ke > > -Original Message- > From: Ricardo Perez [mailto:[EMAIL PROTECTED] >

RE: CFFILE Problem with windows 2003

2005-09-12 Thread Dawson, Michael
Are you running the CF services as a domain account with the correct permissions? M!ke -Original Message- From: Ricardo Perez [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 11:03 AM To: CF-Talk Subject: Re: CFFILE Problem with windows 2003 Only in the iexplorer send me a "E

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Kevin Aebig
We had issues with sending personalized, generated emails out, so instead of sending them all out with a scheduled task, we send out a limited amount every 10 minutes until we get them all done... Kevin -Original Message- From: Brian Polackoff [mailto:[EMAIL PROTECTED] Sent: September 1

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Raymond Camden
No, you may want to post to the Galleon Forums (sorry, the Galleon section of my forums, ie, the forums for the forums :) and see if anyone has one available. On 9/12/05, Wayne Putterill <[EMAIL PROTECTED]> wrote: > I have been looking at Galleon (and have downloaded it), I can't find > any oracl

problems implementing Ultraseek Java API

2005-09-12 Thread E . Harvey
We're struggling to use the Verity Ultraseek Java XPA Search API with CFMX 7 (Windows 2000, IIS, SQL Server 2000). Has anyone had experience with this implementation? Specifically, how do you get started by instantiating an UltraseekServer object and setting the server name, port & protocol? eg

Re: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Bryan Stevenson
just a thoughtbut if you know the data is there...perhaps there is a problem with your query (ie some rows are missing adresses for some reason)?? Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Brian Polackoff
Unique to each person no bcc'ing... Thanks. -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 12:12 PM To: CF-Talk Subject: RE: CFMail Errors when mass mailing (not spam) Are the emails unique or are you bcc'ing it to the recipients? Ke

Re: CFFILE Problem with windows 2003

2005-09-12 Thread Howie Hamlin
I don't think we did anything special for CFFILE to work. What I do remember is that the web server has to have permissions to write to the Windows temp folder and that there was a bug in CFMX where none of the CFFILE temp files were deleted as they should be and the disk would eventually fill

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Kevin Aebig
Are the emails unique or are you bcc'ing it to the recipients? Kevin -Original Message- From: Brian Polackoff [mailto:[EMAIL PROTECTED] Sent: September 12, 2005 8:45 AM To: CF-Talk Subject: RE: CFMail Errors when mass mailing (not spam) Sending about 600 mails at a time, the error range

Re: payflow pro and CF7 multi-instance

2005-09-12 Thread jonese
Got it! had to restart both the jrun admin and jrun cfusion service for it to catch. jonese On 9/12/05, jonese <[EMAIL PROTECTED]> wrote: > > simeon et al, > > So i have my verisign.jar in the C:\JRun4\lib and i have my > CFXPayFlowPro.class in the > C:\JRun4\servers\cfusion\cfusion-ear\cfus

Re: CFFILE Problem with windows 2003

2005-09-12 Thread Ricardo Perez
Only in the iexplorer send me a "Error 500 can't find the file location", i disabled the friendly errors in explorer but it send me the same error. I try auditing the folder trougth windows permission but appears to be problem between iis and coldfusion because in event viewer doesn't show anythin

Re: payflow pro and CF7 multi-instance

2005-09-12 Thread jonese
simeon et al, So i have my verisign.jar in the C:\JRun4\lib and i have my CFXPayFlowPro.class in the C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\classes directory. I added a referance to each of these in the JVM setting from the JRUN Administrator Settings Screen for my CF Instanc

Mail Management Program

2005-09-12 Thread Rey Bango
Hi Guys, We're interested in purchasing a mail management application that will allow us to handle our mail-based customer service needs. The system would need to be able to read in mail from our mail server, store it into a database and allow us to reply, forward, delete, and maintain a conve

Re: CFOBJECT type=java - severe problems

2005-09-12 Thread S . Isaac Dealey
Have you tried using CreateObject() instead? or s. isaac dealey 954.522.6080 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://www.fusiontap.com http://coldfusion.sys-con.com/author/4806Dealey.htm ~~~

Re: CFFILE Problem with windows 2003

2005-09-12 Thread Howie Hamlin
Any errors? We have CFFILE working fine on the same setup. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion and BlueDragon applicat

RE: XML, XSD, XSL

2005-09-12 Thread S . Isaac Dealey
I love it when that happens. :) > Thanks. And the most beautiful thing about this is that > this is it looks > like I am already doing the basic version of this. > Andy > -Original Message- > From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] > Sent: Monday, September 12, 2005 9:31 AM > To

CFFILE Problem with windows 2003

2005-09-12 Thread Ricardo Perez
Hello! I have a form that upload a file into server, it worked fine in windows 2000 (iis 5) but when i put the same form into windows 2003 (iis 6) it doesn't work! I try to grant write permissions to IIS User but it fails too. Any one has an idea about this? Thanks for your help! Richard

CF 6.1: Problem with COM Object

2005-09-12 Thread Kevin Roche
I have a page that uses a COM object in CF5 and tried to run it with CF6.1 but got the following when using An exception occurred when instantiating a Com object. The cause of this exception was that: java.lang.NullPointerException. The code being executed at that point is: I saw another

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Wayne Putterill
I have been looking at Galleon (and have downloaded it), I can't find any oracle scripts for it though - are they on the site? On 9/12/05, Raymond Camden <[EMAIL PROTECTED]> wrote: > People have written scripts for Galleon for Oracle, but it's not > "officially" supported. Galleon may be downloade

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Brian Polackoff
I have verified all records in the database have a valid email in the db. I believe the problem is stemming from the single thread 6.1 uses to send mail where as cf 7 cfmail is a multi-threaded process. The cftry will not work also because I have found the following: Using a recordset of

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Raymond Camden
People have written scripts for Galleon for Oracle, but it's not "officially" supported. Galleon may be downloaded at my blog. On 9/12/05, Wayne Putterill <[EMAIL PROTECTED]> wrote: > Does anyone know of a free CF forum that uses Oracle as the DB? > > The ability to attach files to posts would b

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Allan Cliff
Just put a cftry tag around your cfmail. You must have an empty "TO" field in the db or something. Allan -Original Message- From: Brian Polackoff [mailto:[EMAIL PROTECTED] Sent: 12 September 2005 16:45 To: CF-Talk Subject: RE: CFMail Errors when mass mailing (not spam) Sending about 6

RE: CFMail Errors when mass mailing (not spam)

2005-09-12 Thread Brian Polackoff
Sending about 600 mails at a time, the error ranges from: CFMail requires a To: attribute when I have tested it is there to the general cf was looking at the following code... Thanks, Brian -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Sunday, September 11, 200

CFOBJECT type=java - severe problems

2005-09-12 Thread Dimo Michailov
Can anyone help with this problem, please? It seems that does not work for me at all. Whenever I try to run this tag, the ColdFusion server just hangs and the browser keeps waiting for any result. I have tried several different types of java objects, and the result is the same - the box hangs,

RE: XML, XSD, XSL

2005-09-12 Thread Andy
Thanks. And the most beautiful thing about this is that this is it looks like I am already doing the basic version of this. Andy -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 9:31 AM To: CF-Talk Subject: RE: XML, XSD, XSL MVC = Mode

RE: XML, XSD, XSL

2005-09-12 Thread S . Isaac Dealey
MVC = Model-View-Controller It's the most popular way of thinking about software design for maximum code-reuse. Wikipedia actually isn't a bad place to start for this: http://en.wikipedia.org/wiki/MVC > MVC? And can you point me to some starter locations? > -Original Message- > From:

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Wayne Putterill
It has to be CF/Oracle as it will be on one of our in-house servers, if I could use PHP I would have a wealth of free stuff to chose from :( On 9/12/05, Thomas Chiverton <[EMAIL PROTECTED]> wrote: > On Monday 12 September 2005 14:36, Wayne Putterill wrote: > > A wiki would be great (didn't think o

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Thomas Chiverton
On Monday 12 September 2005 14:36, Wayne Putterill wrote: > A wiki would be great (didn't think of that). Do you know of one? phpWikki looks very nice but I've not used it, the original twikki is still going strong too. -- Tom Chiverton Advanced ColdFusion Programmer

RE: cfformgroup question

2005-09-12 Thread Mike Nimer
Use the cfformitem type="spacer" tag. Like this: ---nimer > -Original Message- > From: Tony [mailto:[EMAIL PROTECTED] > Sent: Sunday, September 11, 2005 12:16 AM > To: CF-Talk > Subject: cfformgroup question > > hi there. > > i have some buttons in a cffor

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Wayne Putterill
A wiki would be great (didn't think of that). Do you know of one? On 9/12/05, Thomas Chiverton <[EMAIL PROTECTED]> wrote: > On Monday 12 September 2005 12:38, Wayne Putterill wrote: > > server it will be on, so it's a bit of a tall order I know. I suppose > > something like a blog or even a docume

RE: XML, XSD, XSL

2005-09-12 Thread Andy
MVC? And can you point me to some starter locations? -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Heh... sorry. :) You sound pretty sharp from this end. Give it some time, read some articles on general MVC, you'll figure it out. :) > Sir, > You are WAY over my hea

Re: cfapplication

2005-09-12 Thread daniel kessler
no, 6.1 for now. 7 sometime in the next few months. and thanks Dave for the server variables. I didn't know that they existed. >You using CFMX7? ~| Find out how CFTicket can increase your company's customer support efficiency

Re: Small Problem with Query Duplicates

2005-09-12 Thread Deanna Schneider
Are you sure that you're really getting duplicates of entirely unique rows? Is this a view you're querying, where you might have one company with multiple phone/email/urls? If you're really getting duplicate distinct rows, that's some odd behavior. If you're getting multiple rows because in each

Re: cfFile - uploading safely

2005-09-12 Thread daniel kessler
thanks folks. This does help. I appreciate the assistance. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Lo

RE: cfapplication

2005-09-12 Thread Dave.Phillips
#server.coldfusion.productversion# I believe that will do it. Dave -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 8:06 AM To: CF-Talk Subject: Re: cfapplication I am not sure. I tried to find a function that gives me the version of

Re: cfapplication

2005-09-12 Thread daniel kessler
I am not sure. I tried to find a function that gives me the version of cold fusion, but I could not. >You using CFMX7? ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoff

Re: Is there a free forum for CF/Oracle?

2005-09-12 Thread Thomas Chiverton
On Monday 12 September 2005 12:38, Wayne Putterill wrote: > server it will be on, so it's a bit of a tall order I know. I suppose > something like a blog or even a document store might do the trick - > basically I'm open to suggestions! Why not a Wikki ? -- Tom Chiverton Advanced ColdFusion Pr

Is there a free forum for CF/Oracle?

2005-09-12 Thread Wayne Putterill
Does anyone know of a free CF forum that uses Oracle as the DB? The ability to attach files to posts would be nice, as would code colouring, but anything reasonable would do as it's for internal use (allowing a team of developers to pass code snippets and hints etc. around). There is no budget (

RE: Can CSS and Layers Take the Place of Tables for Displaying Dynamic Data?

2005-09-12 Thread Calvin Ward
I think basically we are saying that there isn't a layer object (cept in NN 4...) but there is a layer concept... -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Friday, September 09, 2005 1:44 PM To: CF-Talk Subject: Re: Can CSS and Layers Take the Place of Tab

RE: Small Problem with Query Duplicates

2005-09-12 Thread CF-DEV
What part is being duplicated? The URL? All of the records? If it is all the records then you should have a look at your Database. Unless duplication is okay in your DB. What is the ID field? Is it an auto generated ID or an ID Field you are populating? -Original Message- From: Mark

RE: Help! Is there any way to log all database query times to a log?

2005-09-12 Thread Robertson-Ravo, Neil (RX)
You should also consider downloading and using SeeFusion from Webapper - this will seriously help you in finding bottlenecks. -Original Message- From: Smith, Ed [mailto:[EMAIL PROTECTED] Sent: 09 September 2005 17:34 To: CF-Talk Subject: Help! Is there any way to log all database query t

RE: Simple Regular Expression?

2005-09-12 Thread Andy McShane
Thanks Michael, that did the trick just fine. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: 09 September 2005 18:19 To: CF-Talk Subject: RE: Simple Regular Expression? I'm not sure if someone already answered this, but you should anchor the start and end of the

Re: Can CSS and Layers Take the Place of Tables for Displaying Dynamic Data?

2005-09-12 Thread Neculai Macarie
> >>CSS is perfect for positioning once you understand how to use it and > some of > the "quirks" between browsers. > > The problem is taht there is no if(IE)... else... possibility in CSS It's not in the CSS spec, but there are techniques for hiding/showing CSS to IE (conditional comments, CSS ha

Re: CFMAILing a FILE input

2005-09-12 Thread Neculai Macarie
> Hi guys. I'm still a noob. > > So I've got this form, and I'm CFMAILING it somewhere. > > The form has a FILE input field, for adding a photo. I'd like it to > attach the photo to the CFMAIL. You know, send the photo as an > attachment. > > How do I do that in the CFMAIL tag? .