RE: What is the best variable scope?

2002-06-27 Thread mark brinkworth
However, many people use the application scope for things that I don't consider good ideas (such as a datasource varaible). Can you elaborate? In the example I specified, a datasource variable. First you have to put it into an application variable, so code similar to this

RE: What is the best variable scope?

2002-06-27 Thread mark brinkworth
While I agree in principle with your sentiments here, the request scope can help out in some cases with performance. Actually, I prefer not to use the request variable scope. Parameter passing is important part of custom tag re-usability. Writing custom tags that are based on 'global'

RE: getting auto id from SQL Server

2002-06-27 Thread Philip Arnold - ASP
How would this done with SQL Server CFQUERY DATASOURCE=DSN NAME=query Set nocount on Insert into myTable (field) Values (value) Select identiy as ID Set nocount off /CFQUERY Query.ID Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20

Re: Pointing multiple sites to the same IP

2002-06-27 Thread Jochem van Dieten
Mark A. Kruger - CFG wrote: Chris, ha You give me too much credit. This is my pro-bono box. I set it up myself and I can tell you that there's no custom 403.3 setup. The server has a single IP and about 5 virtual sites mapped to it. The only one with a CERT is secure.cfwebtools.com.

RE: security: attacks through submission of script

2002-06-27 Thread Adrian Lynch
JavaScript could cause trouble if what someone submits appears in the site to everyone, a forum maybe. You could do some huge loops that go on for ages, or pop ups that don't stop popping. Ade -Original Message- From: Cornillon, Matthieu [mailto:[EMAIL PROTECTED]] Sent: 26 June 2002

RE: security: attacks through submission of script

2002-06-27 Thread Trusz, Andrew
Since nobody else seems to have responded, I'll give it a quick pass. Data from forms needs to be validated. Regular expressions on the server side do this nicely (including dealing with sql insertion attack), if you construct them carefully. You can also check for the referring page to be sure

Outlook Appointment

2002-06-27 Thread Jason Congerton - RedHedNet
Dear All I need to be able to add an appointment to Outlook on the user machine not the server is this possible with COM? Jason This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have

RE: calling inherited methods

2002-06-27 Thread Phillip Cave
That's cool. I was just wondering the best way to go about calling them, because data wise, a content record must exist before I create the file record... I'll put little examples below: someinvokingpage.cfm !--- create a reference to the object (it inherits the content component too) ---

Outlook Appointment

2002-06-27 Thread Jason Congerton - RedHedNet
Dear All I need to be able to add an appointment to Outlook on the user machine not the server is this possible with COM? Jason This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have

Zipcode finder

2002-06-27 Thread Alex Aguilar
Does anyone of a zipcode finder application? Client wants it so that when user enters zipcode that the results contain listings within 50 miles of that zipcode. I'm looking for an app that will run on windows platfrom (I'd like it if it were written in CFML but I'll take asp if it works). The

Re: getting auto id

2002-06-27 Thread Deanna Schneider
H, my understanding is that their is an implicit commit with each hit to Oracle from the CF-User, which nullifies any benefits of cftransaction, and makes it not a guarantee that the currval will work. I'd be psyched if I was proven wrong. But, that's the info that I have from my DBA and

Re: SCORM API and Cold Fusion

2002-06-27 Thread Deanna Schneider
Hi Matt, SCORM is in the middle of a transition right now. The IEEE LOM specification was declared a standard as of a week ago Friday, and now the ADL folks are working to align SCORM with LOM (apparently there are about 6 pages of differences). So, if you have the time to wait, you might want

RE: calling inherited methods

2002-06-27 Thread Raymond Camden
There is no best way - it simply depends on what you are trying to do. I know that isn't an answer, but it's the truth. Things to consider: 1) If the inherited method is what you want to call, then just call it! cfset foo = myCFC.inheritedMethod() 2) If the method in the child component

Re: Weird problem with CFEXECUTE not releasing file

