Re: CF on OS X

2002-12-11 Thread Dick Applebaum
On Tuesday, December 10, 2002, at 09:49 PM, Dave Watts wrote:

> According to Dick's three-part article, Verity doesn't work and web 
> services
> don't work. Verity is never going to work, since there's no native OS X
> version of Verity. Conceivably, web services could work in a future 
> version
> of CFMX. There may be other things that don't work, but those are the 
> only
> two which come to mind. Of course, in a production environment those 
> two
> things may be very important.

One other thing that doesn't work is a connector to the Apache web 
server -- AFAIK, the connector is still platform-dependent C code, so 
you are limited to the MM-supplied default (Java code) server.

Consuming web services can be made to work on OS X, but we (several 
different people) never have been able to get Publishing web services 
to work.

There is a minor irritant -- several places in the CFMX Administrator, 
MM uses a Java applet to browse the local directory.  The applet works 
OK, but the JavaScript functions that interface the applet fail on 
every OS X browser I've tried.  So, while you can browse to a file or 
directory or file, you can't "Apply" that selection (submit a form with 
the selected path info).  This is not critical because you can always 
key or paste the path info manually.

The above is used in several places such as mappings, archive 
deployment, etc.


> My guess is, sometime after OS X gains significant market share as a 
> server
> platform, if ever. I don't think that's going to be any time soon, but 
> I
> could be wrong.

I read somewhere, recently, that Apple Server growth (as a percentage) 
was higher than any other server mfgr -- of course it is pretty easy to 
have a high growth rate when your installed base is very low.

There are still some market segments (education, publishing) where 
Apple has a large (if not dominant) desktop presence.  This would 
appear to be a good potential to market Apple Servers.

Just a few additional comments:

Darryl Salas, the evangelist for Sybase_ASE on the Mac, said that they  
designed the Mac product so that it had an intelligent install.  Sybase 
was quite happy with the results, as the entire install takes just a 
few minutes, and is very close to a 1-click install (you don't have to 
answer a lot of questions).  Darryl claims that this is unprecedented 
for a RDBMS in the class of Sybase, SQL-Server, etc.   I've never 
installed SQL-Server, but Sybase_ASE for the Mac is as easy, or easier, 
to install than most of the other RDBMSes, such as: MySQL, PostgreSQL, 
PointBase, FrontBase, OpenBase, Oracle, FileMaker, etc.  Sybase does 
this without sacrificing any function.

Sybase_ASE has another unique feature, it is Rendezvous-compliant.  
Rendezvous is Apple's implementation of Zero-Configuration Networking.  
This means that a computer running a Sybase client can automatically 
recognize any available Sybase databases on the network (wired or 
wireless) and connect to them (with proper authorization).  It's kinda' 
cool -- it just burps at you when it discovers a db.  So, you could 
walk into the client's boardroom with your Mac TiBook, automatically 
recognize the client's db, connect, define the dsn to CFMX, then write 
and run an ad hoc CF program -- no wires, no nuthing!

There is at least one person who claims that his Xserve box is faster 
than any of his NT or 2000 servers.

Apple's XServe software has a fixed price-- you aren't charged for 
extra CPUs or extra Clients -- I  understand that this is unusual, if 
not unprecedented.

OS X (both desktop and server versions) come with everything you need 
to run CFMX, JVM, JDK, Apache -- So, if MM were to release a product 
for OS X, it likely would be smaller, cleaner and easier to install.

So far, Sybase and Oracle have released their latest RDBMSes for OS X, 
and IBM ran a survey, and is evaluating DB/2 for OS X -- so If Apple 
has it's cost, reliability, support act together, they could have some 
success ing the DB server market.

Tomcat is available for Mac OS X -- so there is at least 1 J2ee 
appserver (although Tomcat is not certified).

Hopefully, the above will help sustain and improve Apple's share of the 
server market -- to the point where there is a large enough target for 
MM to make money on a CFMX Mac OS X product.

Dick


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Moving CustomTags Directory

2002-12-11 Thread Hugo Ahlenius
Another possibility is to create a junction (hard link to a directory)
under windows, then you'd be able to use both the default location, and
any custom location. I think sysinternals.com has a junction.exe for
download.





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



xml question

2002-12-11 Thread Seamus Campbell
Hi
I'm grappling with some xml
I want to export data from my database in an xml file but I only get the 
1st record
I'm doing this: (but I can't see how to loop over each record)


SELECT tblWEBSTOCKLEVEL.CustomerID, tblWEBSTOCKLEVEL.ProductCode, 
tblWEBSTOCKLEVEL.ProductDescription, tblWEBSTOCKLEVEL.StockLevel
FROM tblWEBSTOCKLEVEL
WHERE (((tblWEBSTOCKLEVEL.CustomerID)=1));





#trim("#XMLFormat(get_data.CustomerID)#")#






">

Can anyone help me please with the looping needed to get each record rather 
than just the first one.
Many thanks
Seamus


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: xml question

2002-12-11 Thread Kola Oyedeji
Seamus

I think your problem is that you have coldfusion tags inside the string
being set to tempxml and is thus being ignored instead of interpreted.
What version of cf are you using? If you are using CF5 you can use
cfsavecontent to wrap the output instead of using cfset.

In CFMX I think there are some XML functions which should allow you to
do this more cleanly.

Finally It may sound silly but double check that the query actually
returns multiple rows.

HTH

Kola

>> -Original Message-
>> From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 11:02
>> To: CF-Talk
>> Subject: xml question
>> 
>> Hi
>> I'm grappling with some xml
>> I want to export data from my database in an xml file but I only get
the
>> 1st record
>> I'm doing this: (but I can't see how to loop over each record)
>> 
>> 
>> SELECT tblWEBSTOCKLEVEL.CustomerID, tblWEBSTOCKLEVEL.ProductCode,
>> tblWEBSTOCKLEVEL.ProductDescription, tblWEBSTOCKLEVEL.StockLevel
>> FROM tblWEBSTOCKLEVEL
>> WHERE (((tblWEBSTOCKLEVEL.CustomerID)=1));
>> 
>> 
>> 
>> 
>> 
>> #trim("#XMLFormat(get_data.CustomerID)#")#
>> 
>> 
>> > ProductCode=""#trim("#XMLFormat(get_data.ProductCode)#")#""
>>
ProductDescription=""#trim("#XMLFormat(get_data.ProductDescription)#")#"
"
>> StockLevel=""#trim("#XMLFormat(get_data.StockLevel)#")#""/>
>> 
>> 
>> 
>> ">
>> 
>> Can anyone help me please with the looping needed to get each record
>> rather
>> than just the first one.
>> Many thanks
>> Seamus
>> 
>> 
>>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Another Newbie Problem

2002-12-11 Thread rick
In all my cfm references I cannot find a single example of a common task, although you 
see this kind of thing being used everywhere.

What I want to do is select from a pair of drop down lists (like Month and Year) and 
then display only the records from November 2002, for instance.  

How do you pass just those two variables to a query and draw just the date and month 
from a standard db date/time string.  Is it a datepart function?  

I just don't get it.  Any insight or pointing toward a tutorial would be appreciated.  

humbled by cfm yet again

Rick



RE: Another Newbie Problem

2002-12-11 Thread Tim Laureska
Rick... I'm relatively new to CF myself, but managed to develop a
calendar app that does among other things, the two variable query you
reference... keep in mind, the solutions are not always "laid out"
nicely to see

In the situation you reference (the month/year scenario), I set up a
database that includes numeric fields for each of the year and month.  I
set up drop down lists to pass the variables to a query template (as you
indicate), then do a query on them ... something like


