Well here we go .. SOAP and PHP

2004-03-17 Thread Michael Kear
Well if there's anyone left there who doesn't look at my posts with fear and loathing,I've put a draft document on my site, waiting for approval of the copyright owner.I would love if someone who has PHP would look at my article,follow the instructions and see if they give accurate and correct

Re: Generating RSS feed - validating

2004-03-17 Thread Roger Benningfield
Looks like I have to drop the idea of using RSS, and go back to trying to figure out how to show PHP site developers how to use WSDL in PHP. Michael, It would probably be far easier on both sides to use XML-RPC instead of SOAP. XML-RPC support on PHP is supposedly quite stable, and you can use

user friendly error pages in Fusebox

2004-03-17 Thread David Ashworth
Right I need to develop some friendly error pages to appear in my applications instead of the ones you get for SQL and Fusebox errors within Fusebox applications - these are the Error occured whilst processing reports pages. IS there anyway of making them more user friendly and incorporate

RE: user friendly error pages in Fusebox

2004-03-17 Thread Pascal Peters
Look at cferror -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: woensdag 17 maart 2004 11:11 To: CF-Talk Subject: user friendly error pages in Fusebox Right I need to develop some friendly error pages to appear in my applications instead of the ones

Flash 7 for Unix

2004-03-17 Thread Thomas Chiverton
Does anyone have any clues about when FlashPlayer 7 is due for Unix ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749 834900 Fax: +44 (0)1749 834901 web:

OT Windows Update tool