2002-06-27 Thread Seth Petry-Johnson
FYI. There's also it's successor, CFX_Execute. Which I also wrote. It's more like CFEXECUTE, except for the bugs. :) I was unable to find CFX_Execute on the MM developer exchange... could you email me a copy off list at [EMAIL PROTECTED] or even just send me a link that I can download from?

RE: CFMX not reading .html files like CF5! Very bad!

2002-06-27 Thread Mike Byers
I tried this already and posted a request for help earlier this week. It read Has anyone been able to run an HTML template with CFML inside it in the CFMX release. We are cleaning up some of our older templates to rid ourselves of these things, but until then, I need to know how to make it

RE: security: attacks through submission of script

2002-06-27 Thread Peter Tilbrook
Not allowing DROP amongst other SQL commands in your datasource setup can assist also. -Original Message- From: Trusz, Andrew [mailto:[EMAIL PROTECTED]] Sent: Thursday, 27 June 2002 9:12 PM To: CF-Talk Subject: RE: security: attacks through submission of script Since nobody else seems

RE: What is the best variable scope?

2002-06-27 Thread Jeffry Houser
At 06:53 AM 6/27/2002 +, you wrote: However, many people use the application scope for things that I don't consider good ideas (such as a datasource varaible). Can you elaborate? In the example I specified, a datasource variable. First you have to put it into an

RE: What is the best variable scope?

2002-06-27 Thread Jeffry Houser
Do you have examples and / or numbers? At 06:50 AM 6/27/2002 +, you wrote: While I agree in principle with your sentiments here, the request scope can help out in some cases with performance. Actually, I prefer not to use the request variable scope. Parameter passing is

RE: Outlook Appointment

2002-06-27 Thread Tipton Josh (orl1jdt)
Yes you can do it. This company has developed a custom tag called cf_outlook. It uses WDDX and can export or import anything into outlook. The only catch is that the client browser has to trust the site. http://www.aylo.com Joshua Tipton -Original Message- From: Jason Congerton -

RE: calling inherited methods

2002-06-27 Thread Raymond Camden
Is that the best way to do it? Or, should the file components addFile() method call addContent() like so. If your intent is to do ONE thing - and it's taking two calls, then yes, addFile should probably call addContent. If you intent is to do TWO things and you may need to do ONE of those

Re: RE: What is the best variable scope?

2002-06-27 Thread Dave Carabetta
Can you give some example code? I just want to make sure I understand you completely. It's not a very hard concept. I create a file called constants.cfm, put it in the same directory as my Application.cfm file, and then cfinclude it in the Application.cfm file, so that it is included on every

RE: security: attacks through submission of script

2002-06-27 Thread Robert Everland
Or just add this to your application .cfm, allaire released it a while ago. Works great. The tag is from cfsilent to /cfsilent cfmodule template=customTags/inputfilter.cfm scopes = FORM,COOKIE,URL chars = ),(,%,,$,*,,,; tags =

RE: Outlook Appointment

2002-06-27 Thread Philip Arnold - ASP
I need to be able to add an appointment to Outlook on the user machine not the server is this possible with COM? This is impossible with COM unless you get them to download and execute a program you create Since COM is executed by opening a port to the application required, and then accessing

RE: SCORM API and Cold Fusion

2002-06-27 Thread Matthew Friedman
Do you have an API that would work for the scorm 1.2 compliance? -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 8:59 AM To: CF-Talk Subject: Re: SCORM API and Cold Fusion Hi Matt, SCORM is in the middle of a transition right now. The

Re: getting auto id

2002-06-27 Thread Steven Dworman
not if you use stored procs, or a package (bunch of procs and functions) you just leave the rollback; / and commit; / statements out and use cftransaction to execute them. Steven D. Dworman Certified Macromedia Developer Web Consultant Systems

RE: What is the best variable scope?

2002-06-27 Thread Andrew Scott
Jeffry, Read what I said, and I stand by that post! -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Thursday, 27 June 2002 10:22 AM To: CF-Talk Subject: RE: What is the best variable scope? At 07:55 AM 6/27/2002 +1000, you wrote: Actually I prefer to look at

Re: getting auto id

2002-06-27 Thread Steven Dworman
are you using a stored proc for sql statement? if so just make an out var in your proc, and set your seqeunce value equal to it. then in your cf code use a cfprocparam of type out and you can reference the variable with a proc_name.var_name Steven D. Dworman Certified Macromedia Developer

RE: What is the best variable scope?

2002-06-27 Thread Andrew Scott
No it is one application that does the work, think about it for a minute and you'll see what I mean by that. Why not, because you are using one application name. Hence it is one application. Don't get me wrong there is nothing wrong with what you have described, I have done it many times where I

RE: What is the best variable scope?

2002-06-27 Thread Andrew Scott
Here is something to ponder:-) Although it might not be an issue to some of you, but look at it this way. If the website is going to be a high traffic website, then Disk access needs to be considered in the time that a page takes to run. The more cfincludes that a request needs, will always add