SELECT  *
FROM  events e, category c
where (e.firstmonth=#firstmonth# and e.firstyear=#firstyear#) and
(e.category=c.cat_no or e.category2=c.cat_no
order by event_no, firstyear


check out   http://208.249.126.159/calendar/webcalendar_first.cfm

T



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 6:31 AM
To: CF-Talk
Subject: Another Newbie Problem

In all my cfm references I cannot find a single example of a common
task, although you see this kind of thing being used everywhere.

What I want to do is select from a pair of drop down lists (like Month
and Year) and then display only the records from November 2002, for
instance.  

How do you pass just those two variables to a query and draw just the
date and month from a standard db date/time string.  Is it a datepart
function?  

I just don't get it.  Any insight or pointing toward a tutorial would be
appreciated.  

humbled by cfm yet again

Rick



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: xml question

2002-12-11 Thread Seamus Campbell
Thanks Kola,
I have checked that the query returns multiple records - and it does.
I am using CF5.
I can write & read the xml file - but as you suggest the  is 
getting ignored (I think).
This is my xml file
- 

- 
1
- 
- 






Any help gratefully received

(I tried cfsavecontent but can't get the stuff within the cfloop to get 
interpreted)




At 22:27 11/12/02 , you wrote:
>Seamus
>
>I think your problem is that you have coldfusion tags inside the string
>being set to tempxml and is thus being ignored instead of interpreted.
>What version of cf are you using? If you are using CF5 you can use
>cfsavecontent to wrap the output instead of using cfset.
>
>In CFMX I think there are some XML functions which should allow you to
>do this more cleanly.
>
>Finally It may sound silly but double check that the query actually
>returns multiple rows.
>
>HTH
>
>Kola
>
> >> -Original Message-
> >> From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
> >> Sent: 11 December 2002 11:02
> >> To: CF-Talk
> >> Subject: xml question
> >>
> >> Hi
> >> I'm grappling with some xml
> >> I want to export data from my database in an xml file but I only get
>the
> >> 1st record
> >> I'm doing this: (but I can't see how to loop over each record)
> >>
> >> dbtype="ODBC">
> >> SELECT tblWEBSTOCKLEVEL.CustomerID, tblWEBSTOCKLEVEL.ProductCode,
> >> tblWEBSTOCKLEVEL.ProductDescription, tblWEBSTOCKLEVEL.StockLevel
> >> FROM tblWEBSTOCKLEVEL
> >> WHERE (((tblWEBSTOCKLEVEL.CustomerID)=1));
> >> 
> >>
> >> 
> >> 
> >> 
> >> #trim("#XMLFormat(get_data.CustomerID)#")#
> >> 
> >> 
> >>  >> ProductCode=""#trim("#XMLFormat(get_data.ProductCode)#")#""
> >>
>ProductDescription=""#trim("#XMLFormat(get_data.ProductDescription)#")#"
>"
> >> StockLevel=""#trim("#XMLFormat(get_data.StockLevel)#")#""/>
> >> 
> >> 
> >> 
> >> ">
> >>
> >> Can anyone help me please with the looping needed to get each record
> >> rather
> >> than just the first one.
> >> Many thanks
> >> Seamus
> >>
> >>
> >>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Another Newbie Problem

2002-12-11 Thread Kennerly, Rick H CIV
Thanks for the response and nice product, but we're dealing with a legacy db
with thousands of records.  Besides, while what you propose is certainly a
work around, is this the most "elegant" or programmerly solution?  

Are there other ways of doing this? 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX Enterprise vs. CFMX for J2EE

2002-12-11 Thread webguy
Hi Sean,

> From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
> JRun provides clustering and multiple application instances, session
> replication etc. A lot depends on what you're trying to provide with
> your CF installation.

Just to clarify this point, if I have a cluster of MX on J2EE,
if I set  on a box. that session.whatever will
be available across my cluster? Is this true for cached queries etc? Is this
only true for JRun , or is the same for Web Sphere etc..


One more question. Will CFMX ever be available for JBoss? Am I  right in
saying, it won't as long as jBoss doesn't have  "get the J2EE compatibility
mark" ...even though it has compliance..


Thanks
WG



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Component Conceptual Conundrum

2002-12-11 Thread Robert Polickoski
All,

Thank you for your patience with my current component problems.  I 
will admit, my primary background is in compiled programming 
environments.  I have been able to work in a pure HTML/CGI 
environment for web apps using ASP with few conceptual issues.  
But the mixed environment of web-based applications that have some 
OOP capabilities is giving me some fits.  I did some tests 
originally that showed I could access scoped variables 
(APPLICATION, CLIENT and SESSION) from within a component.  My 
further work, I think has determined that you can only access the 
scoped variables when the method calls are to the cfc file 
directly as opposed to an instance of the object.  REQUEST scope 
variables only exist for the duration of a single client-server 
request.  My question is, how do you get access to persistent 
variables, i.e. those that would normally be in APPLICATION, 
CLIENT or SESSION, from within instantiated components?  I have 
resolved the issue for static variables by creating a base object 
that all other objects extend containing the static data.  But 
this does not work for variable data; at least I can't think how 
to make it work.

Any help would be greatly appreciated.

Robert J. Polickoski
Senior Programmer, ISRD Inc.
(540) 842-6339
[EMAIL PROTECTED]
AIM - RobertJFP 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CFMX Enterprise vs. CFMX for J2EE

2002-12-11 Thread Matt Liotta
I doubt there is any performance difference between CFMX Enterprise and
CFMX for J2EE on JRun 4.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Dave Carabetta [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 10:53 PM
> To: CF-Talk
> Subject: RE: CFMX Enterprise vs. CFMX for J2EE
> 
>  There is a significant amount of functionality provided by a J2EE
> 
> application server that you don't get with CFMX Enterprise. Examples
of
> 
> this include EJBs and JMS. If you are at all interested in making use
of
> 
> this functionality in CF applications then CFMX for J2EE is the way to
> 
> go.
> 
> 
> 
> --
> 
> Agreed. However, can anybody speak to performance? I've read the brief
> that compares MX Enterprise to MX for WebSphere, but haven't seen any
> numbers regarding MX for JRun. You'd figure there'd be something
> considering CFMX and MX for JRun are both MM products.
> 
> 
> 
> Also, is there any sort of grid or listing that shows what's included
in
> the JRun engine embedded in MX Enterprise vs. the full JRun product?
> 
> 
> 
> Thanks again,
> 
> Dave.
> 
> 
> 
> ___
> No banners. No pop-ups. No kidding.
> Introducing My Way - http://www.myway.com
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Moving CustomTags Directory

2002-12-11 Thread Everett, Al
>  -- better yet, use CF Administrator (ie: /cfide/administrator/ -->
> extensions --> customtag paths) and don't play with the registry.

A fine option if you're using CF5. You need to dig into the registry for
CF4.5 or below.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Tony Weeg
hi josh.

ill be back on this tonight, when I get home from my real job to my home
job ;)
ill see what I can find.  the thing is, with a thawte cert, all things
are fine, its just the stupid
instant ssl cert that is causing the problems.  why did you choose
instant ssl vs. thawte? just wondering
why you/the other company I am working with did the same thing?
thanks.

..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Joshua Miller [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 10:56 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


A few more items:
1. http://www.fusionauthority.com/Article.cfm?ArticleID=3182
2.
http://devex.macromedia.com/developer/gallery/info.cfm?ID=E26C348B-3C1B-
11D6-840300508B94F380&method=Full
3. http://www.iexp.com/products/cfx_rawsocket/

This may be a solution.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 9:45 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


moreover, what versions of each? 

matt liotta...any word on
versions to use or not to use?

thanks
tony

-Original Message-
From: Samuel Neff [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 9:41 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


Haven't been following this thread but can add a small bit of info that
may help.

CFHTTP is extremely dependent on the Java runtime being used.  Try using
a different runtime from a different vendor--bea,sun,bea, etc.--and see
if it works.  This is how you achieve higher levels of encryption, may
fix your problem as well.


> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 8:01 PM
> To: CF-Talk
> Subject: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> 
> is there anything know to you all about this?
> 
> Unable to https post to a url that is ssl cert'ed
> using an "Instant SSL" cert.
> 
> CFMX.
> IIS5
> 
> thanks.
> 
> tony
> 





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: xml question

2002-12-11 Thread Kola Oyedeji
Seamus

I noticed a few things which may stop it from working.

First Cfsavecontent still requires ## around variables you want
displayed and the call to cfsavecontent needs to be wrapped in cfoutput
tags

Second I don't think you need to escape the double quotes, if you do,
Use single quotes instead this should make the code more readable

Also you had quotes where they're not needed e.g. when using the trim
function if the value is a function call or a variable you do not need
the quotes.

Finally the line..

#trim("#XMLFormat(get_data.CustomerID)#")#

will always return one as this is not inside the loop so it will always
refer to the first record not sure if that's what you wanted.

I have cleaned the code up a little below let me know if this works..


SELECT tblWEBSTOCKLEVEL.CustomerID, tblWEBSTOCKLEVEL.ProductCode, 
tblWEBSTOCKLEVEL.ProductDescription, tblWEBSTOCKLEVEL.StockLevel
FROM tblWEBSTOCKLEVEL
WHERE (((tblWEBSTOCKLEVEL.CustomerID)=1));







#trim(XMLFormat(get_data.CustomerID))#









HTH

Kola
>> -Original Message-
>> From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 12:23
>> To: CF-Talk
>> Subject: RE: xml question
>> 
>> Thanks Kola,
>> I have checked that the query returns multiple records - and it does.
>> I am using CF5.
>> I can write & read the xml file - but as you suggest the 
is
>> getting ignored (I think).
>> This is my xml file
>> - 
>> 
>> - 
>> 1
>> - 
>> - 
>> > StockLevel="4992" />
>> 
>> 
>> 
>> 
>> 
>> Any help gratefully received
>> 
>> (I tried cfsavecontent but can't get the stuff within the cfloop to
get
>> interpreted)
>> 
>> 
>> 
>> 
>> At 22:27 11/12/02 , you wrote:
>> >Seamus
>> >
>> >I think your problem is that you have coldfusion tags inside the
string
>> >being set to tempxml and is thus being ignored instead of
interpreted.
>> >What version of cf are you using? If you are using CF5 you can use
>> >cfsavecontent to wrap the output instead of using cfset.
>> >
>> >In CFMX I think there are some XML functions which should allow you
to
>> >do this more cleanly.
>> >
>> >Finally It may sound silly but double check that the query actually
>> >returns multiple rows.
>> >
>> >HTH
>> >
>> >Kola
>> >
>> > >> -Original Message-
>> > >> From: Seamus Campbell [mailto:[EMAIL PROTECTED]]
>> > >> Sent: 11 December 2002 11:02
>> > >> To: CF-Talk
>> > >> Subject: xml question
>> > >>
>> > >> Hi
>> > >> I'm grappling with some xml
>> > >> I want to export data from my database in an xml file but I only
get
>> >the
>> > >> 1st record
>> > >> I'm doing this: (but I can't see how to loop over each record)
>> > >>
>> > >> > >dbtype="ODBC">
>> > >> SELECT tblWEBSTOCKLEVEL.CustomerID,
tblWEBSTOCKLEVEL.ProductCode,
>> > >> tblWEBSTOCKLEVEL.ProductDescription, tblWEBSTOCKLEVEL.StockLevel
>> > >> FROM tblWEBSTOCKLEVEL
>> > >> WHERE (((tblWEBSTOCKLEVEL.CustomerID)=1));
>> > >> 
>> > >>
>> > >> 
>> > >> 
>> > >> 
>> > >>
#trim("#XMLFormat(get_data.CustomerID)#")#
>> > >> 
>> > >> 
>> > >> > > >> ProductCode=""#trim("#XMLFormat(get_data.ProductCode)#")#""
>> > >>
>>
>ProductDescription=""#trim("#XMLFormat(get_data.ProductDescription)#")#
"
>> >"
>> > >> StockLevel=""#trim("#XMLFormat(get_data.StockLevel)#")#""/>
>> > >> 
>> > >> 
>> > >> 
>> > >> ">
>> > >>
>> > >> Can anyone help me please with the looping needed to get each
record
>> > >> rather
>> > >> than just the first one.
>> > >> Many thanks
>> > >> Seamus
>> > >>
>> > >>
>> > >>
>> >
>> >
>>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX Enterprise vs. CFMX for J2EE

2002-12-11 Thread Matt Liotta
You can use EJBs in any edition of CFMX, but you can only host EJBs with
a J2EE server.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 12:08 AM
> To: CF-Talk
> Subject: RE: CFMX Enterprise vs. CFMX for J2EE
> 
> I was under the impression you could utilise EJB's through either
> ColdFusion
> Components or Web Services. Am I wrong? (using CFMX Pro/Enterprise on
> Win2K
> Advanced Server).
> 
> ==
> Peter Tilbrook
> Project Officer
> Strategic Development
> Australian Building Codes Board
> Department of Industry, Tourism and Resources
> GPO Box 9839
> CANBERRA ACT 2601
> AUSTRALIA
> 
>E-Mail: [EMAIL PROTECTED]
> Telephone: (02) 6213 6731
>Mobile: 0439 401 823
> Facsimile: (02) 6213 7287
> 
> 
> -Original Message-
> From: Dave Carabetta [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 11 December 2002 2:53 PM
> To: CF-Talk
> Subject: RE: CFMX Enterprise vs. CFMX for J2EE
> 
> 
>  There is a significant amount of functionality provided by a J2EE
> 
> application server that you don't get with CFMX Enterprise. Examples
of
> 
> this include EJBs and JMS. If you are at all interested in making use
of
> 
> this functionality in CF applications then CFMX for J2EE is the way to
> 
> go.
> 
> 
> 
> --
> 
> Agreed. However, can anybody speak to performance? I've read the brief
> that
> compares MX Enterprise to MX for WebSphere, but haven't seen any
numbers
> regarding MX for JRun. You'd figure there'd be something considering
CFMX
> and MX for JRun are both MM products.
> 
> 
> 
> Also, is there any sort of grid or listing that shows what's included
in
> the
> JRun engine embedded in MX Enterprise vs. the full JRun product?
> 
> 
> 
> Thanks again,
> 
> Dave.
> 
> 
> 
> ___
> No banners. No pop-ups. No kidding.
> Introducing My Way - http://www.myway.com
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Another Newbie Problem

2002-12-11 Thread Everett, Al
Here's how I would do it:

Given two form variables, Form.dataMonth and Form.dataYear I would create
the start and end dates and use those:





SELECT
COLUMN1, COLUMN2, COLUMN3
FROM
TABLENAME
WHERE
DATECOLUMN >= #CreateODBCDate(startDate)#
AND
DATECOLUMN <= #CreateODBCDate(endDate)#


Depending on how your database stores dates you may be better off
incrementing the endDate by one day and using less than instead of less than
or equal to. This is because the endDate is midnight of that date. Anything
where the timestamp is after midnight the same day (e.g., 11/30/2002
09:00:00) won't be found. If you're only looking for months, you could do
something like this:



Then your WHERE clause would look like this:

DATECOLUMN >= #CreateODBCDate(startDate)#
AND
DATECOLUMN < #CreateODBCDate(endDate)#


If you don't want to be locked in to just looking at a month:






> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 6:31 AM
> To: CF-Talk
> Subject: Another Newbie Problem
> 
> 
> In all my cfm references I cannot find a single example of a 
> common task, although you see this kind of thing being used 
> everywhere.
> 
> What I want to do is select from a pair of drop down lists 
> (like Month and Year) and then display only the records from 
> November 2002, for instance.  
> 
> How do you pass just those two variables to a query and draw 
> just the date and month from a standard db date/time string.  
> Is it a datepart function?  
> 
> I just don't get it.  Any insight or pointing toward a 
> tutorial would be appreciated.  
> 
> humbled by cfm yet again
> 
> Rick
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: What is Blue Dragon?

2002-12-11 Thread Matt Liotta
I posted the following to the BACFUG list on this subject.

It is worth noting BlueDragon is not a feature for feature competitor of
ColdFusion. It is really meant as a CFML engine for J2EE and thus is
quite different from the feature packed ColdFusion many of us are used
to. In his article, Phil mentioned some of these differences like Verity
support, which can have a big impact on value. I only point this out
because BlueDragon is cheaper than ColdFusion, but it doesn't provide
the same features, so each has its own unique value proposition.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Drew Harris [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 11:33 PM
> To: CF-Talk
> Subject: What is Blue Dragon?
> 
> Just wondering what exactly is this Blue Dragon product I hear about?
> 
> Thanks,
> Drew Harris
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Another Newbie Problem

2002-12-11 Thread Luce, Greg
Rick,
Can you explain your situation a little more in depth? There are
datepart() functions that allow us to compare parts of dates.

Greg

-Original Message-
From: Kennerly, Rick H CIV [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 8:41 AM
To: CF-Talk
Subject: RE: Another Newbie Problem


Thanks for the response and nice product, but we're dealing with a legacy db
with thousands of records.  Besides, while what you propose is certainly a
work around, is this the most "elegant" or programmerly solution?  

Are there other ways of doing this? 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute

2002-12-11 Thread Kevin Graeme
Wouldn't that be XML?

-Kevin

..
> So thanks for improving the product, we did choose yours for a reason. I'd
> just like to see a solid format for storing content long-term and still
> being able to change its presentation 10 years down the road if
> needed. ...
>
> Adam.
>
>
> > -Original Message-
> > From: Pete Freitag [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, December 10, 2002 3:21 PM
> > To: CF-Talk
> > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> >
> >
> > Adam, in ActivEdit 3.0 we added a bunch of regular
> > expressions, and parsers
> > to clean up Word content pasted into the control, it's not
> > perfect but it
> > does get rid of lots of extraneous markup when you paste from
> > Word. Are you
> > using Version 3?
> >
> > As for the HTML that ActivEdit generates (actually it's the
> > ActiveX control
> > that generates the HTML in most cases), it is valid HTML 3.2.
> > Many people
> > prefer XHTML output these days, and we do have a CFX tag that
> > will convert
> > HTML 3.2 or 4 into XHTML or vise versa, if your interested
> > let me know. The
> > next version of ActivEdit will address these issues further.
> >
> > You can also set a stylesheet for use within activedit via
> > the stylesheet
> > attribute.
> >
> > _
> > Pete Freitag
> > CTO, CFDEV.COM
> > http://www.cfdev.com/
> >
> >
> > -Original Message-
> > From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, December 10, 2002 1:33 PM
> > To: CF-Talk
> > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> >
> >
> > I'd like to see an editor that only defines classes in a div
> > or a span, and
> > which provides a default style sheet. The extent of the html
> > would be very
> > simple , ,  and XHTML compliant. One problem I
> > see with this
> > is pulling in word documents, or old HTML with tables and
> > invalid markup.
> >
> > We're currently using ActiveEdit, and even though it's
> > working well, I have
> > this really uneasy feeling about the HTML it's producing. It
> > just completely
> > goes against the concept of separating content from style,
> > but I just can't
> > think of a suitable alternative to doing it this way until we can:
> > a. Go through all of our old content stripping out all of the
> > markup, and
> > then restylizing it using the new editor's classes.
> > b. Make the decision to never paste word documents, or old
> > html into the
> > editor without first "cleansing" it in notepad, and then
> > restylizing it
> > within the editor.
> >
> > That would be a complete administrative nightmare.
> >
> > Is anyone else feeling the same concerns, and has anyone
> > taken measures to
> > address this? I'd be interested in hearing what you did.
> >
> > Adam.
> >
> >
> >
> >
> >
> > > -Original Message-
> > > From: Joshua Miller
> > [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, December 10, 2002 10:00 AM
> > > To: CF-Talk
> > > Subject: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > >
> > >
> > > I would think that given those abilities that integrating it into an
> > > intranet security context would provide functionality for
> > permissions.
> > > Personally, I'd rather have something that lets me control file/edit
> > > permissions and simply sticks to editing capabilities. I want a
> > > super-form-control more than a content manager - I'll handle
> > > the content
> > > management as it applies to my specific application.
> > >
> > > Is there a version of the DRK2 Rich Text Editor online
> > anywhere that I
> > > could try before I buy? I'd like to be able to make an
> > > informed decision
> > > before jumping into something.
> > >
> > > Although from the looks of ActivEdit it's going to be hard to beat.
> > >
> > > Joshua Miller
> > > Head Programmer / IT Manager
> > > Garrison Enterprises Inc.
> > > www.garrisonenterprises.net
> > > [EMAIL PROTECTED]
> > > (704) 569-9044 ext. 254
> > >
> > > **
> > > **
> > > *
> > > Any views expressed in this message are those of the
> > > individual sender,
> > > except where the sender states them to be the views of
> > > Garrison Enterprises Inc.
> > >
> > > This e-mail is intended only for the individual or entity to
> > > which it is
> > > addressed and contains information that is private and
> > > confidential. If
> > > you are not the intended recipient you are hereby notified that any
> > > dissemination, distribution or copying is strictly
> > prohibited. If you
> > > have received this e-mail in error please delete it immediately and
> > > advise us by return e-mail to
> > > [EMAIL PROTECTED]
> > > **
> > > **
> > > *
> > >
> > >
> > > -Original Message-
> > > From: Kevin Graeme [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, December 10, 2002 10:32 AM
> > > To: CF-Talk

RE: Another Newbie Problem

2002-12-11 Thread rick
Rick,
Can you explain your situation a little more in depth? There are
datepart() functions that allow us to compare parts of dates.

Greg


Sure, thanks for the interest. 

We have several thousand records in a db with a standard odbc datetime stamp column.  
We want to be able to filter out end of month statistics (all trouble calls in 
November, 2002, for instance) by using a set of drop down menus (month, year, type of 
call).   

This is the kind of product one sees everywhere on the internet, but I just can't find 
a reference piece to get my head in the right place about how to go about it.  Plus, 
as I've learned, there are always several approaches to the same problem.  

Any ideas are appreciated.  

Rick 



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Joshua Miller
It was a financial issue. My employer saw a cheap SSL and bought it
against my advice.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:38 AM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


hi josh.

ill be back on this tonight, when I get home from my real job to my home
job ;) ill see what I can find.  the thing is, with a thawte cert, all
things are fine, its just the stupid instant ssl cert that is causing
the problems.  why did you choose instant ssl vs. thawte? just wondering
why you/the other company I am working with did the same thing? thanks.

.tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting www.navtrak.net
410.548.2337 

-Original Message-
From: Joshua Miller [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 10:56 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


A few more items:
1. http://www.fusionauthority.com/Article.cfm?ArticleID=3182
2.
http://devex.macromedia.com/developer/gallery/info.cfm?ID=E26C348B-3C1B-
11D6-840300508B94F380&method=Full
3. http://www.iexp.com/products/cfx_rawsocket/

This may be a solution.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net [EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 9:45 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


moreover, what versions of each? 

matt liotta...any word on
versions to use or not to use?

thanks
tony

-Original Message-
From: Samuel Neff [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 9:41 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


Haven't been following this thread but can add a small bit of info that
may help.

CFHTTP is extremely dependent on the Java runtime being used.  Try using
a different runtime from a different vendor--bea,sun,bea, etc.--and see
if it works.  This is how you achieve higher levels of encryption, may
fix your problem as well.


> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 8:01 PM
> To: CF-Talk
> Subject: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> 
> is there anything know to you all about this?
> 
> Unable to https post to a url that is ssl cert'ed
> using an "Instant SSL" cert.
> 
> CFMX.
> IIS5
> 
> thanks.
> 
> tony
> 






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and other weird errors

2002-12-11 Thread Adam Hope
Hi Andres,

Take a look at this document at MM about Locking Best Practices:

http://www.macromedia.com/v1/handlers/index.cfm?id=20370&method=full

That should give you a guide on how to implement good locking in your code. If you 
want to track down an elusive lock then on a development server enable "Automatic Read 
Locking" for all the scopes in the Coldfusion Administrator Locking section. This 
performs full write locking checks as well and wiil halt your code when it finds 
unlocked writes.

Adam Hope
Development Team Leader, www.smartgroups.com
Freeserve.com Plc, PO Box 452, Leeds LS2 7SW

> -Original Message-
> From: Andres [mailto:[EMAIL PROTECTED]]
> Sent: 10 December 2002 16:04
> To: CF-Talk
> Subject: RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and
> other weird errors
> 
> 
> Doug,
> Can you provide a link or location where i can find this methodology? 
> 
> Thank you!
> 
> Andres
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 12:49 AM
> To: CF-Talk
> Subject: RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and
> other weird errors
> 
> 
> yup, seen that.  pcode errors, from what I've experienced and 
> from research, are related to one of the most popular topics 
> on these lists, locking and shared scopes.  We put an app in 
> production, after a month or so when it got popular and the 
> usage climed, we saw these pcode errors often.  We made sure 
> every access to session.foo was locked and still got them 
> under load, but much less often.  Once we changed over to the 
> 'copy session scope to the request scope' methodology, all 
> the pcode errors went bye bye. 
> 
> 
> These makes me wonder...it seems an app can be written in 
> such a way as to 'over use' locking/session scope.
> 
> 
> Doug
> 
> >-Original Message-
> >From: Andres [mailto:[EMAIL PROTECTED]]
> >Sent: Monday, December 09, 2002 9:31 PM
> >To: CF-Talk
> >Subject: 
> PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and other
> >weird errors
> >
> >
> >Hello All,
> >I have recently (last 36 or so hours) have began experiencing 
> >server timeouts, hangs, and have needed to restart CF and IIS 
> >in all my servers.
> >
> >Among the many errors i get in the application.log file are 
> >things such as 
> >PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and 
> >CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode122333444
> >45654321
> >
> >I started a support event with MM. Their engineer tells me it 
> >is an issue with shared variable locking. I have began looking 
> >closely at my code and have found some potential locking 
> >issues. But the fact is that my code HAS NOT CHANGED since we 
> >went 5.0 over 5 months ago. No other major changes have taken place.
> >
> >I am starting to make sure all my app, session, and server 
> >vars are properly locked, but we host two huge apps (over 1500 
> >templates each) so it will take time to go through them.
> >
> >My question is.. has anyone ever experienced their CF server 
> >suddenly require such drastic use of cflocking?
> >
> >Any suggestions or ideas will be much appreciated!
> >
> >Thanks
> >
> >Andres
> >
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Joshua Miller
Yes, you are correct, to write a raw post you'd need something like
CFX_RawSocket (http://www.iexp.com/products/cfx_rawsocket/docs.cfm)
sorry, I was very disjointed last night in regards to CFHEADER ...
Simply trying to think of a way to post raw HTTP data using CFML and for
some reason thought CFHEADER would be the logical choice.

Thanks for straightening that out Dave.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, December 10, 2002 11:42 PM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


> Looking at the Java solution from the link I sent in
> my last post, I wonder if it's possible to just write 
> an HTTP POST operating using CFHEADER instead of CFHTTP 
> and then reading the response from that? 

CFHEADER is used to write HTTP response headers; you can't use it to
build an HTTP request.

> I wonder if there's something inside of CFHTTP that makes
> it not work with the SSL that could be circumvented by 
> just writing a raw HTTP POST from your data? What are your 
> thoughts on that?

I don't know what you mean by "writing a raw HTTP POST from your data" -
you'd need some way to open a socket, send text to the socket, wait for
a response, and process that response (to oversimplify the process a
bit). There's no CFML command that will do that, beside CFHTTP and
CFINVOKE (which isn't usable for generic HTTP communication, only SOAP
over HTTP).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



OT: Web search

2002-12-11 Thread Frank Mamone
Does anyone here know how Macromedia accomplishes the Java search in their Product 
help system? Like for example the Flash Help Files? They have a little applet where 
you can do a search and index.

Thanks. 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Component Conceptual Conundrum

2002-12-11 Thread Raymond Camden
The fact that a CFC instance has issues getting access to APP, SESSION,
etc after the first hit is a known bug.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Robert Polickoski [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, December 11, 2002 6:59 AM
> To: CF-Talk
> Subject: Component Conceptual Conundrum
> 
> 
> All,
> 
> Thank you for your patience with my current component problems.  I 
> will admit, my primary background is in compiled programming 
> environments.  I have been able to work in a pure HTML/CGI 
> environment for web apps using ASP with few conceptual issues.  
> But the mixed environment of web-based applications that have some 
> OOP capabilities is giving me some fits.  I did some tests 
> originally that showed I could access scoped variables 
> (APPLICATION, CLIENT and SESSION) from within a component.  My 
> further work, I think has determined that you can only access the 
> scoped variables when the method calls are to the cfc file 
> directly as opposed to an instance of the object.  REQUEST scope 
> variables only exist for the duration of a single client-server 
> request.  My question is, how do you get access to persistent 
> variables, i.e. those that would normally be in APPLICATION, 
> CLIENT or SESSION, from within instantiated components?  I have 
> resolved the issue for static variables by creating a base object 
> that all other objects extend containing the static data.  But 
> this does not work for variable data; at least I can't think how 
> to make it work.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



CFMX and IIS setting (Jrun.dll)

2002-12-11 Thread Farkhad Mousaev
Hello,
Does anybody have a clue where jrun.dll is located in CFMX?
IIS  automaticly sets the follwing location to run .cfm files 
C:\CFusionMX\runtime\lib\wsconfig\1\jrun.dll which actually doesn't exist.

 currently it  shows blank page whenever i try to run cf files.

Best regards,

-FM

 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Matt Liotta
You can now do RAW HTTP XML posts using CFMX.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 9:16 AM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> Yes, you are correct, to write a raw post you'd need something like
> CFX_RawSocket (http://www.iexp.com/products/cfx_rawsocket/docs.cfm)
> sorry, I was very disjointed last night in regards to CFHEADER ...
> Simply trying to think of a way to post raw HTTP data using CFML and
for
> some reason thought CFHEADER would be the logical choice.
> 
> Thanks for straightening that out Dave.
> 
> Joshua Miller
> Head Programmer / IT Manager
> Garrison Enterprises Inc.
> www.garrisonenterprises.net
> [EMAIL PROTECTED]
> (704) 569-9044 ext. 254
> 
>

> *
> Any views expressed in this message are those of the individual
sender,
> except where the sender states them to be the views of
> Garrison Enterprises Inc.
> 
> This e-mail is intended only for the individual or entity to which it
is
> addressed and contains information that is private and confidential.
If
> you are not the intended recipient you are hereby notified that any
> dissemination, distribution or copying is strictly prohibited. If you
> have received this e-mail in error please delete it immediately and
> advise us by return e-mail to
[EMAIL PROTECTED]
>

> *
> 
> 
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 11:42 PM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> 
> > Looking at the Java solution from the link I sent in
> > my last post, I wonder if it's possible to just write
> > an HTTP POST operating using CFHEADER instead of CFHTTP
> > and then reading the response from that?
> 
> CFHEADER is used to write HTTP response headers; you can't use it to
> build an HTTP request.
> 
> > I wonder if there's something inside of CFHTTP that makes
> > it not work with the SSL that could be circumvented by
> > just writing a raw HTTP POST from your data? What are your
> > thoughts on that?
> 
> I don't know what you mean by "writing a raw HTTP POST from your data"
-
> you'd need some way to open a socket, send text to the socket, wait
for
> a response, and process that response (to oversimplify the process a
> bit). There's no CFML command that will do that, beside CFHTTP and
> CFINVOKE (which isn't usable for generic HTTP communication, only SOAP
> over HTTP).
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



FedEx Shipping tag - willing to purchase

2002-12-11 Thread UXBinfo
Hi there,

Has anyone written or knows of a CF tag for acquiring shipping costs from
the FEDEX on-line system?   I have found several UPS tags and a Fedex tag
with local price schedule but our customer wants to get real time costs. I
would rather not invest the time writing one from FedEx's information and am
willing to purchase a working tag.  We are using CF4.X and CF5.

Thank you in advance.


Best regards,

Dennis Powers
UXB Internet - A Web Design and Hosting Company
tel: (203)879-2844  fax: (203)879-6254
http://www.uxbinternet.com/
http://dennis.uxb.net/


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Joshua Miller
That wouldn't allow me to send HTTP Header information for POST
operations though would it?

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 9:25 AM
To: CF-Talk
Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!


You can now do RAW HTTP XML posts using CFMX.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 9:16 AM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> Yes, you are correct, to write a raw post you'd need something like 
> CFX_RawSocket (http://www.iexp.com/products/cfx_rawsocket/docs.cfm)
> sorry, I was very disjointed last night in regards to CFHEADER ... 
> Simply trying to think of a way to post raw HTTP data using CFML and
for
> some reason thought CFHEADER would be the logical choice.
> 
> Thanks for straightening that out Dave.
> 
> Joshua Miller
> Head Programmer / IT Manager
> Garrison Enterprises Inc.
> www.garrisonenterprises.net [EMAIL PROTECTED]
> (704) 569-9044 ext. 254
> 
>

> *
> Any views expressed in this message are those of the individual
sender,
> except where the sender states them to be the views of
> Garrison Enterprises Inc.
> 
> This e-mail is intended only for the individual or entity to which it
is
> addressed and contains information that is private and confidential.
If
> you are not the intended recipient you are hereby notified that any
> dissemination, distribution or copying is strictly prohibited. If you
> have received this e-mail in error please delete it immediately and
> advise us by return e-mail to
[EMAIL PROTECTED]
>

> *
> 
> 
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, December 10, 2002 11:42 PM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> 
> > Looking at the Java solution from the link I sent in
> > my last post, I wonder if it's possible to just write
> > an HTTP POST operating using CFHEADER instead of CFHTTP
> > and then reading the response from that?
> 
> CFHEADER is used to write HTTP response headers; you can't use it to
> build an HTTP request.
> 
> > I wonder if there's something inside of CFHTTP that makes
> > it not work with the SSL that could be circumvented by
> > just writing a raw HTTP POST from your data? What are your
> > thoughts on that?
> 
> I don't know what you mean by "writing a raw HTTP POST from your data"
-
> you'd need some way to open a socket, send text to the socket, wait
for
> a response, and process that response (to oversimplify the process a
> bit). There's no CFML command that will do that, beside CFHTTP and
> CFINVOKE (which isn't usable for generic HTTP communication, only SOAP
> over HTTP).
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
> 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Redirection based on IP address.

2002-12-11 Thread Aaron Johnson
> There is no reliable way to determine the country of a user on a web
> site based on ip, user locale, reverse dns, or any other technique.
 -- Course, this product begs to differ:

http://www.browserhawk.com/products/country/intro.asp

AJ
-- 
Aaron Johnson
http://cephas.net/blog/
[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Component Conceptual Conundrum - Continued

2002-12-11 Thread Robert Polickoski
All,

Sorry to bug you all again.  Does anyone know how to reference a 
method of an instantiated component from an HTML tag such as an 
anchor or a form?

Robert J. Polickoski
Senior Programmer, ISRD Inc.
(540) 842-6339
[EMAIL PROTECTED]
AIM - RobertJFP



-- Original Message --
From: "Robert Polickoski" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Wed, 11 Dec 2002 07:59:29 -0500

>All,
>
>Thank you for your patience with my current component problems.  
I 
>will admit, my primary background is in compiled programming 
>environments.  I have been able to work in a pure HTML/CGI 
>environment for web apps using ASP with few conceptual issues.  
>But the mixed environment of web-based applications that have 
some 
>OOP capabilities is giving me some fits.  I did some tests 
>originally that showed I could access scoped variables 
>(APPLICATION, CLIENT and SESSION) from within a component.  My 
>further work, I think has determined that you can only access the 
>scoped variables when the method calls are to the cfc file 
>directly as opposed to an instance of the object.  REQUEST scope 
>variables only exist for the duration of a single client-server 
>request.  My question is, how do you get access to persistent 
>variables, i.e. those that would normally be in APPLICATION, 
>CLIENT or SESSION, from within instantiated components?  I have 
>resolved the issue for static variables by creating a base object 
>that all other objects extend containing the static data.  But 
>this does not work for variable data; at least I can't think how 
>to make it work.
>
>Any help would be greatly appreciated.
>
>Robert J. Polickoski
>Senior Programmer, ISRD Inc.
>(540) 842-6339
>[EMAIL PROTECTED]
>AIM - RobertJFP 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MACROMEDIA PEOPLE....RE: instant SSL HELP!!!!!

2002-12-11 Thread Matt Liotta
Nope, sorry I didn't read the entire threa.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 9:42 AM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> That wouldn't allow me to send HTTP Header information for POST
> operations though would it?
> 
> Joshua Miller
> Head Programmer / IT Manager
> Garrison Enterprises Inc.
> www.garrisonenterprises.net
> [EMAIL PROTECTED]
> (704) 569-9044 ext. 254
> 
>

> *
> Any views expressed in this message are those of the individual
sender,
> except where the sender states them to be the views of
> Garrison Enterprises Inc.
> 
> This e-mail is intended only for the individual or entity to which it
is
> addressed and contains information that is private and confidential.
If
> you are not the intended recipient you are hereby notified that any
> dissemination, distribution or copying is strictly prohibited. If you
> have received this e-mail in error please delete it immediately and
> advise us by return e-mail to
[EMAIL PROTECTED]
>

> *
> 
> 
> -Original Message-
> From: Matt Liotta [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 9:25 AM
> To: CF-Talk
> Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> 
> 
> You can now do RAW HTTP XML posts using CFMX.
> 
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> 888-408-0900 x901
> 
> > -Original Message-
> > From: Joshua Miller
[mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 11, 2002 9:16 AM
> > To: CF-Talk
> > Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> >
> > Yes, you are correct, to write a raw post you'd need something like
> > CFX_RawSocket (http://www.iexp.com/products/cfx_rawsocket/docs.cfm)
> > sorry, I was very disjointed last night in regards to CFHEADER ...
> > Simply trying to think of a way to post raw HTTP data using CFML and
> for
> > some reason thought CFHEADER would be the logical choice.
> >
> > Thanks for straightening that out Dave.
> >
> > Joshua Miller
> > Head Programmer / IT Manager
> > Garrison Enterprises Inc.
> > www.garrisonenterprises.net [EMAIL PROTECTED]
> > (704) 569-9044 ext. 254
> >
> >
>

> > *
> > Any views expressed in this message are those of the individual
> sender,
> > except where the sender states them to be the views of
> > Garrison Enterprises Inc.
> >
> > This e-mail is intended only for the individual or entity to which
it
> is
> > addressed and contains information that is private and confidential.
> If
> > you are not the intended recipient you are hereby notified that any
> > dissemination, distribution or copying is strictly prohibited. If
you
> > have received this e-mail in error please delete it immediately and
> > advise us by return e-mail to
> [EMAIL PROTECTED]
> >
>

> > *
> >
> >
> > -Original Message-
> > From: Dave Watts [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, December 10, 2002 11:42 PM
> > To: CF-Talk
> > Subject: RE: MACROMEDIA PEOPLERE: instant SSL HELP!
> >
> >
> > > Looking at the Java solution from the link I sent in
> > > my last post, I wonder if it's possible to just write
> > > an HTTP POST operating using CFHEADER instead of CFHTTP
> > > and then reading the response from that?
> >
> > CFHEADER is used to write HTTP response headers; you can't use it to
> > build an HTTP request.
> >
> > > I wonder if there's something inside of CFHTTP that makes
> > > it not work with the SSL that could be circumvented by
> > > just writing a raw HTTP POST from your data? What are your
> > > thoughts on that?
> >
> > I don't know what you mean by "writing a raw HTTP POST from your
data"
> -
> > you'd need some way to open a socket, send text to the socket, wait
> for
> > a response, and process that response (to oversimplify the process a
> > bit). There's no CFML command that will do that, beside CFHTTP and
> > CFINVOKE (which isn't usable for generic HTTP communication, only
SOAP
> > over HTTP).
> >
> > Dave Watts, CTO, Fig Leaf Software
> > http://www.figleaf.com/
> > voice: (202) 797-5496
> > fax: (202) 797-5444
> >
> >
> >
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related t

Frequency of Digest Version Email Messages

2002-12-11 Thread Cindy . Conard


For the past several days, those of us receiving the digest version are getting
numerous messages a day, instead of one big email once or twice a day.

It this a temporary glitch, or a permanent change?






RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Raymond Camden
You can't. You can post to a CFC, but not an instance of one. You could
hack around it a bit by having another CFC that stores the copies, ie, a
Manager type CFC, then you could post to that CFC and pass an ID so it
knows what instance of Whatever.cfc you want to use.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Robert Polickoski [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, December 11, 2002 9:04 AM
> To: CF-Talk
> Subject: Component Conceptual Conundrum - Continued
> 
> 
> All,
> 
> Sorry to bug you all again.  Does anyone know how to reference a 
> method of an instantiated component from an HTML tag such as an 
> anchor or a form?
> 
> Robert J. Polickoski
> Senior Programmer, ISRD Inc.
> (540) 842-6339
> [EMAIL PROTECTED]
> AIM - RobertJFP
> 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Joshua Miller
I know this is probably nothing special, but getting an easy-to-install
CFML engine on my Mac just made my day!
 
If you're interested, just use the default Apache installation, then
download Tomcat from http://jakarta.apache.org, then download BlueDragon
for J2EE from www.newatlanta.com and install them in order (Apache,
Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
 
I know this isn't fully CFMX compatable, but I'm certainly happy that it
runs on the Mac. Wonder why it's not "officially" supported on Mac? All
of the UNIX files worked just fine without any trouble/tweaking.
 
Anyway, just thought I'd post my success to the list in case anyone else
is interested.
 
Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net  
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to

[EMAIL PROTECTED]

*
 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Kevin Bridges
I haven't done this, but have been eyeballing it for a while ... couldn't
you do something utilizing dhtml like so:
http://w3coder.com:8080/ws/CallWSUsingDHTML.aspx

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:06 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

You can't. You can post to a CFC, but not an instance of one. You could
hack around it a bit by having another CFC that stores the copies, ie, a
Manager type CFC, then you could post to that CFC and pass an ID so it
knows what instance of Whatever.cfc you want to use.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Robert Polickoski [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, December 11, 2002 9:04 AM
> To: CF-Talk
> Subject: Component Conceptual Conundrum - Continued
> 
> 
> All,
> 
> Sorry to bug you all again.  Does anyone know how to reference a 
> method of an instantiated component from an HTML tag such as an 
> anchor or a form?
> 
> Robert J. Polickoski
> Senior Programmer, ISRD Inc.
> (540) 842-6339
> [EMAIL PROTECTED]
> AIM - RobertJFP
> 
> 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Raymond Camden
I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, December 11, 2002 9:14 AM
> To: CF-Talk
> Subject: RE: Component Conceptual Conundrum - Continued
> 
> 
> I haven't done this, but have been eyeballing it for a while 
> ... couldn't you do something utilizing dhtml like so: 
> http://w3coder.com:8080/ws/CallWSUsingDHTML.aspx
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Does anyone have a flash/cfm photo tag

2002-12-11 Thread Aaron Johnson
Hi Rebecca,

> For the Holidays I wanted to create a little photo album that would work in 
> flash and pull from a CF database listings of my family photos.  I do not 
> know actionscript.  So I need help.   Please
 -- If you want a quick start on a photo album, check out the Photo
Slideshow template that comes with Flash MX.  File --> New From Template
--> PhotoSlideshow.  Point it at a folder containing your photos and it
makes a really nice slide show. You could use the generated action
script as a starting point.

AJ

 
-- 
Aaron Johnson
http://cephas.net/blog/
[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Kola Oyedeji
I'm very interested...

 are there any J2EE servers available for the MAC? If not why did you
choose the J2EE version?

Thanks

Kola

>> -Original Message-
>> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:11
>> To: CF-Talk
>> Subject: BlueDragon J2EE on OSX - Working !!!
>> 
>> I know this is probably nothing special, but getting an
easy-to-install
>> CFML engine on my Mac just made my day!
>> 
>> If you're interested, just use the default Apache installation, then
>> download Tomcat from http://jakarta.apache.org, then download
BlueDragon
>> for J2EE from www.newatlanta.com and install them in order (Apache,
>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>> 
>> I know this isn't fully CFMX compatable, but I'm certainly happy that
it
>> runs on the Mac. Wonder why it's not "officially" supported on Mac?
All
>> of the UNIX files worked just fine without any trouble/tweaking.
>> 
>> Anyway, just thought I'd post my success to the list in case anyone
else
>> is interested.
>> 
>> Joshua Miller
>> Head Programmer / IT Manager
>> Garrison Enterprises Inc.
>> www.garrisonenterprises.net 
>> [EMAIL PROTECTED]
>> (704) 569-9044 ext. 254
>> 
>>

>> *
>> Any views expressed in this message are those of the individual
sender,
>> except where the sender states them to be the views of
>> Garrison Enterprises Inc.
>> 
>> This e-mail is intended only for the individual or entity to which it
is
>> addressed and contains information that is private and confidential.
If
>> you are not the intended recipient you are hereby notified that any
>> dissemination, distribution or copying is strictly prohibited. If you
>> have received this e-mail in error please delete it immediately and
>> advise us by return e-mail to
>> 
>> [EMAIL PROTECTED]
>>

>> *
>> 
>> 
>>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Good book for CFMX beginner?

2002-12-11 Thread Dick Applebaum
What do people recommend, nowadays, as a book for someone to learn 
CFML/CFMX -- say someone with HTML experience, but little or no 
exposure to web application programming or languages?

TIA

Dick

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Kevin Bridges
Makes sense ... I misunderstood the question.  As a side note, has anyone
actually done anything like this with cf web services?
http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:18 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: OT: Web search

2002-12-11 Thread Ryan Kime
Are you talking about the Help system that has tabs with items such as
"contents", "index" and "search"??? I'm not sure about Flash, but for DW and
CF they are compiled HTML help files. There are many apps out there that
will help you create CHM files, a free one is Microsoft's HTML Help
Workshop. Commercial products include RoboHelp () and
the one MM uses - Quadralay WebWorks Publisher
().


HTH,

Ryan

-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:17 AM
To: CF-Talk
Subject: OT: Web search


Does anyone here know how Macromedia accomplishes the Java search in their
Product help system? Like for example the Flash Help Files? They have a
little applet where you can do a search and index.

Thanks. 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Good book for CFMX beginner?

2002-12-11 Thread Clint Tredway
I would say the CFWACK book by Forta.

Clint

- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 11, 2002 9:25 AM
Subject: Good book for CFMX beginner?


> What do people recommend, nowadays, as a book for someone to learn
> CFML/CFMX -- say someone with HTML experience, but little or no
> exposure to web application programming or languages?
>
> TIA
>
> Dick
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Tony Weeg
what is so tricky about that webService?
is it a webService?

just wondering?



..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:25 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued


Makes sense ... I misunderstood the question.  As a side note, has
anyone
actually done anything like this with cf web services?
http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:18 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Tony Weeg
a a db hit, with no page reload :) I see.

..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:25 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued


Makes sense ... I misunderstood the question.  As a side note, has
anyone
actually done anything like this with cf web services?
http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:18 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Matt Liotta
Two points. First, JBoss is available for many platforms including OS X.
Second, BlueDragon doesn't require a full J2EE server; it can run with
just a servlet engine.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 10:22 AM
> To: CF-Talk
> Subject: RE: BlueDragon J2EE on OSX - Working !!!
> 
> I'm very interested...
> 
>  are there any J2EE servers available for the MAC? If not why did you
> choose the J2EE version?
> 
> Thanks
> 
> Kola
> 
> >> -Original Message-
> >> From: Joshua Miller
[mailto:[EMAIL PROTECTED]]
> >> Sent: 11 December 2002 15:11
> >> To: CF-Talk
> >> Subject: BlueDragon J2EE on OSX - Working !!!
> >>
> >> I know this is probably nothing special, but getting an
> easy-to-install
> >> CFML engine on my Mac just made my day!
> >>
> >> If you're interested, just use the default Apache installation,
then
> >> download Tomcat from http://jakarta.apache.org, then download
> BlueDragon
> >> for J2EE from www.newatlanta.com and install them in order (Apache,
> >> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
> >>
> >> I know this isn't fully CFMX compatable, but I'm certainly happy
that
> it
> >> runs on the Mac. Wonder why it's not "officially" supported on Mac?
> All
> >> of the UNIX files worked just fine without any trouble/tweaking.
> >>
> >> Anyway, just thought I'd post my success to the list in case anyone
> else
> >> is interested.
> >>
> >> Joshua Miller
> >> Head Programmer / IT Manager
> >> Garrison Enterprises Inc.
> >> www.garrisonenterprises.net 
> >> [EMAIL PROTECTED]
> >> (704) 569-9044 ext. 254
> >>
> >>
>

> >> *
> >> Any views expressed in this message are those of the individual
> sender,
> >> except where the sender states them to be the views of
> >> Garrison Enterprises Inc.
> >>
> >> This e-mail is intended only for the individual or entity to which
it
> is
> >> addressed and contains information that is private and
confidential.
> If
> >> you are not the intended recipient you are hereby notified that any
> >> dissemination, distribution or copying is strictly prohibited. If
you
> >> have received this e-mail in error please delete it immediately and
> >> advise us by return e-mail to
> >> 
> >> [EMAIL PROTECTED]
> >>
>

> >> *
> >>
> >>
> >>
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Redirection based on IP address.

2002-12-11 Thread Jon Hall
CountryHawk may be good (or bad...) but it's certainly far from 100%
accurate. Just looking at the docs real quick, it uses a database of
ip:country mappings that has to be updated regularly. Even if they put
out a new version every day, I seriously doubt they can keep track of
all 4 billion+ possible ip addresses accurately. Not only that,
dynamic ip's, multinational isp's, and proxies are unknown's. What if
a netblock owner with an ASN number sells out or moves to a different
country, or heck, just loans some unused net blocks he had since the
80's to a buddy?

To me, if a product is reliable, it means 100%. Browserhawk would
not fit my definition of reliable. Not even close if you ask me.

-- 
jon
mailto:[EMAIL PROTECTED]

Wednesday, December 11, 2002, 9:53:21 AM, you wrote:

>> There is no reliable way to determine the country of a user on a web
>> site based on ip, user locale, reverse dns, or any other technique.
AJ>  -- Course, this product begs to differ:

AJ> http://www.browserhawk.com/products/country/intro.asp

AJ> AJ

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Kevin Bridges
It's a static dhtml interface that adds/edits/updates/displays db data.
Each click of the button allows the interface to invoke a webservice and
performs one of the db functions outlined above.  In the MX world it is
similar to creating a flash interface and using flashRemoting to get data
into/out of the interface.  If you look in the status area of the browser
(bottom left corner) you'll see it interact with the web service as you
click the buttons ... seems like a great way to build interfaces for
applications w/o requiring flash.

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:32 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

what is so tricky about that webService?
is it a webService?

just wondering?



.tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:25 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued


Makes sense ... I misunderstood the question.  As a side note, has
anyone
actually done anything like this with cf web services?
http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:18 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: OT: Web search

2002-12-11 Thread Frank Mamone
I know aboy the HTML Help, but these are regular static pages that this Java
applet is able to search.

- Original Message -
From: "Ryan Kime" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 11, 2002 10:24 AM
Subject: RE: OT: Web search


> Are you talking about the Help system that has tabs with items such as
> "contents", "index" and "search"??? I'm not sure about Flash, but for DW
and
> CF they are compiled HTML help files. There are many apps out there that
> will help you create CHM files, a free one is Microsoft's HTML Help
> Workshop. Commercial products include RoboHelp ()
and
> the one MM uses - Quadralay WebWorks Publisher
> ().
>
>
> HTH,
>
> Ryan
>
> -Original Message-
> From: Frank Mamone [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 8:17 AM
> To: CF-Talk
> Subject: OT: Web search
>
>
> Does anyone here know how Macromedia accomplishes the Java search in their
> Product help system? Like for example the Flash Help Files? They have a
> little applet where you can do a search and index.
>
> Thanks.
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Good book for CFMX beginner?

2002-12-11 Thread Jeffry Houser
  At the risk of a little self-promotion.  I think my Beginner's book is 
the best Beginner's book out there:


  It goes out of its way to clearly explain programming concepts, using 
ColdFusion as the language of choice.
  I will also add that everything in the book applies to CFMX.  ( If it 
were to be updated, I would include information on CFCs, and a bit about 
setting up a development server, but don't think I would change anything 
else ).

  If anyone here read it and wants to see it updated, try to contact 
Osborne and ask about it.

At 07:25 AM 12/11/2002 -0800, you wrote:
>What do people recommend, nowadays, as a book for someone to learn
>CFML/CFMX -- say someone with HTML experience, but little or no
>exposure to web application programming or languages?
>
>TIA
>
>Dick
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Multiple Collections In One Verity Search

2002-12-11 Thread Girardeau, Anne
Hello everyone,
I have put together a search interface that searches through multiple
collections and it does all of this with absolutely no problem. However, I
am trying to figure out how to stipulate criteria for results pulled from
specific collections. Is it possible to isolate results from one collection
after a search has been performed? 

I have included a code illustration of what I would expect would do the
trick assuming I knew the correct syntax.

Any help with this would be greatly appreciated.

Thanks,

--Anne





Do this



Do something else

 

Anne D. Girardeau
Webmaster
John Tyler Community College
13101 Jefferson Davis Hwy.
Chester, VA 23831-5316
Telephone: (804) 706-5251
Fax: (804) 706-5249
Website: www.jtcc.edu




RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Matt Liotta
It is possible to use DHTML to hit any SOAP-based web service including
a CF one. I believe the function is named XMLHTTPRequest(), which allows
you to make raw XML posts to a web service.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

> -Original Message-
> From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 10:25 AM
> To: CF-Talk
> Subject: RE: Component Conceptual Conundrum - Continued
> 
> Makes sense ... I misunderstood the question.  As a side note, has
anyone
> actually done anything like this with cf web services?
> http://www.infoscico.com/DbWebService/DbWebServiceClient.htm
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 8:18 AM
> To: CF-Talk
> Subject: RE: Component Conceptual Conundrum - Continued
> 
> I don't believe this is what he is talking about. Right now you can
> 'post' to a CFC using a form tag like so:
> 
> 
>   
>   ...
> 
> However, this posts to the generic Foo (not the best term I think) - I
> believe it's simular to using a static method in Java.
> 
> However, CF allows you to create instances of CFCs as well:
> 
> 
> 
> But you can't post directly to x.
> 
>
===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> 
> Email: [EMAIL PROTECTED]
> WWW  : www.camdenfamily.com/morpheus
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Multiple Collections In One Verity Search

2002-12-11 Thread Girardeau, Anne
Hello everyone,
I have put together a search interface that searches through multiple
collections and it does all of this with absolutely no problem. However, I
am trying to figure out how to stipulate criteria for results pulled from
specific collections. Is it possible to isolate results from one collection
after a search has been performed? 

I have included a code illustration of what I would expect would do the
trick assuming I knew the correct syntax.

Any help with this would be greatly appreciated.

Thanks,

--Anne





Do this



Do something else

 

Anne D. Girardeau
Webmaster
John Tyler Community College
13101 Jefferson Davis Hwy.
Chester, VA 23831-5316
Telephone: (804) 706-5251
Fax: (804) 706-5249
Website: www.jtcc.edu


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Another Newbie Problem

2002-12-11 Thread Jochem van Dieten
Quoting [EMAIL PROTECTED]:
> 
> We have several thousand records in a db with a standard odbc
> datetime stamp column.  We want to be able to filter out end of month
> statistics (all trouble calls in November, 2002, for instance) by
> using a set of drop down menus (month, year, type of call).   

There are 2 generic ways to do this:
- create a startdate and an enddate and do a BETWEEN search
- use SQL date functions to extract year and month from the field and do
an exact search on that

Code example of the latter (the former has been posted already):
SELECT   *
FROM table
WHEREEXTRACT(YEAR FROM datefield) = #year#
AND  EXTRACT(MONTH FROM datefield) = #month#
(If your database hasn't implemented SQL date functions the exact syntax
might be different and you should naturally use cfqueryparam.)

The question which approach is most efficient is highly dependent on the
database you are using, and especially the index functionality. I would
probably create some indexes and do timings on them. Specifically:
CREATE INDEX test1_idx ON table (datefield);
CREATE INDEX test2_idx ON table (EXTRACT(YEAR FROM datefield),
EXTRACT(MONTH FROM datefield), calltype);
If your database supports it, play around with index types (try an RTREE
for test1_idx). But unless you have millions of records, speed
difference is probably neglegible, and you should go for the strategy
that uses the smallest index.

Jochem
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Jon Hall
JBoss is written in Java, it should run on the Mac... Why not choose
the J2EE version if he is running Tomcat?

-- 
jon
mailto:[EMAIL PROTECTED]

Wednesday, December 11, 2002, 10:22:13 AM, you wrote:

KO> I'm very interested...

KO>  are there any J2EE servers available for the MAC? If not why did you
KO> choose the J2EE version?

KO> Thanks

KO> Kola

>>> -Original Message-
>>> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
>>> Sent: 11 December 2002 15:11
>>> To: CF-Talk
>>> Subject: BlueDragon J2EE on OSX - Working !!!
>>> 
>>> I know this is probably nothing special, but getting an
KO> easy-to-install
>>> CFML engine on my Mac just made my day!
>>> 
>>> If you're interested, just use the default Apache installation, then
>>> download Tomcat from http://jakarta.apache.org, then download
KO> BlueDragon
>>> for J2EE from www.newatlanta.com and install them in order (Apache,
>>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>>> 
>>> I know this isn't fully CFMX compatable, but I'm certainly happy that
KO> it
>>> runs on the Mac. Wonder why it's not "officially" supported on Mac?
KO> All
>>> of the UNIX files worked just fine without any trouble/tweaking.
>>> 
>>> Anyway, just thought I'd post my success to the list in case anyone
KO> else
>>> is interested.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute

2002-12-11 Thread Cantrell, Adam
Problem is pulling in either word or other text documents or older html
documents from the database. There's no way a text-editor would know how to
properly transform that format into our own custom XML. I'm afraid that will
still have to be a manual process.

XHTML seems like a better step, as from what I believe it's just an 'XML
standard that happens to have the syntax of html'.

Adam.


> -Original Message-
> From: Kevin Graeme [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 7:56 AM
> To: CF-Talk
> Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> 
> 
> Wouldn't that be XML?
> 
> -Kevin
> 
> ..
> > So thanks for improving the product, we did choose yours 
> for a reason. I'd
> > just like to see a solid format for storing content 
> long-term and still
> > being able to change its presentation 10 years down the road if
> > needed. ...
> >
> > Adam.
> >
> >
> > > -Original Message-
> > > From: Pete Freitag [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, December 10, 2002 3:21 PM
> > > To: CF-Talk
> > > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > >
> > >
> > > Adam, in ActivEdit 3.0 we added a bunch of regular
> > > expressions, and parsers
> > > to clean up Word content pasted into the control, it's not
> > > perfect but it
> > > does get rid of lots of extraneous markup when you paste from
> > > Word. Are you
> > > using Version 3?
> > >
> > > As for the HTML that ActivEdit generates (actually it's the
> > > ActiveX control
> > > that generates the HTML in most cases), it is valid HTML 3.2.
> > > Many people
> > > prefer XHTML output these days, and we do have a CFX tag that
> > > will convert
> > > HTML 3.2 or 4 into XHTML or vise versa, if your interested
> > > let me know. The
> > > next version of ActivEdit will address these issues further.
> > >
> > > You can also set a stylesheet for use within activedit via
> > > the stylesheet
> > > attribute.
> > >
> > > _
> > > Pete Freitag
> > > CTO, CFDEV.COM
> > > http://www.cfdev.com/
> > >
> > >
> > > -Original Message-
> > > From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, December 10, 2002 1:33 PM
> > > To: CF-Talk
> > > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > >
> > >
> > > I'd like to see an editor that only defines classes in a div
> > > or a span, and
> > > which provides a default style sheet. The extent of the html
> > > would be very
> > > simple , ,  and XHTML compliant. One problem I
> > > see with this
> > > is pulling in word documents, or old HTML with tables and
> > > invalid markup.
> > >
> > > We're currently using ActiveEdit, and even though it's
> > > working well, I have
> > > this really uneasy feeling about the HTML it's producing. It
> > > just completely
> > > goes against the concept of separating content from style,
> > > but I just can't
> > > think of a suitable alternative to doing it this way until we can:
> > > a. Go through all of our old content stripping out all of the
> > > markup, and
> > > then restylizing it using the new editor's classes.
> > > b. Make the decision to never paste word documents, or old
> > > html into the
> > > editor without first "cleansing" it in notepad, and then
> > > restylizing it
> > > within the editor.
> > >
> > > That would be a complete administrative nightmare.
> > >
> > > Is anyone else feeling the same concerns, and has anyone
> > > taken measures to
> > > address this? I'd be interested in hearing what you did.
> > >
> > > Adam.
> > >
> > >
> > >
> > >
> > >
> > > > -Original Message-
> > > > From: Joshua Miller
> > > [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday, December 10, 2002 10:00 AM
> > > > To: CF-Talk
> > > > Subject: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > > >
> > > >
> > > > I would think that given those abilities that 
> integrating it into an
> > > > intranet security context would provide functionality for
> > > permissions.
> > > > Personally, I'd rather have something that lets me 
> control file/edit
> > > > permissions and simply sticks to editing capabilities. I want a
> > > > super-form-control more than a content manager - I'll handle
> > > > the content
> > > > management as it applies to my specific application.
> > > >
> > > > Is there a version of the DRK2 Rich Text Editor online
> > > anywhere that I
> > > > could try before I buy? I'd like to be able to make an
> > > > informed decision
> > > > before jumping into something.
> > > >
> > > > Although from the looks of ActivEdit it's going to be 
> hard to beat.
> > > >
> > > > Joshua Miller
> > > > Head Programmer / IT Manager
> > > > Garrison Enterprises Inc.
> > > > www.garrisonenterprises.net
> > > > [EMAIL PROTECTED]
> > > > (704) 569-9044 ext. 254
> > > >
> > > > **
> > > > **
> > > > *
> > > > Any views expressed in this

RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Tony Weeg
yeah, I saw the jscript behind the scenes, and quickly realized
what I an idiot I was for my first email :)

20 hr day yesterday has me all effed up!!

later.

..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:40 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued


It's a static dhtml interface that adds/edits/updates/displays db data.
Each click of the button allows the interface to invoke a webservice and
performs one of the db functions outlined above.  In the MX world it is
similar to creating a flash interface and using flashRemoting to get
data
into/out of the interface.  If you look in the status area of the
browser
(bottom left corner) you'll see it interact with the web service as you
click the buttons ... seems like a great way to build interfaces for
applications w/o requiring flash.

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:32 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

what is so tricky about that webService?
is it a webService?

just wondering?



tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:25 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued


Makes sense ... I misunderstood the question.  As a side note, has
anyone
actually done anything like this with cf web services?
http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:18 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

I don't believe this is what he is talking about. Right now you can
'post' to a CFC using a form tag like so:



...

However, this posts to the generic Foo (not the best term I think) - I
believe it's simular to using a static method in Java. 

However, CF allows you to create instances of CFCs as well:



But you can't post directly to x.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Kola Oyedeji
Matt

I'd like to play around with using EJBs and CFM. So this set up would
seem to support that.

Thanks.



>> -Original Message-
>> From: Matt Liotta [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:30
>> To: CF-Talk
>> Subject: RE: BlueDragon J2EE on OSX - Working !!!
>> 
>> Two points. First, JBoss is available for many platforms including OS
X.
>> Second, BlueDragon doesn't require a full J2EE server; it can run
with
>> just a servlet engine.
>> 
>> Matt Liotta
>> President & CEO
>> Montara Software, Inc.
>> http://www.montarasoftware.com/
>> 888-408-0900 x901
>> 
>> > -Original Message-
>> > From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
>> > Sent: Wednesday, December 11, 2002 10:22 AM
>> > To: CF-Talk
>> > Subject: RE: BlueDragon J2EE on OSX - Working !!!
>> >
>> > I'm very interested...
>> >
>> >  are there any J2EE servers available for the MAC? If not why did
you
>> > choose the J2EE version?
>> >
>> > Thanks
>> >
>> > Kola
>> >
>> > >> -Original Message-
>> > >> From: Joshua Miller
>> [mailto:[EMAIL PROTECTED]]
>> > >> Sent: 11 December 2002 15:11
>> > >> To: CF-Talk
>> > >> Subject: BlueDragon J2EE on OSX - Working !!!
>> > >>
>> > >> I know this is probably nothing special, but getting an
>> > easy-to-install
>> > >> CFML engine on my Mac just made my day!
>> > >>
>> > >> If you're interested, just use the default Apache installation,
>> then
>> > >> download Tomcat from http://jakarta.apache.org, then download
>> > BlueDragon
>> > >> for J2EE from www.newatlanta.com and install them in order
(Apache,
>> > >> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>> > >>
>> > >> I know this isn't fully CFMX compatable, but I'm certainly happy
>> that
>> > it
>> > >> runs on the Mac. Wonder why it's not "officially" supported on
Mac?
>> > All
>> > >> of the UNIX files worked just fine without any trouble/tweaking.
>> > >>
>> > >> Anyway, just thought I'd post my success to the list in case
anyone
>> > else
>> > >> is interested.
>> > >>
>> > >> Joshua Miller
>> > >> Head Programmer / IT Manager
>> > >> Garrison Enterprises Inc.
>> > >> www.garrisonenterprises.net

>> > >> [EMAIL PROTECTED]
>> > >> (704) 569-9044 ext. 254
>> > >>
>> > >>
>> >
>>

>> > >> *
>> > >> Any views expressed in this message are those of the individual
>> > sender,
>> > >> except where the sender states them to be the views of
>> > >> Garrison Enterprises Inc.
>> > >>
>> > >> This e-mail is intended only for the individual or entity to
which
>> it
>> > is
>> > >> addressed and contains information that is private and
>> confidential.
>> > If
>> > >> you are not the intended recipient you are hereby notified that
any
>> > >> dissemination, distribution or copying is strictly prohibited.
If
>> you
>> > >> have received this e-mail in error please delete it immediately
and
>> > >> advise us by return e-mail to
>> > >> 
>> > >> [EMAIL PROTECTED]
>> > >>
>> >
>>

>> > >> *
>> > >>
>> > >>
>> > >>
>> >
>> >
>>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Samuel R. Neff
I saw two years ago at MS's DevCon.  It's extremely dependent on IE/Win/MS, 
so that's why you don't see it very much.

Another reason why you wouldn't see it here is because MM developers are 
smarter than that.  We use Flash front ends to access back end data without 
page loads--been doing that successfully for years with cross browser 
support, and with MX it's cake.

   :-)

At 10:31 AM 12/11/2002, you wrote:
>-Original Message-
>From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, December 11, 2002 10:25 AM
>To: CF-Talk
>Subject: RE: Component Conceptual Conundrum - Continued
>
>
>Makes sense ... I misunderstood the question.  As a side note, has
>anyone
>actually done anything like this with cf web services?
>http://www.infoscico.com/DbWebService/DbWebServiceClient.htm

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Determining if cf is alive and communicative

2002-12-11 Thread Kevin Bridges
We need to write an agent in the *nix world to "ping" the cfmx services and
determine not only if they are running but that they are able to communicate
with an Oracle backend.  Does anyone have suggestions on how to approach
this problem?

Thanks,

Kevin Bridges  
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Samuel R. Neff
At 08:39 AM 12/11/2002, you wrote:
>(snip) click the buttons ... seems like a great way to build interfaces for
>applications w/o requiring flash.

Great, they don't need Flash but they need IE on Windows platform.  Advantage?


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Multiple Collections In One Verity Search

2002-12-11 Thread Ryan Farrell
You could use the custom1 or custom2 field to uniquely identify each
collection when you index it.  Then you can tell which collection the
current row is from when outputting your search results.

< cfindex action="refresh" collection="scholarships" query="getinfo"
title="text" body="text" key="id" custom1="scholarships">

Then, in your cfsearch output:

< cfif custom1 eq 'scholarships'>
do this
< cfelse>
do that
< /cfif>

Ryan

-Original Message-
From: Girardeau, Anne [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 9:54 AM
To: CF-Talk
Subject: Multiple Collections In One Verity Search


Hello everyone,
I have put together a search interface that searches through multiple
collections and it does all of this with absolutely no problem. However, I
am trying to figure out how to stipulate criteria for results pulled from
specific collections. Is it possible to isolate results from one collection
after a search has been performed? 

I have included a code illustration of what I would expect would do the
trick assuming I knew the correct syntax.

Any help with this would be greatly appreciated.

Thanks,

--Anne





Do this



Do something else

 

Anne D. Girardeau
Webmaster
John Tyler Community College
13101 Jefferson Davis Hwy.
Chester, VA 23831-5316
Telephone: (804) 706-5251
Fax: (804) 706-5249
Website: www.jtcc.edu
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Good book for CFMX beginner?

2002-12-11 Thread Kola Oyedeji
Umm...

Jeffry 

Does that mean it doesn't cover CFCs? I saw it in the shops and it
looked quite good but seemed like it has a lot of beginner material so
it should be good for the original poster of this thread. I'm looking
for something which concentrates more on the new features of CFMX.

Kola

>> -Original Message-
>> From: Jeffry Houser [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:49
>> To: CF-Talk
>> Subject: Re: Good book for CFMX beginner?
>> 
>>   At the risk of a little self-promotion.  I think my Beginner's book
is
>> the best Beginner's book out there:
>> 
>> 
>>   It goes out of its way to clearly explain programming concepts,
using
>> ColdFusion as the language of choice.
>>   I will also add that everything in the book applies to CFMX.  ( If
it
>> were to be updated, I would include information on CFCs, and a bit
about
>> setting up a development server, but don't think I would change
anything
>> else ).
>> 
>>   If anyone here read it and wants to see it updated, try to contact
>> Osborne and ask about it.
>> 
>> At 07:25 AM 12/11/2002 -0800, you wrote:
>> >What do people recommend, nowadays, as a book for someone to learn
>> >CFML/CFMX -- say someone with HTML experience, but little or no
>> >exposure to web application programming or languages?
>> >
>> >TIA
>> >
>> >Dick
>> >
>> >
>>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Raymond Camden
Isn't that IE only? (Not that it's a big deal - but just checking.)

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, December 11, 2002 9:40 AM
> To: CF-Talk
> Subject: RE: Component Conceptual Conundrum - Continued
> 
> 
> It is possible to use DHTML to hit any SOAP-based web service 
> including a CF one. I believe the function is named 
> XMLHTTPRequest(), which allows you to make raw XML posts to a 
> web service.
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Joshua Miller
Tomcat is a J2EE server (not certified I don't think) - I did it this
way just because it was all free and easy to download and install. I'm
sure if someone makes a J2EE server for Mac that you could use something
other than Tomcat. Since NONE of the Macromedia products work on Mac
without a major workaround this seemed the simplest option.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:22 AM
To: CF-Talk
Subject: RE: BlueDragon J2EE on OSX - Working !!!


I'm very interested...

 are there any J2EE servers available for the MAC? If not why did you
choose the J2EE version?

Thanks

Kola

>> -Original Message-
>> From: Joshua Miller [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:11
>> To: CF-Talk
>> Subject: BlueDragon J2EE on OSX - Working !!!
>> 
>> I know this is probably nothing special, but getting an
easy-to-install
>> CFML engine on my Mac just made my day!
>> 
>> If you're interested, just use the default Apache installation, then 
>> download Tomcat from http://jakarta.apache.org, then download
BlueDragon
>> for J2EE from www.newatlanta.com and install them in order (Apache, 
>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>> 
>> I know this isn't fully CFMX compatable, but I'm certainly happy that
it
>> runs on the Mac. Wonder why it's not "officially" supported on Mac?
All
>> of the UNIX files worked just fine without any trouble/tweaking.
>> 
>> Anyway, just thought I'd post my success to the list in case anyone
else
>> is interested.
>> 
>> Joshua Miller
>> Head Programmer / IT Manager
>> Garrison Enterprises Inc.
>> www.garrisonenterprises.net 
>> [EMAIL PROTECTED]
>> (704) 569-9044 ext. 254
>> 
>>

>> *
>> Any views expressed in this message are those of the individual
sender,
>> except where the sender states them to be the views of Garrison 
>> Enterprises Inc.
>> 
>> This e-mail is intended only for the individual or entity to which it
is
>> addressed and contains information that is private and confidential.
If
>> you are not the intended recipient you are hereby notified that any 
>> dissemination, distribution or copying is strictly prohibited. If you

>> have received this e-mail in error please delete it immediately and 
>> advise us by return e-mail to 
>> 
>> [EMAIL PROTECTED]
>>

>> *
>> 
>> 
>>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Determining if cf is alive and communicative

2002-12-11 Thread Timothy Heald
We had something running like this at my old job.  Basically we wrote a cfm page that 
did a query then output just the word ok.

Big IP would look for ok, if it wasn't there then it would fail over that server.

Tim

-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 10:58 AM
To: CF-Talk
Subject: Determining if cf is alive and communicative


We need to write an agent in the *nix world to "ping" the cfmx services and
determine not only if they are running but that they are able to communicate
with an Oracle backend.  Does anyone have suggestions on how to approach
this problem?

Thanks,

Kevin Bridges  

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Determining if cf is alive and communicative

2002-12-11 Thread Dan Phillips
If you prefer to get something pre-made check out
http://www.deepmetrix.com/ipmonitor/

We use this to monitor basic things like ping, and if service are running. I
know you can have it monitor an Oracle ODBC connection as well.

Thank you,

Dan Phillips
Express Technologies, Inc.
dba HalfPriceHosting, CFXHosting and Invotion.
www.HalfPriceHosting.com
www.CFXHosting.com
www.Invotion.com


-Original Message-
From: Kevin Bridges [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 10:58 AM
To: CF-Talk
Subject: Determining if cf is alive and communicative


We need to write an agent in the *nix world to "ping" the cfmx services and
determine not only if they are running but that they are able to communicate
with an Oracle backend.  Does anyone have suggestions on how to approach
this problem?

Thanks,

Kevin Bridges

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Good book for CFMX beginner?

2002-12-11 Thread John Paul Ashenfelter
Dick,

I'm pretty happy with how the new ColdFusion MX for Dummies worked out.
*Much* better than the original one (ColdFusion 4) since my coauthor this
time actually was a rocket scientist :) It's 100% new text with coverage of
the basics of CF and new CFMX features like Flash, Java, CFCs, and XML. Not
the definitive reference, but a good, bite-sized intro for folks who aren't
real techie.

Regards,

John Paul Ashenfelter
CTO/TransitionPoint


- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, December 11, 2002 10:25 AM
Subject: Good book for CFMX beginner?


> What do people recommend, nowadays, as a book for someone to learn
> CFML/CFMX -- say someone with HTML experience, but little or no
> exposure to web application programming or languages?
>
> TIA
>
> Dick
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute

2002-12-11 Thread Kevin Graeme
Yep, that's the rub. We're looking at big content repositories as well and
it does seem like the longer we continue to make stuff in other formats, the
bigger the job will be to convert it to something like XML.

-Kevin

> -Original Message-
> From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 9:50 AM
> To: CF-Talk
> Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
>
>
> Problem is pulling in either word or other text documents or older html
> documents from the database. There's no way a text-editor would
> know how to
> properly transform that format into our own custom XML. I'm
> afraid that will
> still have to be a manual process.
>
> XHTML seems like a better step, as from what I believe it's just an 'XML
> standard that happens to have the syntax of html'.
>
> Adam.
>
>
> > -Original Message-
> > From: Kevin Graeme [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, December 11, 2002 7:56 AM
> > To: CF-Talk
> > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> >
> >
> > Wouldn't that be XML?
> >
> > -Kevin
> >
> > ..
> > > So thanks for improving the product, we did choose yours
> > for a reason. I'd
> > > just like to see a solid format for storing content
> > long-term and still
> > > being able to change its presentation 10 years down the road if
> > > needed. ...
> > >
> > > Adam.
> > >
> > >
> > > > -Original Message-
> > > > From: Pete Freitag [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday, December 10, 2002 3:21 PM
> > > > To: CF-Talk
> > > > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > > >
> > > >
> > > > Adam, in ActivEdit 3.0 we added a bunch of regular
> > > > expressions, and parsers
> > > > to clean up Word content pasted into the control, it's not
> > > > perfect but it
> > > > does get rid of lots of extraneous markup when you paste from
> > > > Word. Are you
> > > > using Version 3?
> > > >
> > > > As for the HTML that ActivEdit generates (actually it's the
> > > > ActiveX control
> > > > that generates the HTML in most cases), it is valid HTML 3.2.
> > > > Many people
> > > > prefer XHTML output these days, and we do have a CFX tag that
> > > > will convert
> > > > HTML 3.2 or 4 into XHTML or vise versa, if your interested
> > > > let me know. The
> > > > next version of ActivEdit will address these issues further.
> > > >
> > > > You can also set a stylesheet for use within activedit via
> > > > the stylesheet
> > > > attribute.
> > > >
> > > > _
> > > > Pete Freitag
> > > > CTO, CFDEV.COM
> > > > http://www.cfdev.com/
> > > >
> > > >
> > > > -Original Message-
> > > > From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday, December 10, 2002 1:33 PM
> > > > To: CF-Talk
> > > > Subject: RE: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > > >
> > > >
> > > > I'd like to see an editor that only defines classes in a div
> > > > or a span, and
> > > > which provides a default style sheet. The extent of the html
> > > > would be very
> > > > simple , ,  and XHTML compliant. One problem I
> > > > see with this
> > > > is pulling in word documents, or old HTML with tables and
> > > > invalid markup.
> > > >
> > > > We're currently using ActiveEdit, and even though it's
> > > > working well, I have
> > > > this really uneasy feeling about the HTML it's producing. It
> > > > just completely
> > > > goes against the concept of separating content from style,
> > > > but I just can't
> > > > think of a suitable alternative to doing it this way until we can:
> > > > a. Go through all of our old content stripping out all of the
> > > > markup, and
> > > > then restylizing it using the new editor's classes.
> > > > b. Make the decision to never paste word documents, or old
> > > > html into the
> > > > editor without first "cleansing" it in notepad, and then
> > > > restylizing it
> > > > within the editor.
> > > >
> > > > That would be a complete administrative nightmare.
> > > >
> > > > Is anyone else feeling the same concerns, and has anyone
> > > > taken measures to
> > > > address this? I'd be interested in hearing what you did.
> > > >
> > > > Adam.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > > -Original Message-
> > > > > From: Joshua Miller
> > > > [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Tuesday, December 10, 2002 10:00 AM
> > > > > To: CF-Talk
> > > > > Subject: MM Rich Text Editor - WAS: RE: Macromedia Contribute
> > > > >
> > > > >
> > > > > I would think that given those abilities that
> > integrating it into an
> > > > > intranet security context would provide functionality for
> > > > permissions.
> > > > > Personally, I'd rather have something that lets me
> > control file/edit
> > > > > permissions and simply sticks to editing capabilities. I want a
> > > > > super-form-control more than a content manager - I'll handle
> > > > > the content
> > > > > management as it applies to 

Re: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Dick Applebaum
Where can you get some EJB's to play with/

TIA

Dick

On Wednesday, December 11, 2002, at 07:52 AM, Kola Oyedeji wrote:

> Matt
>
> I'd like to play around with using EJBs and CFM. So this set up would
> seem to support that.
>
> Thanks.
>
>
>
>>> -Original Message-
>>> From: Matt Liotta [mailto:[EMAIL PROTECTED]]
>>> Sent: 11 December 2002 15:30
>>> To: CF-Talk
>>> Subject: RE: BlueDragon J2EE on OSX - Working !!!
>>>
>>> Two points. First, JBoss is available for many platforms including OS
> X.
>>> Second, BlueDragon doesn't require a full J2EE server; it can run
> with
>>> just a servlet engine.
>>>
>>> Matt Liotta
>>> President & CEO
>>> Montara Software, Inc.
>>> http://www.montarasoftware.com/
>>> 888-408-0900 x901
>>>
 -Original Message-
 From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 11, 2002 10:22 AM
 To: CF-Talk
 Subject: RE: BlueDragon J2EE on OSX - Working !!!

 I'm very interested...

  are there any J2EE servers available for the MAC? If not why did
> you
 choose the J2EE version?

 Thanks

 Kola

>> -Original Message-
>> From: Joshua Miller
>>> [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:11
>> To: CF-Talk
>> Subject: BlueDragon J2EE on OSX - Working !!!
>>
>> I know this is probably nothing special, but getting an
 easy-to-install
>> CFML engine on my Mac just made my day!
>>
>> If you're interested, just use the default Apache installation,
>>> then
>> download Tomcat from http://jakarta.apache.org, then download
 BlueDragon
>> for J2EE from www.newatlanta.com and install them in order
> (Apache,
>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>>
>> I know this isn't fully CFMX compatable, but I'm certainly happy
>>> that
 it
>> runs on the Mac. Wonder why it's not "officially" supported on
> Mac?
 All
>> of the UNIX files worked just fine without any trouble/tweaking.
>>
>> Anyway, just thought I'd post my success to the list in case
> anyone
 else
>> is interested.
>>
>> Joshua Miller
>> Head Programmer / IT Manager
>> Garrison Enterprises Inc.
>> www.garrisonenterprises.net
> 
>> [EMAIL PROTECTED]
>> (704) 569-9044 ext. 254
>>
>>

>>>
> *** 
> *
>> *
>> Any views expressed in this message are those of the individual
 sender,
>> except where the sender states them to be the views of
>> Garrison Enterprises Inc.
>>
>> This e-mail is intended only for the individual or entity to
> which
>>> it
 is
>> addressed and contains information that is private and
>>> confidential.
 If
>> you are not the intended recipient you are hereby notified that
> any
>> dissemination, distribution or copying is strictly prohibited.
> If
>>> you
>> have received this e-mail in error please delete it immediately
> and
>> advise us by return e-mail to
>> 
>> [EMAIL PROTECTED]
>>

>>>
> *** 
> *
>> *
>>
>>
>>


>>>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Another Newbie Problem

2002-12-11 Thread Dina Hess
Well, Jochem, has already given you some valuable information but since
Month() and Year() are standard SQL functions, this should work, too:

where month(datefield) = #form.month#
and year(datefield) = #form.year#

~Dina
  - Original Message - 
  From: Jochem van Dieten 
  To: CF-Talk 
  Sent: Wednesday, December 11, 2002 9:44 AM
  Subject: RE: Another Newbie Problem


  Quoting [EMAIL PROTECTED]:
  > 
  > We have several thousand records in a db with a standard odbc
  > datetime stamp column.  We want to be able to filter out end of month
  > statistics (all trouble calls in November, 2002, for instance) by
  > using a set of drop down menus (month, year, type of call).   

  There are 2 generic ways to do this:
  - create a startdate and an enddate and do a BETWEEN search
  - use SQL date functions to extract year and month from the field and do
  an exact search on that

  Code example of the latter (the former has been posted already):
  SELECT   *
  FROM table
  WHEREEXTRACT(YEAR FROM datefield) = #year#
  AND  EXTRACT(MONTH FROM datefield) = #month#
  (If your database hasn't implemented SQL date functions the exact syntax
  might be different and you should naturally use cfqueryparam.)

  The question which approach is most efficient is highly dependent on the
  database you are using, and especially the index functionality. I would
  probably create some indexes and do timings on them. Specifically:
  CREATE INDEX test1_idx ON table (datefield);
  CREATE INDEX test2_idx ON table (EXTRACT(YEAR FROM datefield),
  EXTRACT(MONTH FROM datefield), calltype);
  If your database supports it, play around with index types (try an RTREE
  for test1_idx). But unless you have millions of records, speed
  difference is probably neglegible, and you should go for the strategy
  that uses the smallest index.

  Jochem
  
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Another Newbie Problem

2002-12-11 Thread Luce, Greg
If you have a search form with a month select and a year selectbox. And
you're searching for records with call_date newer than the selected values.



SELECT *
FROM tblTable
WHERE call_date > '#compare_date#'



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 8:57 AM
To: CF-Talk
Subject: RE: Another Newbie Problem


Rick,
Can you explain your situation a little more in depth? There are
datepart() functions that allow us to compare parts of dates.

Greg


Sure, thanks for the interest. 

We have several thousand records in a db with a standard odbc datetime stamp
column.  We want to be able to filter out end of month statistics (all
trouble calls in November, 2002, for instance) by using a set of drop down
menus (month, year, type of call).   

This is the kind of product one sees everywhere on the internet, but I just
can't find a reference piece to get my head in the right place about how to
go about it.  Plus, as I've learned, there are always several approaches to
the same problem.  

Any ideas are appreciated.  

Rick 
***Sterling Financial Investment Group, Inc. (SFIG) is a member of
NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
accept orders to buy or sell via email.  Please visit www.mysterling.com for
more information.***
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Joshua Miller
It was a matter of using what I know. I've used Apache/Tomcat before, so
it was simple for me to setup. If you know Jboss or some other J2EE
server then use that - I just don't have the time or need for anything
more than that. 

For now it's going to be used as a development environment on my
notebook, if it works well and performs well it may warrant purchasing
an Xserve for our intranet applications. Most of our company uses Mac
hardware and it would be nice for us to keep a consistant platform for
all of our internal applications. The only reason we haven't bought an
Xserve to date is because our intranet required something besides Mac -
now that may change.

Although this is my first step with BlueDragon and I'm not 100%
comfortable with a technology that will always be one step behind the
current implementation of CFML, but since Macromedia has no foreseeable
plans to port to Mac this may be the best we can expect. Not to put down
BlueDragon that is - it may hold more potential than CFMX - I don't want
to pass judgment until I've used it some.

One thing I will say is don't expect to copy your application over and
have it work straight-away. I have yet to find where you can map include
directories and a lot of my apps depend on a global include directory
where I store UDFs, JavaScripts, etc.

Joshua Miller
Head Programmer / IT Manager
Garrison Enterprises Inc.
www.garrisonenterprises.net
[EMAIL PROTECTED]
(704) 569-9044 ext. 254
 

*
Any views expressed in this message are those of the individual sender,
except where the sender states them to be the views of 
Garrison Enterprises Inc.
 
This e-mail is intended only for the individual or entity to which it is
addressed and contains information that is private and confidential. If
you are not the intended recipient you are hereby notified that any
dissemination, distribution or copying is strictly prohibited. If you 
have received this e-mail in error please delete it immediately and
advise us by return e-mail to [EMAIL PROTECTED]

*


-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 10:49 AM
To: CF-Talk
Subject: Re: BlueDragon J2EE on OSX - Working !!!


JBoss is written in Java, it should run on the Mac... Why not choose the
J2EE version if he is running Tomcat?

-- 
jon
mailto:[EMAIL PROTECTED]

Wednesday, December 11, 2002, 10:22:13 AM, you wrote:

KO> I'm very interested...

KO>  are there any J2EE servers available for the MAC? If not why did 
KO> you choose the J2EE version?

KO> Thanks

KO> Kola

>>> -Original Message-
>>> From: Joshua Miller 
>>> [mailto:[EMAIL PROTECTED]]
>>> Sent: 11 December 2002 15:11
>>> To: CF-Talk
>>> Subject: BlueDragon J2EE on OSX - Working !!!
>>> 
>>> I know this is probably nothing special, but getting an
KO> easy-to-install
>>> CFML engine on my Mac just made my day!
>>> 
>>> If you're interested, just use the default Apache installation, then

>>> download Tomcat from http://jakarta.apache.org, then download
KO> BlueDragon
>>> for J2EE from www.newatlanta.com and install them in order (Apache, 
>>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>>> 
>>> I know this isn't fully CFMX compatable, but I'm certainly happy 
>>> that
KO> it
>>> runs on the Mac. Wonder why it's not "officially" supported on Mac?
KO> All
>>> of the UNIX files worked just fine without any trouble/tweaking.
>>> 
>>> Anyway, just thought I'd post my success to the list in case anyone
KO> else
>>> is interested.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Multiple Collections In One Verity Search

2002-12-11 Thread Girardeau, Anne
Thanks so much Ryan, it worked like a charm. : )

--Anne

-Original Message-
From: Ryan Farrell [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 10:52 AM
To: CF-Talk
Subject: RE: Multiple Collections In One Verity Search


You could use the custom1 or custom2 field to uniquely identify each
collection when you index it.  Then you can tell which collection the
current row is from when outputting your search results.

< cfindex action="refresh" collection="scholarships" query="getinfo"
title="text" body="text" key="id" custom1="scholarships">

Then, in your cfsearch output:

< cfif custom1 eq 'scholarships'>
do this
< cfelse>
do that
< /cfif>

Ryan

-Original Message-
From: Girardeau, Anne [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 9:54 AM
To: CF-Talk
Subject: Multiple Collections In One Verity Search


Hello everyone,
I have put together a search interface that searches through multiple
collections and it does all of this with absolutely no problem. However, I
am trying to figure out how to stipulate criteria for results pulled from
specific collections. Is it possible to isolate results from one collection
after a search has been performed? 

I have included a code illustration of what I would expect would do the
trick assuming I knew the correct syntax.

Any help with this would be greatly appreciated.

Thanks,

--Anne





Do this



Do something else

 

Anne D. Girardeau
Webmaster
John Tyler Community College
13101 Jefferson Davis Hwy.
Chester, VA 23831-5316
Telephone: (804) 706-5251
Fax: (804) 706-5249
Website: www.jtcc.edu

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Kevin Bridges
H ... considering I do strict _application_ development targeted
specifically for IE in a secured environment where people are not allowed to
update anything on their machines, much less see the internet, it is a great
solution.  The end users are on low end machines and the file MM let's you
download to distribute flash through intranets did not work properly behind
our firewalls (aka no updating of flash to MX) ... net result was a bunch of
blank screens yet again for relying on early generation MM technology, and
yet again we had to backpeddle to rewrite the MX solution we were so
thrilled with.  I have been burned badly by using MX and am looking for
non-MM related solutions that apply specifically to IE.  All of which is
irrelevant to the question which was simply if anyone had ever done it in an
application utilizing CF.  If I can reduce the traffic on our farm by
providing static interfaces that invoke/consume services vs complete page
requests I think it becomes an ideal solution for me that has no bearing
whatsoever on anyone's intelligence as a developer.

But hey, that's just the where I'm coming from and why I asked the question
.. thanks for the input.

-Original Message-
From: Samuel R. Neff [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 8:59 AM
To: CF-Talk
Subject: RE: Component Conceptual Conundrum - Continued

At 08:39 AM 12/11/2002, you wrote:
>(snip) click the buttons ... seems like a great way to build interfaces for
>applications w/o requiring flash.

Great, they don't need Flash but they need IE on Windows platform.
Advantage?



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Good book for CFMX beginner?

2002-12-11 Thread Jeffry Houser
Correct, my beginner's book does not cover CFCs.

  If you want something which concentrates on new features of CFMX, go with 
ColdFusion: The Complete Reference 
 .  It 
was built from the ground up for CFMX.

  I don't know if I would recommend it for anyone who has no programming 
experience, because it only glazes over programming topics to move onto 
more interesting stuff.  ( including CFCs, Web Services, and XML )


At 04:01 PM 12/11/2002 +, you wrote:
>Umm...
>
>Jeffry
>
>Does that mean it doesn't cover CFCs? I saw it in the shops and it
>looked quite good but seemed like it has a lot of beginner material so
>it should be good for the original poster of this thread. I'm looking
>for something which concentrates more on the new features of CFMX.
>
>Kola



--
Jeffry Houser | mailto:[EMAIL PROTECTED]
DotComIt, Putting you on the web
AIM: Reboog711  | Phone: 1-203-379-0773
--
My CFMX Book: 

My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Another Newbie Problem

2002-12-11 Thread Kennerly, Rick H CIV
Brillant! That did it.  Thanks to all who assisted, particular Al.  

Rick

-Original Message-
From: Everett, Al [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 11 December, 2002 09:40
To: CF-Talk
Subject: RE: Another Newbie Problem


Here's how I would do it:

Given two form variables, Form.dataMonth and Form.dataYear I would create
the start and end dates and use those:





SELECT
COLUMN1, COLUMN2, COLUMN3
FROM
TABLENAME
WHERE
DATECOLUMN >= #CreateODBCDate(startDate)#
AND
DATECOLUMN <= #CreateODBCDate(endDate)#


Depending on how your database stores dates you may be better off
incrementing the endDate by one day and using less than instead of less than
or equal to. This is because the endDate is midnight of that date. Anything
where the timestamp is after midnight the same day (e.g., 11/30/2002
09:00:00) won't be found. If you're only looking for months, you could do
something like this:



Then your WHERE clause would look like this:

DATECOLUMN >= #CreateODBCDate(startDate)#
AND
DATECOLUMN < #CreateODBCDate(endDate)#


If you don't want to be locked in to just looking at a month:






> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 11, 2002 6:31 AM
> To: CF-Talk
> Subject: Another Newbie Problem
> 
> 
> In all my cfm references I cannot find a single example of a 
> common task, although you see this kind of thing being used 
> everywhere.
> 
> What I want to do is select from a pair of drop down lists 
> (like Month and Year) and then display only the records from 
> November 2002, for instance.  
> 
> How do you pass just those two variables to a query and draw 
> just the date and month from a standard db date/time string.  
> Is it a datepart function?  
> 
> I just don't get it.  Any insight or pointing toward a 
> tutorial would be appreciated.  
> 
> humbled by cfm yet again
> 
> Rick
> 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: CF 5 & PDF - FDF files

2002-12-11 Thread Dimo Michailov
Hi David:

We were doing FDF form completion before we purchased ActivePDF few 
months ago. I can help you set-up any of these two solutions.

1. FDF + PDF forms

This solution will require that you edit the printable form that you 
have and create the form fields that you wish populated (you will need 
the full version of Adobe Acrobat). After you create the form fields, 
you export the form fields to an FDF file.

The next step is to use ColdFusion to manipulate the FDF file and insert 
the appropriate values into the fields.

Next, you merge the FDF with the original PDF by calling the FDF file 
(which merges its data with the original PDF).


2. ActivePDF - we have the ToolKit

This solution would require you to purchase the product - few hundred 
$$, if my memory serves me well (check at http://www.activepdf.com), 
install on your server as COM object and then use CFOBJECT to call it 
and do manipulations with the PDF. You will still need Adobe Acrobat to 
create form fields into the original PDF.

You will then use the COM object commands to set the PDF fields to 
whatever you need and then save the PDF before you deliver it to the end 
user (either as file on server, email as an attachment, or as a link on 
the website).


I hope this provides some general idea about these two options. Let me 
know if you need more help in setting any of these up.

Dimo


David Green wrote:
> Hello List Thanks for all the help
> 
> I am not a full time CF person,   I play with it for a few projects I have.   I'm 
>involved in a soccer league (Non Profit) and I want to set up online registrations.   
>Part of this process I have to fill out a predesigned PDF form that is created by the 
>governing soccer association.   I have been poking around the web and am now confused 
>on what products I need.   My take on how to do this is
> 
> 1.  Fill out HTLM/CF form on site
> 2.  Do all database work and Data verification and Money stuff on the CF server 
> 3.  Export all the data base values that I saved and need on PDF form and import 
>them to a PDF file via attributes.
> 
> Number 3 is where am kind of lost.   I have PDF I down loaded from governing 
>association web site.It's not a form with fields.   It is just for printing.
> From what I read I need to edit or recreate this document to a PDF template with 
>fields.  
> 
> Is this correct?   
> What software do I get to do this?
> Where do FDF files come in to play.
> What are FDF files to PDF files?
> 
> From reading it looks like once I have a PDF template I can update the field values 
>using  and some product like activePDF tool kit.
> I have downloaded their demo seems to work but I get errors about half the time 
>running their demo.   Is this a product I should use for this.   Is there anything 
>cheaper that will do this process?   
> 
> Is there a better way of doing this process.
> 
> Thanks
> David Green
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



loop query check??how to do this

2002-12-11 Thread Janine Jakim
I have a table- that users can add to their classlist.  
When adding they can choose multiple students.
I can easily do that loop.
My prob. 
Each student will have only one MainTeacher and many peripheral teachers

So before a student is added to a classlist it would need to be checked if
there's any conflict- that 2 teachers are claiming to be the MainTeacher.
So what should happen if
1. one of the 10 students I chose and checked as MainTeacher is already in
the db as having a different MainTeacher?
How does that fit into the loop??
Thanks



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: CFMX Enterprise vs. CFMX for J2EE

2002-12-11 Thread webguy
repost :-) 


 
 > From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
 > JRun provides clustering and multiple application instances, session
 > replication etc. A lot depends on what you're trying to provide with
 > your CF installation.
 
 Just to clarify this point, if I have a cluster of MX on J2EE,
 if I set  on a box. that 
 session.whatever will
 be available across my cluster? Is this true for cached queries 
 etc? Is this
 only true for JRun , or is the same for Web Sphere etc..
 
 
 One more question. Will CFMX ever be available for JBoss? Am I  right in
 saying, it won't as long as jBoss doesn't have  "get the J2EE 
 compatibility mark" ...even though it has compliance..
  
 Thanks
 WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: FedEx Shipping tag - willing to purchase

2002-12-11 Thread Shawn Kernes
Dennis,
   We have written such a tag (actualy set of tags) unfortuantly the fedex api 
agreement prohibits us from giving/selling them to anyone... Also, to test and develop 
the tags you are going to need to go through the Fedex certification process Which 
involves downloading and installing there application, building and having your 
implementation verified, applying for a sandbox account, running a series of tests and 
Fedex'ing them the results
 
   Good luck
 
-Shawn

-Original Message- 
From: UXBinfo [mailto:[EMAIL PROTECTED]] 
Sent: Wed 12/11/2002 6:29 AM 
To: CF-Talk 
Cc: 
Subject: FedEx Shipping tag - willing to purchase



Hi there,

Has anyone written or knows of a CF tag for acquiring shipping costs from
the FEDEX on-line system?   I have found several UPS tags and a Fedex tag
with local price schedule but our customer wants to get real time costs. I
would rather not invest the time writing one from FedEx's information and am
willing to purchase a working tag.  We are using CF4.X and CF5.

Thank you in advance.


Best regards,

Dennis Powers
UXB Internet - A Web Design and Hosting Company
tel: (203)879-2844  fax: (203)879-6254
http://www.uxbinternet.com/
http://dennis.uxb.net/



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Component Conceptual Conundrum - Continued

2002-12-11 Thread Samuel R. Neff
Thanks for your detailed response to my overly simplistic 
question--obviously this is very good for your case.

I can provide a little bit of additional info in that I have worked, or 
more correctly tried to work with, CFC web services from VB using the same 
SOAP objects that you'll use in VBScript.  You will want to make sure that 
all users have the latest MS SOAP Toolkit 3.0 as it provides better 
compatibility, but even then there are still problems consuming CFMX web 
services from VB due to bugs in CFMX and Axis--using the wrong prefixes and 
such.  Many of these hopefully will be fixed with CFMX updater release 2.

FYI, in our case, we dropped CFMX web services and rolled our own SOAP 
based services using XML and XSLT (actually, we created XSLT templates to 
transform SOAP into WDDX, which worked really well).

Good luck!

Sam

At 09:34 AM 12/11/2002, you wrote:
>H ... considering I do strict _application_ development targeted
>specifically for IE in a secured environment where people are not allowed to
>update anything on their machines, much less see the internet, it is a great
>solution.  The end users are on low end machines and the file MM let's you
>download to distribute flash through intranets did not work properly behind
>our firewalls (aka no updating of flash to MX) ... net result was a bunch of
>blank screens yet again for relying on early generation MM technology, and
>yet again we had to backpeddle to rewrite the MX solution we were so
>thrilled with.  I have been burned badly by using MX and am looking for
>non-MM related solutions that apply specifically to IE.  All of which is
>irrelevant to the question which was simply if anyone had ever done it in an
>application utilizing CF.  If I can reduce the traffic on our farm by
>providing static interfaces that invoke/consume services vs complete page
>requests I think it becomes an ideal solution for me that has no bearing
>whatsoever on anyone's intelligence as a developer.
>
>But hey, that's just the where I'm coming from and why I asked the question
>.. thanks for the input.
>
>-Original Message-
>From: Samuel R. Neff [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, December 11, 2002 8:59 AM
>To: CF-Talk
>Subject: RE: Component Conceptual Conundrum - Continued
>
>At 08:39 AM 12/11/2002, you wrote:
> >(snip) click the buttons ... seems like a great way to build interfaces for
> >applications w/o requiring flash.
>
>Great, they don't need Flash but they need IE on Windows platform.
>Advantage?

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Loosing form variables

2002-12-11 Thread Peter Mayer
Hello!

I have some entries in my application.log file that form variables are 
missing ... (f.e. .Error resolving parameter 
FORM.TESTFIELDThe specified form field cannot be found. This 

problem is very likely due to the fact that you have misspelled the form 
field name.).

Of course this error happens only on development servers because on 
production servers the code always has some cfparams in it.

But now my questions? Who is to blame that form variables are not 
transmitted properly? The display page with the FORM tag contains this 
field for sure ... that means it exists on the display page (ordenary text 

input element) but cannot be accessed on the action page (see error 
above).

The error seems to happen randomely and only the IE seems to be affected.

Software: Apache 2 & CF 5

Has anyone seen such a thing or - better - found a solution?

Best regards,

Peter 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX Enterprise vs. CFMX for J2EE

2002-12-11 Thread Samuel R. Neff
There is supposed to be a generic version of CFMX for J2EE which will run 
on anything J2EE compliant--it was mentioned in one of the DevCon sessions 
so can't be too far off.

At 04:45 PM 12/11/2002, you wrote:
>  One more question. Will CFMX ever be available for JBoss? Am I  right in
>  saying, it won't as long as jBoss doesn't have  "get the J2EE
>  compatibility mark" ...even though it has compliance..
>
>  Thanks
>  WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



dateFormat

2002-12-11 Thread Tony Weeg
hi there.

if I have this on a page..

#DateFormat(Now(),'mm/dd/')#

this is cool for all my users on the east coasthowever, this would
not work for my users west of the east coast.  what do you all do
when you have to correct for this?  what kinda detection is there,
available
so that I can auto-adjust based on the location of the user hitting
the site?

I know all about UTC functions, and adding/subtracting hours from time
changes, but dynamically, I would like to make this kinda stuff happen,
so
that if a user logged into our site from california, they would see a
time/date
that was 4 hours earliermake sense?

thanks

..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Another Newbie Problem

2002-12-11 Thread Jochem van Dieten
Dina Hess wrote:
> Well, Jochem, has already given you some valuable information but since
> Month() and Year() are standard SQL functions

Maybe they work in some non-standard implementation, but that does not 
make them standard functions. There is no reference to a Month() or a 
Year() function in SQL:1999.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Component Conceptual Conundrum - Continued

2002-12-11 Thread Jochem van Dieten
Raymond Camden wrote:
> Isn't that IE only? (Not that it's a big deal - but just checking.)

No, Mozilla has it as well: http://www.mozilla.org/xmlextras/

Mozilla is even going one step further and is including native database 
capabilities: http://bugzilla.mozilla.org/show_bug.cgi?id=81653

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX and IIS setting (Jrun.dll)

2002-12-11 Thread Dave Watts
> Does anybody have a clue where jrun.dll is located in CFMX?
> IIS automaticly sets the follwing location to run .cfm files 
> C:\CFusionMX\runtime\lib\wsconfig\1\jrun.dll which actually 
> doesn't exist.

You need to run the JRun connector (\CFusionMX\runtime\bin\wsconfig.exe).
This will extract the DLL from the file wsconfig.jar, and configure the IIS
metabase to use the file.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Adrian Lynch
Toys 'R' Us :O)

-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: 11 December 2002 16:17
To: CF-Talk
Subject: Re: BlueDragon J2EE on OSX - Working !!!


Where can you get some EJB's to play with/

TIA

Dick

On Wednesday, December 11, 2002, at 07:52 AM, Kola Oyedeji wrote:

> Matt
>
> I'd like to play around with using EJBs and CFM. So this set up would
> seem to support that.
>
> Thanks.
>
>
>
>>> -Original Message-
>>> From: Matt Liotta [mailto:[EMAIL PROTECTED]]
>>> Sent: 11 December 2002 15:30
>>> To: CF-Talk
>>> Subject: RE: BlueDragon J2EE on OSX - Working !!!
>>>
>>> Two points. First, JBoss is available for many platforms including OS
> X.
>>> Second, BlueDragon doesn't require a full J2EE server; it can run
> with
>>> just a servlet engine.
>>>
>>> Matt Liotta
>>> President & CEO
>>> Montara Software, Inc.
>>> http://www.montarasoftware.com/
>>> 888-408-0900 x901
>>>
 -Original Message-
 From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 11, 2002 10:22 AM
 To: CF-Talk
 Subject: RE: BlueDragon J2EE on OSX - Working !!!

 I'm very interested...

  are there any J2EE servers available for the MAC? If not why did
> you
 choose the J2EE version?

 Thanks

 Kola

>> -Original Message-
>> From: Joshua Miller
>>> [mailto:[EMAIL PROTECTED]]
>> Sent: 11 December 2002 15:11
>> To: CF-Talk
>> Subject: BlueDragon J2EE on OSX - Working !!!
>>
>> I know this is probably nothing special, but getting an
 easy-to-install
>> CFML engine on my Mac just made my day!
>>
>> If you're interested, just use the default Apache installation,
>>> then
>> download Tomcat from http://jakarta.apache.org, then download
 BlueDragon
>> for J2EE from www.newatlanta.com and install them in order
> (Apache,
>> Tomcat, BlueDragon) - Now you can serve CFML from your Mac.
>>
>> I know this isn't fully CFMX compatable, but I'm certainly happy
>>> that
 it
>> runs on the Mac. Wonder why it's not "officially" supported on
> Mac?
 All
>> of the UNIX files worked just fine without any trouble/tweaking.
>>
>> Anyway, just thought I'd post my success to the list in case
> anyone
 else
>> is interested.
>>
>> Joshua Miller
>> Head Programmer / IT Manager
>> Garrison Enterprises Inc.
>> www.garrisonenterprises.net
> 
>> [EMAIL PROTECTED]
>> (704) 569-9044 ext. 254
>>
>>

>>>
> *** 
> *
>> *
>> Any views expressed in this message are those of the individual
 sender,
>> except where the sender states them to be the views of
>> Garrison Enterprises Inc.
>>
>> This e-mail is intended only for the individual or entity to
> which
>>> it
 is
>> addressed and contains information that is private and
>>> confidential.
 If
>> you are not the intended recipient you are hereby notified that
> any
>> dissemination, distribution or copying is strictly prohibited.
> If
>>> you
>> have received this e-mail in error please delete it immediately
> and
>> advise us by return e-mail to
>> 
>> [EMAIL PROTECTED]
>>

>>>
> *** 
> *
>> *
>>
>>
>>


>>>
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: FedEx Shipping tag - willing to purchase

2002-12-11 Thread Jeff Beer
Check out www.intershipper.com - CF custom tag is free and they handle
UPS, Fed-Ex, DHL, Airborne, USPS and others.  Free service as well.

-Original Message-
From: UXBinfo [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 9:30 AM
To: CF-Talk
Subject: FedEx Shipping tag - willing to purchase


Hi there,

Has anyone written or knows of a CF tag for acquiring shipping costs
from
the FEDEX on-line system?   I have found several UPS tags and a Fedex
tag
with local price schedule but our customer wants to get real time costs.
I would rather not invest the time writing one from FedEx's information
and am willing to purchase a working tag.  We are using CF4.X and CF5.

Thank you in advance.


Best regards,

Dennis Powers
UXB Internet - A Web Design and Hosting Company
tel: (203)879-2844  fax: (203)879-6254 http://www.uxbinternet.com/
http://dennis.uxb.net/



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Another Newbie Problem

2002-12-11 Thread Andy Ewings
I personally donnever create date objects in CF and pass them into SQL - can
cause all sorts of probs with the interpretation  depending on your SQL
settings.  what I'd do is create a date in the format dd/mm/ as a
character string and then run SET DATEFORMAT DMY before your select
statement...but then that's just me.

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: 11 December 2002 16:19
To: CF-Talk
Subject: RE: Another Newbie Problem


If you have a search form with a month select and a year selectbox. And
you're searching for records with call_date newer than the selected values.



SELECT *
FROM tblTable
WHERE call_date > '#compare_date#'



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 8:57 AM
To: CF-Talk
Subject: RE: Another Newbie Problem


Rick,
Can you explain your situation a little more in depth? There are
datepart() functions that allow us to compare parts of dates.

Greg


Sure, thanks for the interest. 

We have several thousand records in a db with a standard odbc datetime stamp
column.  We want to be able to filter out end of month statistics (all
trouble calls in November, 2002, for instance) by using a set of drop down
menus (month, year, type of call).   

This is the kind of product one sees everywhere on the internet, but I just
can't find a reference piece to get my head in the right place about how to
go about it.  Plus, as I've learned, there are always several approaches to
the same problem.  

Any ideas are appreciated.  

Rick 
***Sterling Financial Investment Group, Inc. (SFIG) is a member of
NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
accept orders to buy or sell via email.  Please visit www.mysterling.com for
more information.***

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and other weird errors

2002-12-11 Thread Douglas.Knudsen
ooops!  missed this one yesterday.  I have no link to the methodology I mentioned, it 
has been discussed here and on CFDJLIST many times though.  It involves this:

in application.cfm 





in onrequestend.cfm





With this, our whole application, some 800 templates, uses only two cflocks and no 
pcode errors at all.   Note, some folks copy the session to request.session, YMMV.  
Also note, any use of cflocation in a template may bypass your needed onrequestend.cfm 
call, keep this in mind.

Doug


>-Original Message-
>From: Andres [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, December 10, 2002 11:04 AM
>To: CF-Talk
>Subject: RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and
>other weird errors
>
>
>Doug,
>Can you provide a link or location where i can find this methodology? 
>
>Thank you!
>
>Andres
>
>-Original Message-
>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, December 10, 2002 12:49 AM
>To: CF-Talk
>Subject: RE: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and
>other weird errors
>
>
>yup, seen that.  pcode errors, from what I've experienced and 
>from research, are related to one of the most popular topics 
>on these lists, locking and shared scopes.  We put an app in 
>production, after a month or so when it got popular and the 
>usage climed, we saw these pcode errors often.  We made sure 
>every access to session.foo was locked and still got them 
>under load, but much less often.  Once we changed over to the 
>'copy session scope to the request scope' methodology, all the 
>pcode errors went bye bye. 
>
>
>These makes me wonder...it seems an app can be written in such 
>a way as to 'over use' locking/session scope.
>
>
>Doug
>
>>-Original Message-
>>From: Andres [mailto:[EMAIL PROTECTED]]
>>Sent: Monday, December 09, 2002 9:31 PM
>>To: CF-Talk
>>Subject: PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag 
>and other
>>weird errors
>>
>>
>>Hello All,
>>I have recently (last 36 or so hours) have began experiencing 
>>server timeouts, hangs, and have needed to restart CF and IIS 
>>in all my servers.
>>
>>Among the many errors i get in the application.log file are 
>>things such as 
>>PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag and 
>>CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode122333444
>>45654321
>>
>>I started a support event with MM. Their engineer tells me it 
>>is an issue with shared variable locking. I have began looking 
>>closely at my code and have found some potential locking 
>>issues. But the fact is that my code HAS NOT CHANGED since we 
>>went 5.0 over 5 months ago. No other major changes have taken place.
>>
>>I am starting to make sure all my app, session, and server 
>>vars are properly locked, but we host two huge apps (over 1500 
>>templates each) so it will take time to go through them.
>>
>>My question is.. has anyone ever experienced their CF server 
>>suddenly require such drastic use of cflocking?
>>
>>Any suggestions or ideas will be much appreciated!
>>
>>Thanks
>>
>>Andres
>>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



How to change this query from MS Access to MySQL Query

2002-12-11 Thread Rick Faircloth
Hi, all.

This query worked with MS Access, but not with MySQL...

How should I change this to make it work?
Is it a subquery problem?
This is MySQL version 4.0.5 beta...


 Select * from Units U where U.UnitID
in (Select UnitID from Clients where Clients.ClientID
= #App_ClientID#)


Thanks!

Rick



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: loop query check??how to do this

2002-12-11 Thread Bryan Love
The GUI should not allow you to choose to be the mainteacher for students
who already have one... It seems to me that the error lies in the GUI and
should be fixed there, not behind the scenes.

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
TeleCommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis

"Let's Roll"
- Todd Beamer, Flight 93



-Original Message-
From: Janine Jakim [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 9:02 AM
To: CF-Talk
Subject: loop query check??how to do this


I have a table- that users can add to their classlist.  
When adding they can choose multiple students.
I can easily do that loop.
My prob. 
Each student will have only one MainTeacher and many peripheral teachers

So before a student is added to a classlist it would need to be checked if
there's any conflict- that 2 teachers are claiming to be the MainTeacher.
So what should happen if
1. one of the 10 students I chose and checked as MainTeacher is already in
the db as having a different MainTeacher?
How does that fit into the loop??
Thanks




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Stephen Moretti
> Tomcat is a J2EE server (not certified I don't think) - I did it this
> way just because it was all free and easy to download and install. I'm
> sure if someone makes a J2EE server for Mac that you could use something
> other than Tomcat. Since NONE of the Macromedia products work on Mac
> without a major workaround this seemed the simplest option.
>
Tomcat wasn't certified, because it didn't quite meet all the J2EE
requirements, but I believe it is fully J2EE certified/compliant etc.

I noticed in one of your other emails that you're using Tomcat and Apache
together...  We tried running an app with Tomcat and Apache.  Damn thing
kept trashing the server.  Turns out there is "known" issue with the
tomcat/apache connector and we were recommended to use JBoss and Jetty with
Apache instead.

Just so people know, Michael set up a Bluedragon list on the HOF mailserver,
so if anyone is interested in talking specifically about Bluedragon, then
get yourself signed up over there.  http://www.houseoffusion.com/cf_lists

Regards

Stephen



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



BIZZARE Session Problem

2002-12-11 Thread Ian Skinner
I thought I had this fixed, changes we made the last couple of days
eliminated the problem for some users. After adding addToken="no" to all our
 tags and removing unnecessary sessionmanagement="yes" and
sessiontimeout parameters from the  tag in the root
Application.cfm file, more useres where able to correctly use the
application. But continued use and testing have determined that some clients
are still experiencing the problem. 

To summerize the problem again. We have a training application that is
supposed to time out after 15 minutes of inactivity. We are using a variable
SESSION.registered set to time out in 15 minutes to track this. Then each
template through Application.cfm in the training application checks to make
sure that this variable exists before displaying the page. But the session
is not persisting for some users. For some reason, new CFID and CFTOKENS are
being generated by every HTTP request. Thus SESSION.registered keeps
disappearing by the next page and the user is put into an endless loop.

Please refer to the following link to see the previous topic on this
problem.

Thank You
Ian Skinner
Web Development
Blood Source
Sacramento CA 

Referring URL 1:


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: How to change this query from MS Access to MySQL Query

2002-12-11 Thread Jochem van Dieten
Rick Faircloth wrote:
> 
> How should I change this to make it work?
> Is it a subquery problem?
> This is MySQL version 4.0.5 beta...
> 
> 
>  Select * from Units U where U.UnitID
> in (Select UnitID from Clients where Clients.ClientID
> = #App_ClientID#)
> 

Flatten the subquery to a join on UnitID.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: How to change this query from MS Access to MySQL Query

2002-12-11 Thread Stephen Moretti
> 
> This query worked with MS Access, but not with MySQL...
> 
> How should I change this to make it work?
> Is it a subquery problem?
> This is MySQL version 4.0.5 beta...
> 

In mySQL you need to use Joins.


   Select * 
   FROM Units  LEFT JOIN Clients 
ON Units.UnitID = Clients.UnitID 
   WHERE Units.UnitID = #App_ClientID#

 

Regards

Stephen

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: BlueDragon J2EE on OSX - Working !!!

2002-12-11 Thread Samuel R. Neff
At 05:49 PM 12/11/2002, you wrote:
>Tomcat wasn't certified, because it didn't quite meet all the J2EE
>requirements, but I believe it is fully J2EE certified/compliant etc.

Tomcat isn't certified J2EE??  I thought it was the reference 
implementation of J2EE...

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: BIZZARE Session Problem

2002-12-11 Thread Jeff Beer
How many application.cfm files do you have?  If the name param is
different it will wipe out the existing session info and start fresh as
the user changes directories.

Also, cookies can't be set when using cflocation, so the system will
generate a new set of tokens on each request.  I use use a splash page
('you are logged in - click here to continue'), or I use javascript to
redirect the user after a successful login.  Once the cookies are set
cflocation will work fine.



-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 12:51 PM
To: CF-Talk
Subject: BIZZARE Session Problem


I thought I had this fixed, changes we made the last couple of days
eliminated the problem for some users. After adding addToken="no" to all
our  tags and removing unnecessary sessionmanagement="yes"
and sessiontimeout parameters from the  tag in the root
Application.cfm file, more useres where able to correctly use the
application. But continued use and testing have determined that some
clients are still experiencing the problem. 

To summerize the problem again. We have a training application that is
supposed to time out after 15 minutes of inactivity. We are using a
variable SESSION.registered set to time out in 15 minutes to track this.
Then each template through Application.cfm in the training application
checks to make sure that this variable exists before displaying the
page. But the session is not persisting for some users. For some reason,
new CFID and CFTOKENS are being generated by every HTTP request. Thus
SESSION.registered keeps disappearing by the next page and the user is
put into an endless loop.

Please refer to the following link to see the previous topic on this
problem.

Thank You
Ian Skinner
Web Development
Blood Source
Sacramento CA 

Referring URL 1:



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



  1   2   3   >