2004-03-17 Thread Dan O'Keefe
I seem to remember seeing a thread about Windows Update and a command line tool to perform the same functionality, but cannot find it in the archives. Anybody know what that was? I think Dave Watts spoke about it. Thanks, Dan [Todays Threads] [This Message] [Subscription] [Fast

RE: OT Windows Update tool

2004-03-17 Thread Robertson-Ravo, Neil (RX)
probably hfnetchkvisit www.shavlik.com http://www.shavlik.comand get that tool...its v.good...these people built Windows Update for MS _ From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 11:51 To: CF-Talk Subject: OT Windows Update tool I seem to remember seeing a

RE: CFHTTP and nulls in csv

2004-03-17 Thread MILAN MUSHRAN
Try A1,null,C1 for the second row. From: Stevenson, Christopher [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CFHTTP and nulls in csv Date: Wed, 17 Mar 2004 17:58:09 +1100 Hello, When using CFHTTP in CFMX... CFHTTP url="" method=get delimiter=,

SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
So, I'm messing around with nested sets for dealing with tree data. But, I've come across a snag. It would appear that you can't alphabetize the children at the same level, at least I haven't figured out how to do it. Does anyone have a solution for that? Note: I'm using a modified version of

CFContent Issues

2004-03-17 Thread Robert Everland III
I use cfcontent to throw files to the users from a secure area. The problem I am having is that when I open a PDF after being prompted to save or open then I close it then try to go back to it, it just gives me an image placer on the screen when I click on the link. It no longer asks me what to

Remove special chars to pass in URL

2004-03-17 Thread rob.stokes
Hi everyone, Say if I wanted to pass this into a URL: AC(DB)B(SD) As a single URL variable value, how do I remove special characters? Cheers [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Remove special chars to pass in URL

2004-03-17 Thread Bernd VanSkiver
Look at the URLEncodedFormat() function. Bernd VanSkiver [EMAIL PROTECTED] 801.520.5957 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 6:52 AM To: CF-Talk Subject: Remove special chars to pass in URL Hi everyone, Say if I wanted to

cfmx and mscrm

2004-03-17 Thread Tony Weeg
hi there! has anyone here successfully implemented any sort of integration between Microsoft's CRM and ColdFusionMX. Specifically hitting one of the webservices that CRM exposes for adding accounts/cases, etc... thanks! ...tony tony weeg senior web applications architect navtrak, inc.

RE: Remove special chars to pass in URL

2004-03-17 Thread Tangorre, Michael
Remove them before putting them into the URL or removing them when you want to use the URL variable value? #Replace(url.varName,(,,ALL)# #Replace(url.varName,(,,ALL)# Say if I wanted to pass this into a URL: AC(DB)B(SD) As a single URL variable value, how do I remove special characters?

RE: Remove special chars to pass in URL

2004-03-17 Thread Craig Dudley
This should do it on url ?var=urlencodedformat(AC(DB)B(SD),utf-8) on target page var = urldecode(url.var,utf-8) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 13:52 To: CF-Talk Subject: Remove special chars to pass in URL Hi everyone,

query: foreign key

2004-03-17 Thread Daniel Kessler
I have a login and a save_game database. loginDB:| id | name | pw | save_gameDB:| id foreign key to loginDB id | score | game info | I'm querying the save_game database for a list of the top 20, but right now I'm getting the save_game id.I want to replace that with the loginDB name info from

query: foreign key

2004-03-17 Thread Daniel Kessler
forgot to post the query, here it is: SELECT * FROM bodyfun_save_game, MAX(20) ORDER BY high_score DESC At 9:00 AM -0500 3/17/04, Daniel Kessler wrote: I have a login and a save_game database. loginDB:| id | name | pw | save_gameDB:| id foreign key to loginDB id | score | game info | I'm

RE: alphabetizing nested sets

2004-03-17 Thread Bernd VanSkiver
I built a category system once that does what you want to do, I did it with CF5, so no CFC's then, but I had a single column for parenthood to keep track of what the parent was, if no parent then that value was 0. Then to output I used a recursively called include file to loop through the data.The

Re: query: foreign key

2004-03-17 Thread gregs
If I undertsood you correctly and if you are using MS SQL [not sure about other DBMSs], you could awlays do an update from a select: here is an example I used recently UPDATE someUsersTable SET someUsersTable.EmailPrivate = someOtherJoinTable.PublicEmail FROM someUsersTable INNER JOIN

RE: query of query trimming?

2004-03-17 Thread Jerry Johnson
Seth, What version of CF? Jerry Johnson [EMAIL PROTECTED] 03/16/04 05:35PM Think anyone could give it a try for me?Just put some carriage returns at the start of a field, then have two queries, one pulling it out direct, then another a QofQ on that one. [Todays Threads] [This Message]

RE: query of query trimming?

2004-03-17 Thread Turetsky, Seth
CFMX 6.0 on Win2k Think moving it to Linux would change anything? -seth -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 9:26 AM To: CF-Talk Subject: RE: query of query trimming? Seth, What version of CF? Jerry Johnson [EMAIL

Loosing sessions on the same server with SSL

2004-03-17 Thread stas
I've got an e-commerce app (a very old version of CF Webstore). My ISP has provided me with an SSL url to use for the final stages of the purchasing process. So during browsing, production selection the user is on: http://mystore.com/ The SSL protected pages go through:

RE: user friendly error pages in Fusebox

2004-03-17 Thread Qasim Rasheed
If you are using Fusebox 4.0, then i guess there is a exception handling plugin available on fusebox.org. Qasim -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 5:11 AM To: CF-Talk Subject: user friendly error pages in Fusebox Right I

RE: query of query trimming?

2004-03-17 Thread Burns, John D
If you're running 6.0, there are a lot of issues fixed in 6.1.This could be one of them.Perhaps updating would fix it. John -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 9:28 AM To: CF-Talk Subject: RE: query of query trimming? CFMX

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Jochem van Dieten
Deanna Schneider wrote: So, I'm messing around with nested sets for dealing with tree data. But, I've come across a snag. It would appear that you can't alphabetize the children at the same level, at least I haven't figured out how to do it. Does anyone have a solution for that? The results

RE: query of query trimming?

2004-03-17 Thread Jerry Johnson
On cf5 and cfmx 6.1 the string lengths are the same from a direct call and a qoq call. I tested against an ntext field, rather than a varchar2(4000) My test: CFQUERY NAME=test DATASOURCE=judgeprofiles SELECTtop 1 links2004 FROMjudgeprofiles where links2004 is not null /CFQUERY

RE: user friendly error pages in Fusebox

2004-03-17 Thread Tangorre, Michael
The plugin from the fusebox.org site does not work with the latest version of the core files. My suggestion (which is what I did) was to write my own. Rethrow the exceptions and catch them in the fuseaction exception phase. There you can wrap your nice layout around them, etc... Contact me off

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
- Original Message - From: Jochem van Dieten The results in a nested set are supposed to be completely ordered. So the way to handle this is to put them in the right place when you insert them, not when you are querying them. That's what I figured. I should have added that that's

RE: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Vince Bonfanti
Hi Karuna, Yes, it does work. Your example worked fine in my test environment (I use New Atlanta's ServletExec 5.0 as the J2EE Server). I'll have one of our engineers run the test on JBoss 3.2.3 and let you know what we find (BD 6.1 is still in beta and we haven't run full regression on JBoss

RE: SOT: alphabetizing nested sets

2004-03-17 Thread Tangorre, Michael
Google the name Joe Celko. There are code samples from him all over the net that show how to insert, update, and delete parents and leafs from the nested set (Tree). I used code from the web to setup a role based permission structure a year or so ago... The queries were awesome, but took me a long

Heap Size

2004-03-17 Thread Michael Hodgdon
Hey CFer's, was wondering if anyone has any recommendations for setting initial and max heap size relative to amount of RAM on the machine. We typically have RAM usage of about 450MB (total) out of 1GB...so 45-50% usage. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
I have the basics down, thanks. I even have a CFC doing all my inserts, updates, and deletes right now. But, nothing I've found explicitly talks about alphabetizing and best practices between having the end user choose the point in the tree (at the sibling level) for the new node vs. running a

RE: query of query trimming?

2004-03-17 Thread Turetsky, Seth
Thanks Jerry, I think it must be something fixed in 6.1 then, since we are running 6.0 here.I questioned my yesterday's sanity and tried it all again today, same thing happened. I'm not sure why there are hesitant to put 6.1 on here, but I did a workaround by replacing the breaks with BR's in the

RE: SOT: alphabetizing nested sets

2004-03-17 Thread Tangorre, Michael
I'm not following you? What do you mean by alphabetizing and having the end user choose the point in the tree The parents determine the children, choosing a specific location at any level defeats the purpose of the tree, doesn't it? I have the basics down, thanks. I even have a CFC doing all

Re: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Karuna Pandey
yes sure... here is my index.jsp ...its the one that blue dragon itself has provided. = file : index.jsp = html head titleBlueDragon JSP Test Page/title /head body bgcolor=#FF h2BlueDragon JSP Test Page/h2 pHello from BlueDragon! pIt is

Re: Loosing sessions on the same server with SSL

2004-03-17 Thread Mary Jo Sminkey
It's a shared SSL account. What I am noticing is that the session variable that holds the basket gets erased after the users hits the SSLd pages. I'd appreciate some insight... Thanks! Hi Stas, I'm guessing that you are using IE6 on CFMX? The latest versions of IE6 have a bug (or feature if you

Re: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Karuna Pandey
Hi Vince, I also tried to run this simple piece if code in my cold fusion page --- HTML HEAD TITLE My test page /TITLE /HEAD BODY bgcolor=#CC my test page cfset tempVar=5 cfoutputtemp Value= #tempVar# cfset pc=GetPageContext() /cfoutput /BODY /HTML

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
- Original Message - From: Tangorre, Michael I'm not following you? What do you mean by alphabetizing and having the end user choose the point in the tree The parents determine the children, choosing a specific location at any level defeats the purpose of the tree, doesn't it?

RE: SOT: alphabetizing nested sets

2004-03-17 Thread Bernd VanSkiver
Funny thing about Joe, I'm sitting in a class that he is teaching right now :) Bernd VanSkiver [EMAIL PROTECTED] -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 7:53 AM To: CF-Talk Subject: RE: SOT: alphabetizing nested sets Google

RE: SOT: alphabetizing nested sets

2004-03-17 Thread Tangorre, Michael
Ask him to kindly sit down and respond :-) Funny thing about Joe, I'm sitting in a class that he is teaching right now :) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Jochem van Dieten
Deanna Schneider wrote: I have the basics down, thanks. I even have a CFC doing all my inserts, updates, and deletes right now. I am sure a lot of people would be happy to see that CFC at cfczone.org Jochem -- I don't get it immigrants don't work and steal our jobs - Loesje [Todays

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
- Original Message - From: Bernd VanSkiver Funny thing about Joe, I'm sitting in a class that he is teaching right now :) Well, then, you can ask him about this very topic, can't you? :) (Oh, to take a class from Joe) [Todays Threads] [This Message] [Subscription] [Fast

RE: SOT: alphabetizing nested sets

2004-03-17 Thread Bernd VanSkiver
Hmm, probably could.I see him every day.I am going to Northface University and he is an instructor here. -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 8:56 AM To: CF-Talk Subject: Re: SOT: alphabetizing nested sets - Original

RE: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Vince Bonfanti
Now that's really curious. Can you go to the BlueDragon admin console, to the runtime state page; at the bottom is a version number that should look like 6,1,0,226. Can you tell me which version you're running? The GetPageContext() function is supported by all BlueDragon versions except the free

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
Yah, well, I have to get it all working correctly, first. It's based off the one in the CFDJ magazine - but I'm trying to finesse it so that it handles multiple trees the way Celko proposes (i.e. all with left = 1 instead of just above the previous tree). Though, I might give up on that and go

localhost:8500 slower than remote host!

2004-03-17 Thread rob.stokes
Hi again all, Anyone got any ideas why my localhost:8500 Coldfusion server is slower to access/process a page than if the same page were accessed on my remote development coldfusion server? Both Coldfusion servers are geographically at different locations across the uk, but both access the same

Path Question

2004-03-17 Thread Mickael
Hi All, I use this code to find the current folder that I am in for cfdirectory cfset thisPath=ExpandPath(*.*) cfset thisDirectory=GetDirectoryFromPath(thisPath) How do I get the folder the that is up one level? Thanks Mike [Todays Threads] [This Message] [Subscription] [Fast

RE: localhost:8500 slower than remote host!

2004-03-17 Thread Nando
Do you have debugging enabled on the local host? And are you using CFC's? The debugging output can slow the server down substantially, especially if you are using CFC's a lot. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 5:13 PM To:

Re: localhost:8500 slower than remote host!

2004-03-17 Thread Robert Everland III
What are the specs of the machine? Is the development server running a version of Windows server? Bob Hi again all, Anyone got any ideas why my localhost:8500 Coldfusion server is slower to access/process a page than if the same page were accessed on my remote development coldfusion

Re: OT Windows Update tool

2004-03-17 Thread Dan O'Keefe
probably hfnetchkvisit www.shavlik.com http://www.shavlik.comand get that tool...its v.good...these people built Windows Update for MS _ From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 11:51 To: CF-Talk Subject: OT Windows Update tool I seem to remember seeing a

Re: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Karuna Pandey
Hey Vince, I found Runtime State under General,Datasources and File Cache sections. This is what I got in the Runtime State of the General Section. === Engine Revision $Revision: 3.163.2.28 $ $Date: 2003/05/21 14:02:55 $ Java Virtual Machine Sun Microsystems Inc.more information

server session settings

2004-03-17 Thread David Ashworth
Good afternoon. On both my development server and live server I have an application running which requires login. I have two scenarios that are occuring despite both servers having the same session settings and using the same code: On the live server, if you log in on one browser, you can

Re: Path Question

2004-03-17 Thread Ubqtous
Mickael, On 3/17/2004 at 11:16, you wrote: M I use this code to find the current folder that I am in for cfdirectory M cfset thisPath=ExpandPath(*.*) M cfset thisDirectory=GetDirectoryFromPath(thisPath) M How do I get the folder the that is up one level? cfset parentPath=ExpandPath(../) ~

Re: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Karuna Pandey
Admin Console: BlueDragon for J2EE Servers 3.0.2 Developer Edition Hoever I have both Blue Dragon 3.0 and 6.0(beta) on my machine. Just curious why 3.X version is being used by JBOSS. Also since they both support J2EE and the getPageContext() I don't think that may be the problemwill it???

RE: Path Question

2004-03-17 Thread Ryan Kime
CGI.PATH_INFO will get you started, then do a find on thisDirectory to get the location. Go from there and find the previous forward slash. HTH, Ryan -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 10:16 AM To: CF-Talk Subject: Path

RE: Path Question

2004-03-17 Thread Pascal Peters
cfif ListLen(thisDirectory,/\) GT 1 cfset parentDirectory = ListDeleteAt(thisDirectory,ListLen(thisDirectory,/\),/\) /cfif Not tested You are aware that ExpandPath will give you the path starting from the template called by the request? This may not be the directory of the template where the

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Janet Schmitt
Deanna - A little late in the discussion, but what are you trying to sort by? If is it category, how about this? SELECT child.category, COUNT(child.lft) AS lvl, child.lft, child.rgt, child.categoryid FROM categoryparent, categorychild WHERE child.lft BETWEEN parent.lft AND parent.rgt GROUP BY

Mail Header Problem

2004-03-17 Thread Mark Leder
In past discussions on this list, I've seen that some people suggest that the CFMail mailerID parameter for outgoing mail be set to a build of Outlook, Eudora or some other desktop client, rather than using the CFMail default, which in my case would be Cold Fusion Application Server 6.1.This was

insert image into generated excel excel

2004-03-17 Thread Douglas.Knudsen
Ok, I'm creating an excel report via cfcontent/cfheader and HTML tables.The report works fine.I want to insert a graph produced via cfchart.any ideas?I'm stumpedNo, I'm not going to use COM at all, can't. thanks! -- Douglas Knudsen Alltel ACI IT Rapid Response Team (o) 678-351-6063 (c)

RE: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Vince Bonfanti
Support for GetPageContext() was just added in BD 6.1. It's not in 3.0.2, so that's why you're seeing the problem. If BD 3.0.2 and BD 6.1beta are installed in separate webapps then you should be able to run them independently on the same server, unless JBoss is doing something wrong with the

Paragraphformat tag and the like

2004-03-17 Thread Kevin Marino
Question. I have an issue where when I use the CF paragraphformat function my last line gets a p/p, even if I trim the textarea field first. This does not happen if I use the customtags textareaformat and paragraphformat2, but these tags do not insert a closing /p tag.Though it is not necessary

Re: Mail Header Problem

2004-03-17 Thread Michael Dinowitz
Try adding all 3 of these to the mail. Spam assassin is seeing that one exists but not the other, which says its hand coded and probably spam: X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In past discussions

Re: SOT: alphabetizing nested sets

2004-03-17 Thread Deanna Schneider
Nope. That works for very small trees (single nodes). But as soon as you get multiple child nodes, it messes up. CategoryLVLLFTRGT Parent 0 ABC child 269 Child 1 225 A child of child1 334 AB child of abc ch378 I know it has to be done on the front-end (on insert). Just not sure the best way

Re: insert image into generated excel excel

2004-03-17 Thread Morgan Senkal
Doug, can you post the code that creates the report?I'll be needing to do something similar soon...I can jump ahead a bit on my project to that point and see if I can help out.Thanks! Ok, I'm creating an excel report via cfcontent/cfheader and HTML tables.The report works fine.I want to insert

Re: server session settings

2004-03-17 Thread Morgan Senkal
David- I would first check the settings for session variables in both the dev and prod CF administrator and ensure they're both set to the same timeout.I've found that cf session variables get dumped *in theory* on browser exit.Two methods I've considered are setting up a logout screen; however

RE: server session settings

2004-03-17 Thread Tangorre, Michael
It works because you never allow the cookies to be written to disk, you are making them memory resident so that when the browser closes, the cookies are lost, thus the session is lost. !--- code to force session end on browser close --- cfif IsDefined(Cookie.CFID) AND

Re: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Karuna Pandey
IT WORKED !!! Thanks Vince Yes the problem was with BD 3.0.2. Both were installed as 2 seperate web-apps but JBOSS only looked at 3.0.2 for some reason. After I removed BG 3.0 everything works fine. THANKX A MILLION Cheers :-)) Karuna Support for GetPageContext() was just added in BD

RE: server session settings

2004-03-17 Thread Dave Watts
Basically, sessions are not being killed when the browser is closed and even so, they should not be transerable to a new browser, which would appear to be what they are doing. By default, sessions are not closed when you close the browser. The cookies that tie the session to the browser are

RE: server session settings

2004-03-17 Thread Dave Watts
I've found that cf session variables get dumped *in theory* on browser exit. No, they do not. They are not supposed to be, either. I then encountered this bit of code which solved the same problem that I was having: !--- code to force session end on browser close --- cfif

Cfsearch

2004-03-17 Thread Kurt Knazek
I have noticed that in ColdFusion MX you no longer have the ability to optimize a search collection except from the Admin panel. Is there away to still optimize a search collection for outside the admin ? Thanks /Kurt [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: Paragraphformat tag and the like

2004-03-17 Thread Jamie Jackson
On Wed, 17 Mar 2004 12:28:55 -0500, in cf-talk you wrote: Question. I have an issue where when I use the CF paragraphformat function my last line gets a p/p, even if I trim the textarea field first. I think trim handles whitespace, but not control characters. You might need to do something like

RE: insert image into generated excel excel

2004-03-17 Thread Douglas.Knudsen
sure, wish I could here more on my question though...oh, I'm stuck on Office97 too...hey, we got like 25,000 employees!LOL! OK, generally folks just dump plain jane HTML tables and tweak teh content header of the doc like this CFHEADER NAME=Content-Disposition VALUE='Inlinefilename=foo.xls'

RE: insert image into generated excel excel

2004-03-17 Thread Douglas.Knudsen
ok, so this is a doable thing as there is at least one SW package out there that claims to do this without COM.I'm wondering if some sort of encoding is needed, like Base64 or something. Doug -Original Message- From: Knudsen, Douglas Sent: Wednesday, March 17, 2004 11:55 AM To: CF-Talk

RE: Paragraphformat tag and the like

2004-03-17 Thread Kevin Marino
Ill give that a whirl. thanks -Kevin Marino -- Webmaster - HealthObjects [EMAIL PROTECTED] -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 1:56 PM To: CF-Talk Subject: Re: Paragraphformat tag and the like On Wed,

RE: Cfsearch

2004-03-17 Thread Dave Watts
I have noticed that in ColdFusion MX you no longer have the ability to optimize a search collection except from the Admin panel. Is there away to still optimize a search collection for outside the admin ? Have you tried using the CFCOLLECTION tag's OPTIMIZE attribute? Dave Watts, CTO, Fig

RE: Blue Dragon J2EE Server getpagecontext() problem

2004-03-17 Thread Vince Bonfanti
You're welcome. Glad I could help. :-) If you plan to do a lot of work with BlueDragon, you might consider subscribing to the BlueDragon-Interest mailing list: http://www.newatlanta.com/products/bluedragon/self_help/archive_search/index .cfm There are lots of knowledgeable BlueDragon users on

RE: Loosing sessions on the same server with SSL

2004-03-17 Thread Bryan Love
Cookies.Cookies keep track of the CFID and CFTOKEN which is how the server knows which session vars belong to who.Try adding CFID and CFTOKEN to the URL when the transition is made from non-ssl to ssl. If that's not it then I've got some other ideas, but try that first.

Re: CFMX 6.1 CFCOOKIE Question

2004-03-17 Thread Simon Stryjak
Just an update that I have solved the issue. cfcookie name=TESTCOOKIE value=0 expires=#CreateTimeSpan(1,0,0,0)# No longer appears to function in CFMX 6.1 I had to change the format to reflect: cfcookie name = TESTCOOKIE value = 0 expires = 1 secure = no Where expires = 1 is 1 day rather than

RE: Mail Header Problem

2004-03-17 Thread Mark Leder
Thanks Michael, I'll give it a shot. Thanks, Mark _ From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 11:35 AM To: CF-Talk Subject: Re: Mail Header Problem Try adding all 3 of these to the mail. Spam assassin is seeing that one exists but not the other,

RE: Quick Help

2004-03-17 Thread J E VanOver
FYI, the syntaxof the CFOUTPUT won't work if in versions older than CFMX In CF 4 5, the CFOUTPUT must be: cfset endTime = getTicCount() - start cfoutput#endTime# ms/cfoutput -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 6:18 PM To: CF-Talk

WYSIWYG Editors for Mac

2004-03-17 Thread Mark Leder
Any recommedations for textarea HTML editors for Mac users? Criteria is that it should work in both IE and Safari browsers. Thanks, Mark [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: WYSIWYG Editors for Mac

2004-03-17 Thread Gormley Patrick-r34220
Give HTMLArea a try. Its FREE!! It is _javascript_ based. http://www.interactivetools.com/products/htmlarea/ http://www.interactivetools.com/products/htmlarea/ -Patrick _ From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 12:45 PM To: CF-Talk Subject: WYSIWYG

query: foreign key

2004-03-17 Thread Daniel Kessler
No, I didn't want to replace the data in another table, but rather retrieve data from another related table.I figured around noon that I really wanted INNER JOIN. SET ROWCOUNT #url.hs_count# SELECT * FROM bodyfun_save_game INNER JOIN bodyfun_registry ON bodyfun_save_game.identifier =

failing when query is named.

2004-03-17 Thread Daniel Kessler
I have a query that when the query returns something, it does the stuff in the cfoutput Query = check_registration section.When it returns no hits, it totally skips the cfoutput.I'm new to cf and dbs but our cf guy here says it should do the cfoutput no matter what and then it should properly

Re: failing when query is named.

2004-03-17 Thread Mystic
Hey@ Although I am very new to CF, I read this in the ColdFusion Docs last night. If the query returns no records, it will skip the CFOUTPUT completely! This drove me nuts for hours and hours before I found this in the online docs. :-) HTH Kevin - Original Message - From: Daniel Kessler

Re: failing when query is named.

2004-03-17 Thread Jerry Johnson
The query attribute of the cfoutput tag accepts a query as its value. The cfoutput then loops through the query, running one loop of the output, then moving to the next record of the query and running the next loop, until it runs out of records. If you pass in an empty query (with 0 records), 0

RE: failing when query is named.

2004-03-17 Thread J E VanOver
Your CF guys are wrong. ANYTIME you cfoutput query=stuff/cfoutput it will ONLY do the stuff if the query contains AT LEAST ONE RECORD. If you want it to do something else if it is empty, you must program it ... cfif check_registration.recordcountis 0 No Hits cfelse cfoutput

RE: failing when query is named.

2004-03-17 Thread Dave Watts
I have a query that when the query returns something, it does the stuff in the cfoutput Query = check_registration section.When it returns no hits, it totally skips the cfoutput.I'm new to cf and dbs but our cf guy here says it should do the cfoutput no matter what and then it should

RE: failing when query is named.

2004-03-17 Thread Pascal Peters
The query attribute in cfoutput loops over the recordset. If the recordcount is 0, it loops 0 times (isn't executed). I think that for what you want, you need to check the recordcount: cfif check_registration.recordCount Pascal Peters Certified ColdFusion MX Advanced Developer Macromedia

failing when query is named.

2004-03-17 Thread Daniel Kessler
A bunch of great answers; I get it - thanks guys! At 4:01 PM -0500 3/17/04, CF-Talk wrote: Although I am very new to CF, I read this in the ColdFusion Docs last night. If the query returns no records, it will skip the CFOUTPUT completely! This drove me nuts for hours and hours before I found

Re: CFIF Insanity

2004-03-17 Thread Richard Crawford
Matthew Walker wrote: Maybe you know this already but CF still processes content inside HTML comments. So you shouldn't comment out CFML with HTML comment markup. The strange thing is that the troublesome comment markers worked fine before I rearranged some of the code inside the script to

Create calendar items in outlook?

2004-03-17 Thread Burns, John D
Does anyone know of a custom tag or a way to format an email so that when it is received by an Outlook client, it will have the option to add it to their calendar?Like a meeting request sort of thing?I don't know if outlook uses certain mail headers or if there's something attached.The server is

RE: failing when query is named.

2004-03-17 Thread Philip Arnold
From: Daniel Kessler I'm new to cf and dbs but our cf guy here says it should do the cfoutput no matter what and then it should properly do the iff to test whether something was returned. I think your CF guy needs to check his documentation Like everyone else says, if there's zero records

web hosting, sql 2000

2004-03-17 Thread mayo
I have a client that's going to need something more robust than Access. Does anybody know of an ISP that has database admin tools like Enterprise Manager on line, something like phpmyadmin for SQL 2000. All I want to do is to set up the tables. thx Gil Midonnet [Todays Threads] [This

Re: Undefined in Form when using MSIE

2004-03-17 Thread Ewok
The weird thing to me is that you can't get it to happen in a different browser when CF is the one processing the info and sending html to the browser. Just a long shot but try it two ways... hitting enter to submit and actually clicking the submit button with your mouse. hitting enter will cause

RE: web hosting, sql 2000

2004-03-17 Thread Tim Laureska
If I'm understanding you correctly, www.crystaltech.comwill work -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 4:16 PM To: CF-Talk Subject: web hosting, sql 2000 I have a client that's going to need something more robust than Access. Does

Re: web hosting, sql 2000

2004-03-17 Thread Adrocknaphobia
why not just enterprise manager? -adam -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 09:15 PM To: 'CF-Talk' Subject: web hosting, sql 2000 I have a client that's going to need something more robust than Access. Does anybody know of an

Re: web hosting, sql 2000

2004-03-17 Thread Adrocknaphobia
yeah, if you dot mind crashing enterprise manager when it tries to load the 500+ databases they put on each server. -adam -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 09:27 PM To: 'CF-Talk' Subject: RE: web hosting, sql 2000 If

RE: failing when query is named.

2004-03-17 Thread Greg Luce
Yep, if there are no records it won't do anything in the output. If it did process the cfoutput loop it would then have a problem resolving check_registration.userName. That's just the way it works. If you'd like to know if it returned records or not you can test for 'recordcount'. cfif

RE: Create calendar items in outlook?

2004-03-17 Thread Philip Arnold
From: Burns, John D Does anyone know of a custom tag or a way to format an email so that when it is received by an Outlook client, it will have the option to add it to their calendar?Like a meeting request sort of thing?I don't know if outlook uses certain mail headers or if there's

  1   2   >