RE: What is the best variable scope?

2002-06-27 Thread Andrew Scott
This post is more to what Jeffry was replying too:-) Ok, I created a membership system. The system that I use requires client variables over session, but uses the request variable to say who is logged in, what policy they have etc. Now if I write a serious of custom tags, I could pass this

RE: Outlook Appointment

2002-06-27 Thread Dave Wilson
If its simply displaying Outlook elements that you want, then you should have a look at: http://support.microsoft.com/default.aspx?scid=kb;EN-US;q281618 There is info here about displaying the outlook calendar etc which will enable you to add appointments. HTH, Dave -Original Message-

RE: Outlook Appointment

2002-06-27 Thread Matthew Fusfield
An easier solution might be to create a vCalendar file and send it to the client machine with cfcontent. The files are just formatted plain text and I believe Outlook will open them an automatically import them to a user's calendar. Matt -Original Message- From: Jason Congerton -

Dynamic Array Help

2002-06-27 Thread Kris Pilles
Haven't written a dynamic array in a while and need some help. I think ive forgotten how to... Heres the column names ID AID Title Description DID Grade Science Can someone tell me how to create a dynamic array... I need to store my query results in an array so I can ship it through

RE: Dynamic Array Help

2002-06-27 Thread cameronc
Actually Query results are arrays already... You can refer to them like this: QueryName['Columname'][row#] -Cameron - Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email: [EMAIL PROTECTED] -Original Message- From: Kris Pilles

RE: Dynamic Array Help

2002-06-27 Thread Andrew Scott
As in cfset array.ID = ArrayNew(1) cfset array.AID = ArrayNew(1) cfset array.ID[count] = value -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Friday, 28 June 2002 12:16 AM To: CF-Talk Subject: Dynamic Array Help Haven't written a dynamic array in a while and

Re: security: attacks through submission of script

2002-06-27 Thread Jochem van Dieten
Robert Everland wrote: Or just add this to your application .cfm, allaire released it a while ago. Works great. The tag is from cfsilent to /cfsilent cfmodule template=customTags/inputfilter.cfm scopes = FORM,COOKIE,URL chars = ),(,%,,$,*,,,; tags =

RE: Dynamic Array Help

2002-06-27 Thread Kris Pilles
Yes, well I'm a little confused working with cf and fusionscript... I need to put the query results into an array so I can send it back to the clients page -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 10:28 AM To: CF-Talk Subject:

RE: What is the best variable scope?

2002-06-27 Thread Brad Roberts
I'm no expert on how CF handles files, but when it comes to cfincludes, doesn't CF cache them. I mean, that 10ms is CF parsing code, NOT simply accessing the file. I'm sure accessing the first time might take a couple of ms, but after that -Original Message- From: Andrew Scott

RE: Dynamic Array Help

2002-06-27 Thread Neil Clark - =TMM=
Erm...not done one for a while, isnt it(probably wrong!) cfscript myArray = ArrayNew(2); for (i = 1; i lte YOURQUERY.Recordcount; i = i + 1) { myArray[i][1] = QueryOne.ID[i]; myArray[i][2] = QueryOne.AID[i]; !--- etc. --- }; /cfscript ?

RE: What is the best variable scope?

2002-06-27 Thread Mark A. Kruger - CFG
You are correct - CF does cache includes and it uses a FIFO buffer that is configurable as to size in the cf administrator. CF does check to see if the file has been modified before using the cached template and that is technically a low everhead disk access. If you have a site on a single

RE: Dynamic Array Help

2002-06-27 Thread Kris Pilles
Ok I've got my array However Now, I sent it back to where it needs to go... How do I take the data within the array and basically query it so I can sort it so I can parse the records out to populate my form??? -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]]

RE: CFMX not reading .html files like CF5! Very bad!

2002-06-27 Thread Mike Byers
I repeated the process for the third time this morning and got it to work. I did notice that there was also a servlet-mapping servlet-nameCfmServlet/servlet-name url-pattern*.cfml/*/url-pattern /servlet-mapping in addition to the servlet-mapping servlet-nameCfmServlet/servlet-name

WDDX in Session Variables

2002-06-27 Thread Dwayne Cole
I store my navigation system as a array of structures coverted to a WDDX packet. I don't want to rebuild the packet for each page request, so I'm thinking about storing the packet in the application, client or session scope. I have two questions 1). Is anyone storing WDDX packets in

RE: Dynamic Array Help

2002-06-27 Thread Philip Arnold - ASP
Ok I've got my array However Now, I sent it back to where it needs to go... How do I take the data within the array and basically query it so I can sort it so I can parse the records out to populate my form??? WDDX? You can convert large data blocks into WDDX and pass them

RE: WDDX in Session Variables

2002-06-27 Thread Mark A. Kruger - CFG
Dwayne, Ok - if you use the application scope you don't need to serialize it. You can store it directly as a structure - removing that step. However, you would still have to lock it (on cf 5) when you read it. The client scope WILL require you to wddx it. I have a couple of application where

Re: WDDX in Session Variables

2002-06-27 Thread Stephen Moretti
I store my navigation system as a array of structures coverted to a WDDX packet. I don't want to rebuild the packet for each page request, so I'm thinking about storing the packet in the application, client or session scope. I have two questions 1). Is anyone storing WDDX packets in

RE: Dynamic Array Help

2002-06-27 Thread Bruce, Rodney S HQISEC/SIGNAL
Kris If you are using Fusionscript, which I think you mentioned. There is a Fusionscript list as well. You can go to www.fusionscript.com to join. But here is how I am returning my query results from the server page to the calling (client page) !-Server

Re: WDDX in Session Variables

2002-06-27 Thread BEN MORRIS
Were I doing this, I wouldn't store the WDDX packet in the application (or whichever) scope, I'd store the structure/array in the application scope. WDDX will serialize a complex data type, but if you are staying within the friendly confines of CF, you would be better off just storing the

Re: Re: WDDX in Session Variables

2002-06-27 Thread Dwayne Cole
I think the general answer to that is. Why bother? Application and session scopes can handle complex data types, only client variables can't handle complex data. If you're accessing the navigation system on every page request, then if you use WDDX you would have to initially serialise

Re: Re: WDDX in Session Variables

2002-06-27 Thread BEN MORRIS
In that case, you might be best off saving a text string with all of the JS in a string in the app scope so that you can do the processing to build all that once for the application and save the processing overhead w/ each page request. Dwayne Cole [EMAIL PROTECTED] 06/27/02 11:46AM I think

RE: Re: WDDX in Session Variables

2002-06-27 Thread Mark A. Kruger - CFG
You would still probably store the packet in the application scope - for all the reasons already mentioned. -mk -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 10:46 AM To: CF-Talk Subject: Re: Re: WDDX in Session Variables I think the

RE: Dynamic Array Help

2002-06-27 Thread Kris Pilles
Rodney: I have created and array and I'm sending it back to my client page via activeserver Now, I have this array 2 dimensional and I don't know how to take all the data (which is just my query results) and read it so that I can break it down into records and populate my form. Basically

CFSCRIPT help

2002-06-27 Thread Thane Sherrington
Can someone suggest a good book or site on CFSCRIPT? I'm trying to write a script that will test a variable and if the variable is good, do some calculations on it and return the finished value, but if it's bad, it'll break out with an error message. Other than nesting a lot of ifs, I can't

Re: CFSCRIPT help

2002-06-27 Thread Michael Dinowitz
www.houseoffusion.com/docs/cfscript.htm At 12:11 PM 6/27/02, you wrote: Can someone suggest a good book or site on CFSCRIPT? I'm trying to write a script that will test a variable and if the variable is good, do some calculations on it and return the finished value, but if it's bad, it'll

ColdFusion studio

2002-06-27 Thread WebMaster
Hi Guys, I guess I missed it. I have been off the list for a while. I am running CF Studio 4.5 and CF 4.5. About to upgrade one of our servers to MX.(CF 5) I see on the MM site that there is a CF Studio MX, but the doc says it includes dreamweaver. Am I to assume that I will be forced fed

RE: This feature should never have been uploaded! or Version Control Systems, Anyone?

2002-06-27 Thread Dave Babbitt
What makes this issue fundamentally more complicated is, as Eric points out, OTHER PEOPLE - i.e., getting the boss to annotate his changes to the templates. For instance, my templates have this kind of stuff on top: !--- ID: /_PM/messages/ml_access_control_panel.cfm, v1.0.2 6/26/2002

RE: ColdFusion studio

2002-06-27 Thread Neil Clark - =TMM=
Let the barrage begin :-p CF Studio has been rebranded Homesite+, Studio MX is the reason it was renamed and this includes Dreamweaver MX, Flash MX, Fireworks MX, Freehand 10 and ColdFusion Developer Edition (Windows only) Neil Clark Team Macromedia http://www.macromedia.com/go/team

RE: security: attacks through submission of script

2002-06-27 Thread Matt Robertson
I've been pretty happy with the CodeCleaner tag. http://tinyclick.com/?W1YQRV Uses cfscript w/regexes, seems fast, thorough and provides options on handling. MX' code analyzer squawks about a couple of the regexes, but after some testing it still seemed to work fine. The ''script block

Re: CFSCRIPT help

2002-06-27 Thread Jeffry Houser
This is, sadly, one of the worst documented features of ColdFusion. A whole chapter is devoted to it in ColdFusion: A Beginner's Guide. ( Most everything in the book still applies to ColdFusion MX) http://www.amazon.com/exec/obidos/ASIN/0072191090/instantcoldfu-20 I'm guessing you want

RE: ColdFusion studio

2002-06-27 Thread cameronc
Or you can just download the MX tag updater for Studio and keep using the version you have. http://www.macromedia.com/software/coldfusionstudio/productinfo/resources/ta g_updaters/ -Cameron - Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email:

RE: Re: WDDX in Session Variables

2002-06-27 Thread Dwayne Cole
Thanks to all for the advice. I've used session and client scope varibles often. I haven't had to use application scope variables and I didn't really understand when it was appropriate or better yet the inappropriate to use either. Now I see how important it is to select the proper scope.

Re: CFSCRIPT help

2002-06-27 Thread Thane Sherrington
At 12:45 PM 6/27/02 -0400, Jeffry Houser wrote: I'm not sure what makes a variable good in this case, but if you offer more information, perhaps I can offer more information. I'm checking the value of a date to make sure it's legal. (I've had no end of problems with the date parsing side of

RE: Zipcode finder

2002-06-27 Thread Van Vliet, Scott
In the past, we have purchased a database of ZIP codes from the United States Postal Service, which included the latitude and longitude for each ZIP code epicentre. Using this information, we could calculate the distance between a given ZIP code epicentre's latitude and longitude, and the

Re: Javascript/HTML Based Chat Tip

2002-06-27 Thread S . Isaac Dealey
Not a bad idea (the 3rd frame) ... though my experience with javascript chat is that the 3rd frame wouldn't keep javascript from hijacking the focus or eliminate the clicking sound that i.e. makes when the window refreshes (actually, increasing the refresh rate on the 3rd frame to a second or

RE: Dynamic Array Help

2002-06-27 Thread Bruce, Rodney S HQISEC/SIGNAL
Kris Let me recap so I am with you on this. You want to dynamically create a form with the information passed back to the client page You can add a little DHTML with the FusionScript: This will create a table to display your records, You can should beable

RE: Dynamic Array Help

2002-06-27 Thread Bruce, Rodney S HQISEC/SIGNAL
Opps as I said it was put together on the fly ignore this at the end of the table creation: ;o) Mytable = Mytable + endDiv; -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 9:06 AM To: CF-Talk Subject: RE: Dynamic

Re: Javascript/HTML Based Chat Tip

2002-06-27 Thread Nate Nielsen
There is an example a chatting application built with the FusionScript technology located at : http://www.fusionscript.com/_beta/chatBox.cfm - Its not intended to have flashy graphics, just show the simplicity of the FS technology. It was built in less than a few hours. Remember that it was

Re: CFSCRIPT help

2002-06-27 Thread Jeffry Houser
At 01:57 PM 6/27/2002 -0300, you wrote: At 12:45 PM 6/27/02 -0400, Jeffry Houser wrote: I'm not sure what makes a variable good in this case, but if you offer more information, perhaps I can offer more information. I'm checking the value of a date to make sure it's legal. (I've had no end

File Upload to Database

2002-06-27 Thread William H. Bowen
Hi all, I need some advice. (Sorry for the cross post - CF-Community :-) Situation: The company I work for has just merged with another ALSTOM (the parent corporation) entity and i have been tasked with rolling out a content management system for the new shared intranet. I have already built a

Re: CFSCRIPT help

2002-06-27 Thread Thane Sherrington
At 01:22 PM 6/27/02 -0400, Jeffry Houser wrote: I do worry that you are re-inventing the wheel. Have you looked at the IsDate or LSIsDate function? I'm not sure if ColdFusion has a specific way to compare against a given mask, though, but if your intent is to turn it into an ODBC date, the

CFXML - FYI

2002-06-27 Thread todd
I was just helping someone out on the forums and thought I'd pass this information on. When you're using cfxml variable=blah - you cannot use cfsetting ENABLECFOUTPUTONLY=yes -- for some reason, you'll always get the error: Document root element is missing. So... I thought I'd pass this

CFStudio Files view

2002-06-27 Thread Alex Hubner
Since we're talking about DWMX... I'm forcing my self to use it but the more I use the more I miss the excelent CFStudio... My biggest complain is related to something very simple: the File View. Does anybody knows a way to set the Files view like it was on CFStudio/HomeSite 5 on the

RE: CFXML - FYI

2002-06-27 Thread Raymond Camden
When you did your cfxml x/cfxml test, did you wrap your content (x) with cfoutput? If not, then what you are seeing is correct behavior I think. === Raymond Camden, ColdFusion Jedi Master for Macromedia Email:

Firewall configuration for CF and SQL (sort of OT)

2002-06-27 Thread Dustin Snell [Unisyn Software, LLC]
Hello all, This may seem sort of off topic and I apologize if it is, but it does involve a Cold Fusion server and I think you guys/gals would likely know the answer. Here goes: We are attempting to secure our network which was admittedly *not secure* before. So, we have purchased a 3COM

Re: CFSCRIPT help

2002-06-27 Thread S . Isaac Dealey
I'm passing the date entered and the date mask. The UDF pulls out the value of the date (day, month and year fine) but I want to be able to check to see if it is a legal day and month before making it into an ODBC date. So I'm doing something like this: Check to see what mask is wanted:

New web dev news feed (WDDX)

2002-06-27 Thread mynews
I thought some of you might be interested in a news feed that I created for sites that are focused on web development, primarily with Macromedia products. Right now it contains news, tutorials, polls, and career developement articles. Also provided with the feed are links to a discussion

Re: CFSCRIPT help

2002-06-27 Thread S . Isaac Dealey
How many variables can I return with a CFSCRIPT block? You mean with a UDF ? ... As many as you want ... as long as they're all part of the same complex object like a query, structure or array ... function foo() { var myreturn = new Structure(); myreturn.hello = hello;

Re: CFSCRIPT help

2002-06-27 Thread Jeffry Houser
I want to make sure I clarify that CFScript blocks and UDF functions are two completely different things. In a UDF, you can only return a single value. That value can be a complex value (Array or Structure), though. CFScript blocks don't explicitly return any values, although you can

RE: CFXML - FYI

2002-06-27 Thread todd
The person on the forum didn't.. and.. she had cfoutput query= things within, so... yes, what you're saying makes complete sense to me. It was seeing the inner tags, but it wasn't seeing anything outside of those query-output things. Anyway, her problem is solved.. and I just wanted to pass

ColdFusion and Fusebox classes 7/3/02 - 7/31/02 Wash DC area

2002-06-27 Thread Michael Smith
Come to an intensive class on ColdFusion or Fusebox in Rockville Maryland near to Washington DC. Classes limited to 12 students each so that you can be sure to get your own questions answered! Sign up today to guarantee a place at http://www.teratech.com/training/ - Michael Smith, TeraTech, Inc

Re: Zipcode finder

2002-06-27 Thread Terry Hilton
Alex, CD Light sells the zipcode data in different formats to accomplish what you need. I purchased the ZIPList 5 Geocode for about $300 and was able to code a cf based finder in a couple of hours. They also provide sample calculations with the file so you don't have to try and work them out

Re: CFSCRIPT help

2002-06-27 Thread Thane Sherrington
At 01:46 PM 6/27/02 -0400, S. Isaac Dealey wrote: function validDate(mydate) { if (not ReFind(mydate,[0-9][0-9]?/[0-9][0-9]?/[0-9][0-9][0-9][0-9])) { return Inavlid Date Mask; } var day = listfirst(mydate,/); var month = listgetat(mydate,2,/); var year =

RE: ssl cert with many domains

2002-06-27 Thread Mike Brunt
Thawte have some reasonable pricing on multiple certs. Kind Regards - Mike Brunt, CTO Webapper http://www.webapper.com Downey CA Office 562.243.6255 AIM - webappermb Webapper - Making the NET work -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June

Re: File Upload to Database

2002-06-27 Thread S . Isaac Dealey
Hi Will, the readbinary and writebinary actions for cffile were designed for this sort of thing... cffile action=upload... cffile action=readbinary file=... variable=mybinarydata cfquery name=myupdate datasource=... UPDATE mytable SET filebinarydata = '#mybinarydata#'

Re: CFSCRIPT help

2002-06-27 Thread Thane Sherrington
At 01:50 PM 6/27/02 -0400, Jeffry Houser wrote: Are you saying that you are being given April 5th (I.e. 4/5/2002) and the system is seeing it as May 4th (5/4/2002)? What are the problems with EuroDate validation? This is exactly the problem. Eurodate sometimes takes the date correctly and

Re: CFSCRIPT help

2002-06-27 Thread Thane Sherrington
At 01:49 PM 6/27/02 -0400, S. Isaac Dealey wrote: How many variables can I return with a CFSCRIPT block? You mean with a UDF ? ... As many as you want ... as long as they're all part of the same complex object like a query, structure or array ... Sorry, I meant a UDF. Thanks for this as

RE: CFXML - FYI

2002-06-27 Thread Raymond Camden
Can you post the forum URL. You say she had use cfoutput - but it sounds like she didn't wrap _all_ the stuff in it, which means it's not a bug. If she wrapped all her content, it could be a bug. I want to sure. === Raymond

Code Encryption

2002-06-27 Thread Jon Lim
How can I encrypt my coldfusion code so no one can understand/ edit it ? I downloaded a demo version of a program created in coldfusion and parts of it were encrypted. I opened the source code and It looked like chinese characters ... how can i do this ?? thanks -jon

RE: ssl cert with many domains

2002-06-27 Thread Smith, Matthew P -CONT(DYN)
They are the ones I got my original/current single domain cert from. I might have to inquire with them. I'm hoping they can append new domains as I need them and reissue. Would it be a single cert with many domains, or one per domain all installed to the same ?something? (box?, ip?, virtual

Re: Code Encryption

2002-06-27 Thread Bryan Stevenson
Jon, You should check the archivesthis topic came through all this week and last ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia

Re: CFSCRIPT help

2002-06-27 Thread S . Isaac Dealey
At 01:57 PM 6/27/2002 -0300, you wrote: At 12:45 PM 6/27/02 -0400, Jeffry Houser wrote: I'm not sure what makes a variable good in this case, but if you offer more information, perhaps I can offer more information. I'm checking the value of a date to make sure it's legal. (I've had no

CFX Scope

2002-06-27 Thread Darren Houle
Sorry to ask such a simple question but I can't seem to find any obvious answers... If I develop a CFX in Java and call it from some CF code: cfset session.contextorBlob = mycontext CFX_CFWebContextor method=run contextBlob=#session.contextBlob# The Java class changes the value of the incoming

Re: Code Encryption

2002-06-27 Thread S . Isaac Dealey
How can I encrypt my coldfusion code so no one can understand/ edit it ? I downloaded a demo version of a program created in coldfusion and parts of it were encrypted. I opened the source code and It looked like chinese characters ... how can i do this ?? Create a project in CF Studio

Re: Code Encryption

2002-06-27 Thread Bill Wheatley
:) Dude your CF stuff is never safe dont encrypt it because its not going to be anyone from reading it they have cfdecrypting utils out there now. try to think of a better way to protect your product Bill Wheatley Senior Database Developer Macromedia Certified Advanced Coldfusion Developer

Re: CFSCRIPT help

2002-06-27 Thread S . Isaac Dealey
At 01:46 PM 6/27/02 -0400, S. Isaac Dealey wrote: function validDate(mydate) { if (not ReFind(mydate,[0-9][0-9]?/[0-9][0-9]?/[0-9][0-9][0-9][0-9])) { return Inavlid Date Mask; } var day = listfirst(mydate,/); var month = listgetat(mydate,2,/); var year =

Re: Firewall configuration for CF and SQL (sort of OT)

2002-06-27 Thread Bud
On 6/27/02, Dustin Snell [Unisyn Software, LLC] penned: We are attempting to secure our network which was admittedly *not secure* before. So, we have purchased a 3COM Superstack 3 firewall which is up and running and seems to be working great. I am wondering what the recommended topology should

CFERROR Question

2002-06-27 Thread Waldemiro Junior
Hello all. Anyone know if I can use CFERROR when I get HTTP/1.0 404 Object Not Found or for this matter I set up my IIS to display another error page to the user? Thanks. WJunior __ This list and all House of Fusion

Attempting crude MD5 check causing server to reboot.

2002-06-27 Thread Shawn McKee
I need one of two things from the experts here. Either a way to do an MD5 check on a file that doesn't require reading the whole file in to memory or a way to stop this code from either not successfully reading the output files from the cfexecute or worse rebooting the server because an

Re: Code Encryption

2002-06-27 Thread S . Isaac Dealey
Well... there is that. :) :) Dude your CF stuff is never safe dont encrypt it because its not going to be anyone from reading it they have cfdecrypting utils out there now. try to think of a better way to protect your product Bill Wheatley Senior Database Developer Macromedia Certified

RE: CFERROR Question

2002-06-27 Thread Tony Weeg
set that up in the cfadministrator site wide error template or something like that... ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Waldemiro Junior [mailto:[EMAIL

  1   2   >