Re: webservice calling local CFC (one works one doesn't)

2005-08-19 Thread James Holmes
Where is the createobject for appcfcs.data_manip? This:

appcfcs.data_manip.queryToXML(MyQuery,Table,Rows)

says invoke the queryToXML method in the object data_manip which is
part of a structure appcfcs (or similar). You need

CreateObject(component,appcfcs.data_manip).queryToXML(MyQuery,Table,Rows)

On 8/19/05, Bryan Stevenson [EMAIL PROTECTED] wrote:
 Hey All,
 
 OK...I know there is a known bug in CF MX 6.1 about webservices not being 
 able to see CF mappingsbut this is happening on CFMX 7 and seems a tad 
 different:
 
 I have a simple test webservice that creates a query and then calls a local 
 CFC to convert that query to XML.
 
 here's the code that doesn't work:
 
 cfcomponent displayname=test output=false
 
   cffunction name=getStuff access=remote returntype=string 
 output=false
 
 cfset MyQuery = QueryNew(col1,col2)
 !--- add a row to the query ---
 cfset SomeRows = QueryAddRow(MyQuery,1)
 cfset temp = QuerySetCell(MyQuery,col1,foo,1)
 cfset temp = QuerySetCell(MyQuery,col2,bar,1)
 
 cfreturn toString(appcfcs.data_manip.queryToXML(MyQuery,Table,Rows))
 
   /cffunction
 
 /cfcomponent
[snip]

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215740
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT: Announce: Blogs onTap 2.0 Beta Released

2005-08-19 Thread James Holmes
Excellent, thanks. That'll save on the upload time a bit.

On 8/19/05, S. Isaac Dealey [EMAIL PROTECTED] wrote:
  To install this latest release of the framework, can I
  just extract
  over the old one or should I delete everything there
  first?
 
 I don't think anything important has been deleted... You should be
 able to just extract over the existing installation... If you have any
 problems with it, let me know. :)

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215741
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Best Practice with CFC?

2005-08-19 Thread Andy Mcshane
Hi all, I am new to CFC's and would like to start off on the right foot. My 
question is about using variables passed into a CFC. In some cases I will be 
passing single fields into the CFC i.e. (field1, field2, field3, etc) and in 
other cases I will be using ( argumentcollection=MyStructure). Now how should I 
best handle these variables in my CFC? Can I just reference them as 
arguments.field1 or should I scope all of the arguments to local variables 
first and then only reference the local variable? If I should rescope them what 
is the syntax for doing this? I apologise if this is a dumb question but I 
would just to like to get some feedback on how others do this.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215742
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: WDDX Replacement Attempt - Take a Look!

2005-08-19 Thread RADEMAKERS Tanguy
I think I've hit upon an appropriate name... get ready... here 
it comes...

YODEL

It stand for Yet another Open Data Exchange Language.  Also 
Yodeling began
as a method for passing messaged from mountain peak to 
mountain peak using
only simple modulations of voice... all told it seems appropriate.

What do you guys think?

Jim, that's a *brilliant* name for such a technology. Seriously.

/t

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215743
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfindex/cfsearch help with dates

2005-08-19 Thread Dave.Phillips
Ray,

Can you elaborate on that idea?  We do index daily.  I'm unclear on how you're 
using the word 'category' but very interested.  One thing I don't want to do is 
add another index based on another query (that limits records to those modified 
last 7 days) as this would extend the index job time which is already at almost 
2 hours.

I'll be working on the QofQ today.

Thanks,

Dave

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 18, 2005 6:12 PM
To: CF-Talk
Subject: Re: cfindex/cfsearch help with dates


How often do you index your data? If you do it daily, you could easily
use a category called Last7Days, then filter on that category.

On 8/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Well, that sounds good on the QofQ...I know it's faster than re-querying the 
 database, but sounds pretty quick based on what you said.  I'm going to have 
 to use it anyway, I don't have much of an option.  In this case, I need to 
 search for documents (and query results) modified within the last 7 days, so 
 I'll just use the QofQ to make it work.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215744
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
 I've been working on something similar for JavaScript.

Just a bit OT in this OT subject, one thing I've always been dreaming of 
would be some
way to find the EXACT line in which Javascript file where an error occurs.
MSIE is really idiot in that matter, just giving the line number. In a 
CF file including Jvascript code,
the line number has nothing to do with the real line in the original file.
It also only gives the file name of the page in which a Javascript file 
is included, not the JS file itself :-(
If one could at least display the line and the true file name, it would 
really help.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215745
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFDUMP for PHP

2005-08-19 Thread Russ Michaels
Doesn't the Ms javascript debugger tell you the actual line in the src ? 

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2005 13:26
To: CF-Talk
Subject: Re: CFDUMP for PHP

 I've been working on something similar for JavaScript.

Just a bit OT in this OT subject, one thing I've always been dreaming of
would be some way to find the EXACT line in which Javascript file where an
error occurs.
MSIE is really idiot in that matter, just giving the line number. In a CF
file including Jvascript code, the line number has nothing to do with the
real line in the original file.
It also only gives the file name of the page in which a Javascript file is
included, not the JS file itself :-( If one could at least display the line
and the true file name, it would really help.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215746
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFDUMP for PHP

2005-08-19 Thread Micha Schopman
Claude,

It does, but IE does it in a different way and returns the line in such
a way you should look at it like all files would have been expanded. Is
it intuitive, not exactly. 

Either way, for debugging purposes there are excellent tools available,
like the MS script debugger, and Venkman.

Micha Schopman
Project Manager

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 


-
-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: vrijdag 19 augustus 2005 13:26
To: CF-Talk
Subject: Re: CFDUMP for PHP

 I've been working on something similar for JavaScript.

Just a bit OT in this OT subject, one thing I've always been dreaming of

would be some
way to find the EXACT line in which Javascript file where an error
occurs.
MSIE is really idiot in that matter, just giving the line number. In a 
CF file including Jvascript code,
the line number has nothing to do with the real line in the original
file.
It also only gives the file name of the page in which a Javascript file 
is included, not the JS file itself :-(
If one could at least display the line and the true file name, it would 
really help.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215747
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfindex/cfsearch help with dates

2005-08-19 Thread Raymond Camden
CFMX7 dramatically improved the Verity support within CFMX. One of the
new features is categories. So consider the follow example - you index
your content daily. For content where the data is older than 7 days,
you assign the category Old. For content within 7 days, you assign the
category New.

On the CFSEARCH side, you can then filter based on category=New, or
Old, or don't worry about it.

If you go to my blog, you can download the powerpoint and watch the
preso I did yesterday on CFMX7 and Verity. (It's a recorded Breeze
preso, so you get to hear my lovely voice and see my handsome face. ;)

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Ray,
 
 Can you elaborate on that idea?  We do index daily.  I'm unclear on how 
 you're using the word 'category' but very interested.  One thing I don't want 
 to do is add another index based on another query (that limits records to 
 those modified last 7 days) as this would extend the index job time which is 
 already at almost 2 hours.
 
 I'll be working on the QofQ today.
 
 Thanks,
 
 Dave
 
 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 18, 2005 6:12 PM
 To: CF-Talk
 Subject: Re: cfindex/cfsearch help with dates
 
 
 How often do you index your data? If you do it daily, you could easily
 use a category called Last7Days, then filter on that category.
 
 On 8/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  Well, that sounds good on the QofQ...I know it's faster than re-querying 
  the database, but sounds pretty quick based on what you said.  I'm going to 
  have to use it anyway, I don't have much of an option.  In this case, I 
  need to search for documents (and query results) modified within the last 7 
  days, so I'll just use the QofQ to make it work.
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215748
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfindex/cfsearch help with dates

2005-08-19 Thread Russ Michaels
Bucket anyone :-)

 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2005 13:56
To: CF-Talk
Subject: Re: cfindex/cfsearch help with dates

CFMX7 dramatically improved the Verity support within CFMX. One of the new
features is categories. So consider the follow example - you index your
content daily. For content where the data is older than 7 days, you assign
the category Old. For content within 7 days, you assign the category New.

On the CFSEARCH side, you can then filter based on category=New, or Old, or
don't worry about it.

If you go to my blog, you can download the powerpoint and watch the preso I
did yesterday on CFMX7 and Verity. (It's a recorded Breeze preso, so you get
to hear my lovely voice and see my handsome face. ;)

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Ray,
 
 Can you elaborate on that idea?  We do index daily.  I'm unclear on how
you're using the word 'category' but very interested.  One thing I don't
want to do is add another index based on another query (that limits records
to those modified last 7 days) as this would extend the index job time which
is already at almost 2 hours.
 
 I'll be working on the QofQ today.
 
 Thanks,
 
 Dave
 
 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]
 Sent: Thursday, August 18, 2005 6:12 PM
 To: CF-Talk
 Subject: Re: cfindex/cfsearch help with dates
 
 
 How often do you index your data? If you do it daily, you could easily 
 use a category called Last7Days, then filter on that category.
 
 On 8/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  Well, that sounds good on the QofQ...I know it's faster than re-querying
the database, but sounds pretty quick based on what you said.  I'm going to
have to use it anyway, I don't have much of an option.  In this case, I need
to search for documents (and query results) modified within the last 7 days,
so I'll just use the QofQ to make it work.
 **
  The information contained in this message, 
 including attachments, may contain privileged or confidential 
 information that is intended to be delivered only to the person 
 identified above. If you are not the intended recipient, or the person 
 responsible for delivering this message to the intended recipient, 
 ALLTEL requests that you immediately notify the sender and asks that 
 you do not read the message or its attachments, and that you delete them
without copying or sending them to anyone else.
 
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215749
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfindex/cfsearch help with dates

2005-08-19 Thread Dave.Phillips
Unfortunately we're on MX 6.1 here.  I will let you know how the QofQ works.  
But that's good to know information anyway for other projects I do (I have MX 7 
on my own servers).

Thanks!

Dave

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 8:56 AM
To: CF-Talk
Subject: Re: cfindex/cfsearch help with dates


CFMX7 dramatically improved the Verity support within CFMX. One of the
new features is categories. So consider the follow example - you index
your content daily. For content where the data is older than 7 days,
you assign the category Old. For content within 7 days, you assign the
category New.

On the CFSEARCH side, you can then filter based on category=New, or
Old, or don't worry about it.

If you go to my blog, you can download the powerpoint and watch the
preso I did yesterday on CFMX7 and Verity. (It's a recorded Breeze
preso, so you get to hear my lovely voice and see my handsome face. ;)

**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215750
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
 Doesn't the Ms javascript debugger tell you the actual line in the src ?

Might be, but I've never been able to get it working :-(

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215751
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfindex/cfsearch help with dates

2005-08-19 Thread Raymond Camden
Actually, you can use the CUSTOM1 field instead. The only difference
is how you run your cfsearch.

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Unfortunately we're on MX 6.1 here.  I will let you know how the QofQ works.  
 But that's good to know information anyway for other projects I do (I have MX 
 7 on my own servers).
 
 Thanks!
 
 Dave
 
 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 8:56 AM
 To: CF-Talk
 Subject: Re: cfindex/cfsearch help with dates
 
 
 CFMX7 dramatically improved the Verity support within CFMX. One of the
 new features is categories. So consider the follow example - you index
 your content daily. For content where the data is older than 7 days,
 you assign the category Old. For content within 7 days, you assign the
 category New.
 
 On the CFSEARCH side, you can then filter based on category=New, or
 Old, or don't worry about it.
 
 If you go to my blog, you can download the powerpoint and watch the
 preso I did yesterday on CFMX7 and Verity. (It's a recorded Breeze
 preso, so you get to hear my lovely voice and see my handsome face. ;)
 
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215752
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfindex/cfsearch help with dates

2005-08-19 Thread Dave.Phillips
Is it possible to specify values for the custom1 or custom2 field in my 
CFSEARCH tag?  I don't find that in the docs.

Can I add this to my criteria?:

custom1 = #dateadd('d',-7,now())# 

or something like that?

I'm going to try something like this.  I'll let you know how it works...

Dave

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 9:46 AM
To: CF-Talk
Subject: Re: cfindex/cfsearch help with dates


Actually, you can use the CUSTOM1 field instead. The only difference
is how you run your cfsearch.

**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215753
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFDUMP for PHP

2005-08-19 Thread Claude Schneegans
 Might be, but I've never been able to get it working

Actually, this was with W98, I never could manage to install it.

I just gave it another try now that I have XP.
It installed correctly, I created a bug somewhere, ran the page, got the 
message
Do you want to start the debugger?, said YES, the debugger window opened,
 but on an empty window :-(
Shouldn't it at least show me the code source where the error occured ?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215754
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfchart question (for when i can get it to work )

2005-08-19 Thread Tom McNeer
I assume you're dealing with CFMX7. 

Check the LiveDocs Developers' Guide under Creating Charts and Graphs
-- Linking Charts to URLs. You can only specify a single URL for
clicks anywhere on the chart, but there are defined variables that can
be added to the string that pass values related to individual chart
elements.

The example in the Docs is for a pie chart, but I assume it will work
for a bar chart, too.

Hope that's what you were looking for.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215755
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


iframe with dynamic columns

2005-08-19 Thread Paolo Cesana
Hi,
I create a table with a dynamic list of column headers which in general will 
exceed the browser horizontal size.

I then display the table's row contents within an iframe with the table header 
columns displayed statically just above the frame.  The columns to toward the 
right end of the table will be accesses obviously by horizontal scrolling in 
the frame and the same would apply for the column headers except using the 
browser's horizontal scroll.  This will make the headers and columns be out of 
sync and it will require the user to horizontally scroll twice while attempting 
to line up the columns in the frame to the headers above.  Is there a solution 
whereby as the frame is horizontally scrolled the main page follows and keeps 
the headers lined up to the columns below?

tks/Rgds

__PC

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215756
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: WDDX Replacement Attempt (was RE: Ajax and CFCs)

2005-08-19 Thread Roger B.
Jim: Any reason not to go with the prior art and just use (or extend,
if necessary) XML-RPC?

XML-RPC parsers are everywhere, so it's pretty much the no-brainer
default option for passing around programmatic data. In fact, that was
one of the big points made when Jeremy Allaire and I were discussing
his idea of embedding raw data in RSS feeds a couple years ago... not
only is it more lightweight than WDDX or SOAP, there's virtually no
language or environment that doesn't already support it. That kind of
ubiquity is hard to ignore.

--
Roger Benningfield
JournURL
http://admin.support.journurl.com/
http://admin.mxblogspace.journurl.com/

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215757
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


.NET suggestions

2005-08-19 Thread Tom McNeer
Hi,

We have a long-time client who has a new CIO, and he has decided that
the CF applications which we have built for them over the past three
years will be migrated to the .NET framework.

This isn't a debatable decision, so I'm not asking for ammunition
against the change. It's going to happen.

Fortunately, it appears as if they will allow us to make the
migration, since we know both their business and the existing apps.
Unfortunately, we have not been developing applications using .NET.

So -- what resources would you folks suggest for CF Developers needing
to learn to use the .NET framework? Adam and David Churvis have
offered a class specifically for this purpose in the past, but they
don't seem to have one scheduled at the moment. I'll try to contact
them directly.

Books, online resources (including MS, of course), whatever. What's
been helpful to you?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215758
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Why is Googlebot is creating Thousands of sessions?

2005-08-19 Thread Troy Simpson
It appears that Googlebot is crawling our website and opening a large
number of sessions.  Is there a way to force Googlebot to use the same
session?
Are there any other ideas?

Here are the Metrics of the ColdFusion/JRun Instances.  As you can
see, TotalMemory starts at a modest 128Meg.  This grows to almost 1Gig
and the number of session grows to over 1500.  Eventually, I get the
error java.lang.OutOfMemoryError and the server crashes.

I believe that most of these sessions are created by the GoogleBot. 
Normally, the website responds to most user requests within 250ms to
500ms.

08/17 15:48:12 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125440 Free=87289
08/17 15:48:32 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125440 Free=87185
08/17 15:48:52 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125248 Free=115289
08/17 15:49:12 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125248 Free=114361
08/17 15:49:32 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125248 Free=114281
08/17 15:49:52 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125056 Free=118075
08/17 15:50:12 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125056 Free=117986
08/17 15:50:32 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=125056 Free=117914
08/17 15:50:52 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=118009
08/17 15:51:12 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=117921
08/17 15:51:32 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=117857
08/17 15:51:52 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=117927
08/17 15:52:12 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=117823
08/17 15:52:32 metrics Web threads (busy/total): 0/7 Sessions: 2 Total
Memory=124992 Free=117767
08/17 15:52:52 metrics Web threads (busy/total): 0/6 Sessions: 2 Total
Memory=125056 Free=118054
08/17 15:53:12 metrics Web threads (busy/total): 0/3 Sessions: 2 Total
Memory=125056 Free=117933
08/17 15:53:32 metrics Web threads (busy/total): 0/3 Sessions: 2 Total
Memory=125056 Free=117901
08/17 15:53:52 metrics Web threads (busy/total): 0/3 Sessions: 2 Total
Memory=125120 Free=118268
08/17 15:54:12 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125120 Free=118180
08/17 15:54:32 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125120 Free=118099
08/17 15:54:52 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125312 Free=118490
08/17 15:55:12 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125312 Free=118354
08/17 15:55:32 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125312 Free=118274
08/17 15:55:53 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125440 Free=118633
08/17 15:56:13 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125440 Free=118536
08/17 15:56:33 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125440 Free=118424
08/17 15:56:53 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125632 Free=118823
08/17 15:57:13 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125632 Free=118687
08/17 15:57:33 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125632 Free=118575
08/17 15:57:54 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125888 Free=119120
08/17 15:58:14 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125888 Free=119015
08/17 15:58:34 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=125888 Free=118911
08/17 15:58:54 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126080 Free=119310
08/17 15:59:14 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126080 Free=119190
08/17 15:59:34 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126080 Free=119134
08/17 15:59:55 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126336 Free=119565
08/17 16:00:15 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126336 Free=119468
08/17 16:00:35 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126336 Free=119404
08/17 16:00:55 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126528 Free=119739
08/17 16:01:15 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126528 Free=119619
08/17 16:01:35 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126528 Free=119522
08/17 16:01:56 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126784 Free=120015
08/17 16:02:16 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126784 Free=119919
08/17 16:02:36 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=126784 Free=119823
08/17 16:02:56 metrics Web threads (busy/total): 0/1 Sessions: 2 Total
Memory=127040 Free=120270
08/17 16:03:16 metrics Web threads 

Re: cfindex/cfsearch help with dates

2005-08-19 Thread Raymond Camden
You can't do a comparison like that. What I meant was to use CUSTOM1
with 2 strings, New or Old. Then in your search, you would do

#form.searchterms# and CUSTOM1 contains New

This says - search on the value of form.searchterms AND restrict it to
where CUSTOM1 contains New.

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Is it possible to specify values for the custom1 or custom2 field in my 
 CFSEARCH tag?  I don't find that in the docs.
 
 Can I add this to my criteria?:
 
 custom1 = #dateadd('d',-7,now())#
 
 or something like that?
 
 I'm going to try something like this.  I'll let you know how it works...
 
 Dave
 
 -Original Message-
 From: Raymond Camden [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 9:46 AM
 To: CF-Talk
 Subject: Re: cfindex/cfsearch help with dates
 
 
 Actually, you can use the CUSTOM1 field instead. The only difference
 is how you run your cfsearch.
 
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215760
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Matthew Small
Microsoft ASP.NET Step by Step - Microsoft Press
Definitely get Visual Studio.Net now - don't try to manually compile a page.
Take an application you have already written in CF and convert it using
..NET.

http://www.asp.net is the official Microsoft website for ASP.NET


Matthew Small



-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 10:08 AM
To: CF-Talk
Subject: .NET suggestions

Hi,

We have a long-time client who has a new CIO, and he has decided that
the CF applications which we have built for them over the past three
years will be migrated to the .NET framework.

This isn't a debatable decision, so I'm not asking for ammunition
against the change. It's going to happen.

Fortunately, it appears as if they will allow us to make the
migration, since we know both their business and the existing apps.
Unfortunately, we have not been developing applications using .NET.

So -- what resources would you folks suggest for CF Developers needing
to learn to use the .NET framework? Adam and David Churvis have
offered a class specifically for this purpose in the past, but they
don't seem to have one scheduled at the moment. I'll try to contact
them directly.

Books, online resources (including MS, of course), whatever. What's
been helpful to you?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215761
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Russ Michaels
I would suggest you look at BlueDragon. Then you can deploy on .NET but
still using CFML. Much less of a learning curve and will make the migration
quicker methinks.

Russ 

-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2005 15:08
To: CF-Talk
Subject: .NET suggestions

Hi,

We have a long-time client who has a new CIO, and he has decided that the CF
applications which we have built for them over the past three years will be
migrated to the .NET framework.

This isn't a debatable decision, so I'm not asking for ammunition against
the change. It's going to happen.

Fortunately, it appears as if they will allow us to make the migration,
since we know both their business and the existing apps.
Unfortunately, we have not been developing applications using .NET.

So -- what resources would you folks suggest for CF Developers needing to
learn to use the .NET framework? Adam and David Churvis have offered a class
specifically for this purpose in the past, but they don't seem to have one
scheduled at the moment. I'll try to contact them directly.

Books, online resources (including MS, of course), whatever. What's been
helpful to you?

--
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215762
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Matt Osbun
If the issue is that the applications need to use the .NET framework,
then is BlueDragon.NET an option?

Or is the issue is that CIO in question is one who believes that web
applications Don't really work and Aren't really professional if
they aren't built in ASP...

I guess I'm asking, is it really the framework that's at issue, or is it
a manager who doesn't know to separate the framework from the language
interacting with it?

Matt Osbun
Web Developer
Health Systems, International


-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 9:08 AM
To: CF-Talk
Subject: .NET suggestions


Hi,

We have a long-time client who has a new CIO, and he has decided that
the CF applications which we have built for them over the past three
years will be migrated to the .NET framework.

This isn't a debatable decision, so I'm not asking for ammunition
against the change. It's going to happen.

Fortunately, it appears as if they will allow us to make the
migration, since we know both their business and the existing apps.
Unfortunately, we have not been developing applications using .NET.

So -- what resources would you folks suggest for CF Developers needing
to learn to use the .NET framework? Adam and David Churvis have
offered a class specifically for this purpose in the past, but they
don't seem to have one scheduled at the moment. I'll try to contact
them directly.

Books, online resources (including MS, of course), whatever. What's
been helpful to you?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215763
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Best Practice with CFC?

2005-08-19 Thread Cameron Johnson
I can't answer the should/best practice part of that question, as I've 
wondered the same thing. But, here's a blog entry that may help answer the 
how part of the question:

http://www.talkingtree.com/blog/index.cfm?mode=entryentry=0C4FAED9-50DA-0559-A0DF9DC0609CF2DF

Cameron

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215764
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe with dynamic columns

2005-08-19 Thread Ben Doom
Could you use a DIV and CSS instead of an iframe?  Essentially, wrap the
table with the data in a DIV that's vertically scrollable, but not
horizontally scrollable?

--Ben

Paolo Cesana wrote:
 Hi,
 I create a table with a dynamic list of column headers which in general will 
 exceed the browser horizontal size.
 
 I then display the table's row contents within an iframe with the table 
 header columns displayed statically just above the frame.  The columns to 
 toward the right end of the table will be accesses obviously by horizontal 
 scrolling in the frame and the same would apply for the column headers except 
 using the browser's horizontal scroll.  This will make the headers and 
 columns be out of sync and it will require the user to horizontally scroll 
 twice while attempting to line up the columns in the frame to the headers 
 above.  Is there a solution whereby as the frame is horizontally scrolled the 
 main page follows and keeps the headers lined up to the columns below?
 
 tks/Rgds
 
 __PC
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215765
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Starting CF Services issue

2005-08-19 Thread Adkins, Randy
I am not sure if this is related to us establishing more robust
logging within CFMX but recently I noticed that when we start
the CFusion Services on our web server that a DOS window
appears and will not hide when services are started.
 
If you 'X' (close) the window, it will stop the CF Services.
 
Anyone else seen this and if so any idea why it occurs and
how to change it? Or is this due to the logging?
 
Thanks


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215766
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: iframe with dynamic columns

2005-08-19 Thread Cesana, Paolo
Hi Ben,
Well, the table is a standard html table so I guess I could.
The problem is I am not that familiar using advanced div and css and I
can't quite visualize your suggestion.
Could you formulate your technique with a sample?

Tks/Rgds

Paolo Cesana 
Principal Software Engineer



Eagle Global Logistics (EGL)
1801 NW 82 AVE 
Miami FL 33126
Phone: (305) 594-0038 Ext 7326
Fax: (305) 593-0431

Mailto: [EMAIL PROTECTED]
http://loginet.eaglegl.com 
http://www.eaglegl.com 

Electricity is not the result of a series of upgrades to the candle
Auth. unknown 



-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 10:32 AM
To: CF-Talk
Subject: Re: iframe with dynamic columns


Could you use a DIV and CSS instead of an iframe?  Essentially, wrap the
table with the data in a DIV that's vertically scrollable, but not
horizontally scrollable?

--Ben

Paolo Cesana wrote:
 Hi,
 I create a table with a dynamic list of column headers which in 
 general will exceed the browser horizontal size.
 
 I then display the table's row contents within an iframe with the 
 table header columns displayed statically just above the frame.  The 
 columns to toward the right end of the table will be accesses 
 obviously by horizontal scrolling in the frame and the same would 
 apply for the column headers except using the browser's horizontal 
 scroll.  This will make the headers and columns be out of sync and it 
 will require the user to horizontally scroll twice while attempting to

 line up the columns in the frame to the headers above.  Is there a 
 solution whereby as the frame is horizontally scrolled the main page 
 follows and keeps the headers lined up to the columns below?
 
 tks/Rgds
 
 __PC
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting CF Services issue

2005-08-19 Thread Russ Michaels
This will happen if you start the service via commoand prompt. It should not
happen if you start the service via windows services. 

-Original Message-
From: Adkins, Randy [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2005 15:34
To: CF-Talk
Subject: Starting CF Services issue

I am not sure if this is related to us establishing more robust logging
within CFMX but recently I noticed that when we start the CFusion Services
on our web server that a DOS window appears and will not hide when services
are started.
 
If you 'X' (close) the window, it will stop the CF Services.
 
Anyone else seen this and if so any idea why it occurs and how to change it?
Or is this due to the logging?
 
Thanks




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215768
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfchart issues... (sub domain)

2005-08-19 Thread Michael Brake
Hey
We just found an excellent alternative, as recommended by New Atlanta on their 
FAQ about alternatives to cfchart.  

Product Site:
http://www.infosoftglobal.com/FusionCharts/

See their cf demo installed here : 
http://secure.dev.casa.colostate.edu/applications/fc2%5F3%5Fcf/

I prefer them to cfchart as they take no admin panel configuration.  I too have 
run into the non-display error, which I found out was because of my 
configuration for number of cached charts.

Good luck
Mike
hi there.

still battling the sub domain and the cfchart, where it just doesnt show the
swf.  if you right click in the area where you should be able to see
the chart...
you see the normal right click context menu of any flash swf.  however its 
the chart is just not there. if i sniff the http headers, i see an object 
not found error.  

some of you suggested that i have a virtual directory
under the subdomain, that is the /cfide directory under the 
server root (i tried all the CFIDE directories for that matter)
and that didnt help.  any other ideas?

http://reports.navtrak.net/test_reportLogGraph.cfm is the url.

you can click on the top report, and you will see what i mean.

IF i put this same file under www.navtrak.net, its all good.

HELP :) if you can... thank you.

-- 
...tony

Tony Weeg
tonyweeg [at] gmail [dot] com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215769
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe with dynamic columns

2005-08-19 Thread Ben Doom
I don't have a sample offhand, but CSS allows you to specify what
happens when the data overflows the div.  I think, if you specify the
height of the div but not the width, it should expand width-wise to
accommodate the table inside, and allow for vertical scrolling.

HTH.

--Ben

Cesana, Paolo wrote:
 Hi Ben,
 Well, the table is a standard html table so I guess I could.
 The problem is I am not that familiar using advanced div and css and I
 can't quite visualize your suggestion.
 Could you formulate your technique with a sample?
 
 Tks/Rgds
 
 Paolo Cesana 
 Principal Software Engineer
 
 
 
 Eagle Global Logistics (EGL)
 1801 NW 82 AVE 
 Miami FL 33126
 Phone: (305) 594-0038 Ext 7326
 Fax: (305) 593-0431
 
 Mailto: [EMAIL PROTECTED]
 http://loginet.eaglegl.com 
 http://www.eaglegl.com 
 
 Electricity is not the result of a series of upgrades to the candle
 Auth. unknown 
 
 
 
 -Original Message-
 From: Ben Doom [mailto:[EMAIL PROTECTED] 
 Sent: Friday, August 19, 2005 10:32 AM
 To: CF-Talk
 Subject: Re: iframe with dynamic columns
 
 
 Could you use a DIV and CSS instead of an iframe?  Essentially, wrap the
 table with the data in a DIV that's vertically scrollable, but not
 horizontally scrollable?
 
 --Ben
 
 Paolo Cesana wrote:
 
Hi,
I create a table with a dynamic list of column headers which in 
general will exceed the browser horizontal size.

I then display the table's row contents within an iframe with the 
table header columns displayed statically just above the frame.  The 
columns to toward the right end of the table will be accesses 
obviously by horizontal scrolling in the frame and the same would 
apply for the column headers except using the browser's horizontal 
scroll.  This will make the headers and columns be out of sync and it 
will require the user to horizontally scroll twice while attempting to
 
 
line up the columns in the frame to the headers above.  Is there a 
solution whereby as the frame is horizontally scrolled the main page 
follows and keeps the headers lined up to the columns below?

tks/Rgds

__PC


 
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215770
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Kevin Aebig
Actually, the free editor at asp.net is quite good, but I'd still suggest
getting VS.NET.

Cheers,

Kevin

-Original Message-
From: Matthew Small [mailto:[EMAIL PROTECTED] 
Sent: August 19, 2005 8:13 AM
To: CF-Talk
Subject: RE: .NET suggestions

Microsoft ASP.NET Step by Step - Microsoft Press
Definitely get Visual Studio.Net now - don't try to manually compile a page.
Take an application you have already written in CF and convert it using
...NET.

http://www.asp.net is the official Microsoft website for ASP.NET


Matthew Small



-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 10:08 AM
To: CF-Talk
Subject: .NET suggestions

Hi,

We have a long-time client who has a new CIO, and he has decided that
the CF applications which we have built for them over the past three
years will be migrated to the .NET framework.

This isn't a debatable decision, so I'm not asking for ammunition
against the change. It's going to happen.

Fortunately, it appears as if they will allow us to make the
migration, since we know both their business and the existing apps.
Unfortunately, we have not been developing applications using .NET.

So -- what resources would you folks suggest for CF Developers needing
to learn to use the .NET framework? Adam and David Churvis have
offered a class specifically for this purpose in the past, but they
don't seem to have one scheduled at the moment. I'll try to contact
them directly.

Books, online resources (including MS, of course), whatever. What's
been helpful to you?

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215771
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: TCPView

2005-08-19 Thread Jacob
Yes.  I use TCPView all the time.

What questions do you have?

Jacob
-Original Message-
From: Phill B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 18, 2005 1:01 PM
To: CF-Talk
Subject: OT: TCPView

Any one use this before? I have some questions about what I'm seeing
when I use it.
-- 
Phil



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215772
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Matthew Small
Good point.  I've not used it myself, but I've heard good things about it.

 
Matthew Small


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 11:03 AM
To: CF-Talk
Subject: RE: .NET suggestions

Actually, the free editor at asp.net is quite good, but I'd still suggest
getting VS.NET.

Cheers,

Kevin



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215773
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: .NET suggestions

2005-08-19 Thread Tom McNeer
To Kevin and Matthew --

Thanks for the references.

To others, particularly Matt, since he's the one who raised the real issue --

I'm well aware of BD .NET and its advantages. I've had lunch with
Charlie Arehart and Brian O'Reilly. (And for that matter, Brian called
me a few minutes ago because of this post).

But while I wouldn't characterize the situation exactly as Matt did,
it does seem (at the moment) as if the determination is that the CF
code base will be replaced. I intend to discuss Blue Dragon as an
option with this client. But my current guess is that he will choose
to rewrite the applications to eliminate the CFML.

If that's the final decision, then we will need to be writing C#, I guess.

And if we get to that point -- does anyone else have any other
suggestions for the best books/courses/online resources?


-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215774
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


PayPal documentation

2005-08-19 Thread Nick Call
Hello, I am passing the aggregated shopping cart amount to PayPal as a
payment option from our shopping cart. What I wanted to know is if anyone
out there could email me a list of the variables that are returned from
PayPal. Back in the old days, I used to get back from PayPal (after the
payment was made) txn_id (transaction id), payment_status, and invoice
number, etc. that I could then capture and put onto the order for the store
owner. Txn_id no longer exists and I cannot seem to locate (quickly)
documentation that tells me what the new variables are coming back. My day
has come to a grinding halt. I haven't worked on a PayPal interface in
years, so take it easy on me.

 

Thanks for helping out a rookie.

 

Nick

 

 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215775
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: webservice calling local CFC (one works one doesn't)

2005-08-19 Thread Bryan Stevenson
From: James Holmes [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, August 19, 2005 12:00 AM
Subject: Re: webservice calling local CFC (one works one doesn't)


 Where is the createobject for appcfcs.data_manip? This:

 appcfcs.data_manip.queryToXML(MyQuery,Table,Rows)

 says invoke the queryToXML method in the object data_manip which is
 part of a structure appcfcs (or similar). You need

 CreateObject(component,appcfcs.data_manip).queryToXML(MyQuery,Table,Rows)

SeeI new I was missing something stupidand that's it ;-)

I guess I got confused with calling another method in the same CFCin 
which case:
queryToXML(MyQuery,Table,Rows)

would work fine (assuming queryToXML was in the same CFC)

Thanks JamesI'll give it  a whirl ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215776
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Javascript Form Issues

2005-08-19 Thread Creese, Eric
   Okay I have a form with a series of selection boxes
 which fill the next selection box. Then I have a radio button choice
 and depending which radio button is selected a selection box will
 appear next to the label of the radio button. When I decided to change
 say the first selection box it at the top fires of a JavaScript on
 event change and I can get all the selection boxes to hide but I can
 not get the radio button to reset to the default choice automatically.
 I am not doing any page refreshes. I can not figure out the JavaScript
 setting I need to reset the radio button. Can anyone help?

--
This e-mail is intended for the use of the addressee(s) only and may contain 
privileged, confidential, or proprietary information that is exempt from 
disclosure under law.  If you have received this message in error, please 
inform us promptly by reply e-mail, then delete the e-mail and destroy any 
printed copy.   Thank you.
==

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215777
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Starting CF Services issue

2005-08-19 Thread Adrocknaphobia
Sevices console -- View the property of the service -- LogOn Tab

uncheck Allow service to interact with the desktop

-Adam

On 8/19/05, Adkins, Randy [EMAIL PROTECTED] wrote:
 I am not sure if this is related to us establishing more robust
 logging within CFMX but recently I noticed that when we start
 the CFusion Services on our web server that a DOS window
 appears and will not hide when services are started.
 
 If you 'X' (close) the window, it will stop the CF Services.
 
 Anyone else seen this and if so any idea why it occurs and
 how to change it? Or is this due to the logging?
 
 Thanks
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215778
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Parsing iTunes xml file

2005-08-19 Thread Marlon Moyer
First I know this is the wrong tool for the job, but I wanted to try
it anyway.

I have a 10mb iTunes xml file that I want to parse so I can figure out
what songs are missing and what songs are duplicates.

First snagusing blue dragon, cffile craps out on read with a null
pointer exception.  Is there a size limit to cffile?  Or is there a
setting that I can change to allow it to read bigger files?

Thanks


-- 
Marlon

A mulatto, an albino, a mosquito, my libido

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215779
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Verity document limitations

2005-08-19 Thread chad gray
We are running CF MX 6.1 Standard and using two Verity collections for a web 
site.

We are using Queries to input the data into the collections.

One query has 2568 Records but when you do a #mySearch.recordsSearched# on the 
collection it only has 2495 records in it.

Why did 73 records not get inserted into the verity collection?

The other collection has 2508 records in it.  Is there a 5003 record limitation 
for MX Standard?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215781
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Parsing iTunes xml file

2005-08-19 Thread Robertson-Ravo, Neil (RX)
Doesn't iTunes do this for you? Or EpPhod?



-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED] 
Sent: 19 August 2005 16:35
To: CF-Talk
Subject: Parsing iTunes xml file

First I know this is the wrong tool for the job, but I wanted to try
it anyway.

I have a 10mb iTunes xml file that I want to parse so I can figure out
what songs are missing and what songs are duplicates.

First snagusing blue dragon, cffile craps out on read with a null
pointer exception.  Is there a size limit to cffile?  Or is there a
setting that I can change to allow it to read bigger files?

Thanks


-- 

Marlon

A mulatto, an albino, a mosquito, my libido



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215780
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Matt Osbun
In that case, speaking generically, I've always had a lot of success
with O'Reilly Press and the 10-Minute Solutions lines of reference
books. 

Specifically, I bought a .NET 10-minute Solutions book some time ago,
and rather like it.  If you're not familiar with the line, the author
gives Real World (their term) problems and solutions in the given
language, along with code.  In this case, VB.NET.
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0782142532.html

O'reilly has a C# Cookbook:
http://www.oreilly.com/catalog/csharpckbk/

C# Essentials:
http://www.oreilly.com/catalog/csharpess2/

And C# In A Nutshell
http://www.oreilly.com/catalog/csharpnut2/

I haven't read those, but I've always liked the O'Reilly books.

Matt Osbun
Web Developer
Health Systems, International


-Original Message-
From: Tom McNeer [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 10:21 AM
To: CF-Talk
Subject: Re: .NET suggestions


To Kevin and Matthew --

Thanks for the references.

To others, particularly Matt, since he's the one who raised the real
issue --

I'm well aware of BD .NET and its advantages. I've had lunch with
Charlie Arehart and Brian O'Reilly. (And for that matter, Brian called
me a few minutes ago because of this post).

But while I wouldn't characterize the situation exactly as Matt did,
it does seem (at the moment) as if the determination is that the CF
code base will be replaced. I intend to discuss Blue Dragon as an
option with this client. But my current guess is that he will choose
to rewrite the applications to eliminate the CFML.

If that's the final decision, then we will need to be writing C#, I
guess.

And if we get to that point -- does anyone else have any other
suggestions for the best books/courses/online resources?


-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215782
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Parsing iTunes xml file

2005-08-19 Thread Merrill, Jason
My iTunes gives an icon with an explanation point when a file is
missing.  Don't know about duplicates, but can't you see that using your
file browser?  Or by sorting categories in iTunes?   

Jason Merrill   |   E-Learning Solutions   |  icfconsulting.com










-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 11:40 AM
To: CF-Talk
Subject: RE: Parsing iTunes xml file

Doesn't iTunes do this for you? Or EpPhod?



-Original Message-
From: Marlon Moyer [mailto:[EMAIL PROTECTED]
Sent: 19 August 2005 16:35
To: CF-Talk
Subject: Parsing iTunes xml file

First I know this is the wrong tool for the job, but I wanted to try
it anyway.

I have a 10mb iTunes xml file that I want to parse so I can figure out
what songs are missing and what songs are duplicates.

First snagusing blue dragon, cffile craps out on read with a null
pointer exception.  Is there a size limit to cffile?  Or is there a
setting that I can change to allow it to read bigger files?

Thanks


--

Marlon

A mulatto, an albino, a mosquito, my libido





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215783
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Javascript form question

2005-08-19 Thread Creese, Eric
Okay I have a form with a series of selection boxes which fill the next
selection box. Then I have a radio button choice and depending which
radio button is selected a selection box will appear next to the label
of the radio button. When I decided to change say the first selection
box it at the top fires of a JavaScript on event change and I can get
all the selection boxes to hide but I can not get the radio button to
reset to the default choice automatically. I am not doing any page
refreshes. I can not figure out the JavaScript setting I need to reset
the radio button. Can anyone help?


--
This e-mail is intended for the use of the addressee(s) only and may contain 
privileged, confidential, or proprietary information that is exempt from 
disclosure under law.  If you have received this message in error, please 
inform us promptly by reply e-mail, then delete the e-mail and destroy any 
printed copy.   Thank you.
==

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215784
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Parsing iTunes xml file

2005-08-19 Thread Marlon Moyer
iTunes will tell you the duplicates, it won't tell you files that are
missing until you try to play them.  I also want to compare files that
may be in the iTunes directory, but may not be in the iTunes xml file.

Ephpod?  EPHPOD!  Where's the fun in using that :)



On 8/19/05, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Doesn't iTunes do this for you? Or EpPhod?
 
 
 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215785
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity document limitations

2005-08-19 Thread Raymond Camden
Are you use you have unique keys? Verity won't accept 2 records with
the same key.

On 8/19/05, chad gray [EMAIL PROTECTED] wrote:
 We are running CF MX 6.1 Standard and using two Verity collections for a web 
 site.
 
 We are using Queries to input the data into the collections.
 
 One query has 2568 Records but when you do a #mySearch.recordsSearched# on 
 the collection it only has 2495 records in it.
 
 Why did 73 records not get inserted into the verity collection?
 
 The other collection has 2508 records in it.  Is there a 5003 record 
 limitation for MX Standard?
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215786
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: .NET suggestions

2005-08-19 Thread Charles Polisher
Tom McNeer wrote:
 We have a long-time client who has a new CIO, and he has decided that
 the CF applications which we have built for them over the past three
 years will be migrated to the .NET framework.
 
 This isn't a debatable decision, so I'm not asking for ammunition
 against the change. It's going to happen.
 
 Fortunately, it appears as if they will allow us to make the
 migration, since we know both their business and the existing apps.
 Unfortunately, we have not been developing applications using .NET.
 
 So -- what resources would you folks suggest for CF Developers needing
 to learn to use the .NET framework? Adam and David Churvis have
 offered a class specifically for this purpose in the past, but they
 don't seem to have one scheduled at the moment. I'll try to contact
 them directly.
 
 Books, online resources (including MS, of course), whatever. What's
 been helpful to you?

I suggest looking at:
Migrating from ColdFusion to ASP.NET
Author: Joel Mueller, Microsoft Corporation

Summary: Learn how to migrate from ColdFusion to ASP.NET. A comparison of 
ColdFusion MX and ASP.NET as well as common task scenarios for each application 
development framework are included. (25 printed pages)

http://tinyurl.com/h8tx
http://msdn.microsoft.com/library/default.asp?url=/library/e
n-us/dnaspp/html/coldfusiontoaspnet.asp

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Verity document limitations

2005-08-19 Thread Dave.Phillips
Ray's right, and actually, what I have found is that the difference (xDiff) is 
how many duplicate key's you have, but the search results query actually 'lops 
off' the last xDiff records of the original query.  I don't know why CFINDEX 
does that, but it does.  I had this same problem the other day and once I 
resolved the duplicate key issue, it went away and my query counts matched.

Dave

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 12:05 PM
To: CF-Talk
Subject: Re: Verity document limitations


Are you use you have unique keys? Verity won't accept 2 records with
the same key.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Javascript form question

2005-08-19 Thread Dave.Phillips
Can you store the original value in a global variable and then reset it back to 
the global value?


script
var gOldRadioValue = 

function...

function...
set gOldRadioValue = radio.value
set radio.value to new value
function...

function...
reset -- radio.value = gOldRadioValue

/script

That's some rough Pseudo-code but hopefully it will help. 

HTH,

Dave


-Original Message-
From: Creese, Eric [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 12:05 PM
To: CF-Talk
Subject: Javascript form question


Okay I have a form with a series of selection boxes which fill the next
selection box. Then I have a radio button choice and depending which
radio button is selected a selection box will appear next to the label
of the radio button. When I decided to change say the first selection
box it at the top fires of a JavaScript on event change and I can get
all the selection boxes to hide but I can not get the radio button to
reset to the default choice automatically. I am not doing any page
refreshes. I can not figure out the JavaScript setting I need to reset
the radio button. Can anyone help?
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215789
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Verity document limitations

2005-08-19 Thread chad gray
yep.. i just ran the query with DISTINCT on my key and i got the same record 
count as what is in the verity collection.

Thanks guys!  Great Catch!

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215790
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Javas File Writer

2005-08-19 Thread Chad McCue
Has anyone used the java.io.OutputStreamWriter or any other java class to write 
a file to a clients machine?



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215791
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Javas File Writer

2005-08-19 Thread Bryan Stevenson
I doubt that you would be able to write anything to the clients machine 
other than a cookie ;-)

You're not supposed to be able to write anything to the client's 
machinebig security breach that would bejust think of the virii and 
spyware you could leave behind ;-)

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com 


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215792
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


PayPal update

2005-08-19 Thread Nick Call
Okay, I am the moron, sort of. When my client signed up for PayPal
originally, she set up a personal account. Back then, everything worked
fine. For some reason my client and PayPal recently communicated and she
changed to a business account, which I didn't know about. In doing so,
PayPal reset all her account settings, including IPN notification service
setup, which is important to us with a third party shopping cart. Our
payments were posting to PayPal, but nothing was coming back. Our system was
erroring out for non-processing and no variables returned. I thought it was
a variable definition problem. As soon as I got frustrated enough to start
looking at the basic parts - like IPN setup - I found our problem.

 

 

 

In my original post, I asked for a list of the variables returned by
PayPal's IPN service. Well, the tutorials in the Devloper's Center are from
2002, and they do still work. So if my stupidity can save someone some time
and headaches, then it was worth it. If your variables are coming back bad
or undefined, check your IPN setup. The variable definitions have not
changed on PayPal's end.

 

 

 

Thanks.

 

Nick

 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215793
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Javas File Writer

2005-08-19 Thread Chad McCue
Just wondering because I know I do it in VB right now.

- Original Message - 
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, August 19, 2005 12:25 PM
Subject: Re: Javas File Writer


 I doubt that you would be able to write anything to the clients machine
 other than a cookie ;-)

 You're not supposed to be able to write anything to the client's
 machinebig security breach that would bejust think of the virii
and
 spyware you could leave behind ;-)

 Cheers

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com


 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215794
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfindex/cfsearch help with dates

2005-08-19 Thread Dave.Phillips
Ray,

PROBLEM SOLVED  Here's how I ended up doing it:

First, I had to store my 'modifiedDate' value in custom1 with an identifier 
(since I was already using custom1 and custom2 for other values), so it looks 
like this:

custom1= identifier|mm/dd/|

Then, before my CFSEARCH, I created 7 variables with the last 7 days in them 
respectively formatted like this:

Day0 = |08/19/2005|
Day1 = |08/18/2005|
Day2 = |08/17/2005|
and so on...

Then, my CFSEARCH tag ended up looking like this:

cfsearch collection=#TheCollection# 
name=getSearchResults 
type=explicit 
criteria='(MANYSTEM#UCase(url.criteria)#) AND 
((cf_custom1 SUBSTRING #day0#) OR 
(cf_custom1 SUBSTRING #day1#) OR 
(cf_custom1 SUBSTRING #day2#) OR 
(cf_custom1 SUBSTRING #day3#) OR 
(cf_custom1 SUBSTRING #day4#) OR 
(cf_custom1 SUBSTRING #day5#) OR 
(cf_custom1 SUBSTRING #day6#) OR 
(cf_custom1 SUBSTRING #day7#)
)'

And finally...it works.. I need no Query of Queries anymore and I avoided 
creating two separate collections.

The keys to this solution were twofold.  One, you have to use 'cf_' prefixed to 
your cfsearch results field (i.e. cf_custom1, cf_title) to search it.  I found 
this FINALLY in the docs, and of course the other was figuring out how to store 
the date in a field that was already occupied, and by using the pipes, I can 
properly identify the date now.

Dave

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 9:46 AM
To: CF-Talk
Subject: Re: cfindex/cfsearch help with dates


Actually, you can use the CUSTOM1 field instead. The only difference
is how you run your cfsearch.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215795
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Javas File Writer

2005-08-19 Thread Katz, Dov B \(IT\)
That's not possible unless you're referring to an applet, in which case
you'd need it to be signed to get security permissions to write to the
client's filesystem.
-dov 

-Original Message-
From: Chad McCue [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 12:22 PM
To: CF-Talk
Subject: Javas File Writer

Has anyone used the java.io.OutputStreamWriter or any other java class
to write a file to a clients machine?





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215796
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Starting CF Services issue

2005-08-19 Thread Adkins, Randy
Thanks Adam.. That was it!! 

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 11:34 AM
To: CF-Talk
Subject: Re: Starting CF Services issue

Sevices console -- View the property of the service -- LogOn Tab

uncheck Allow service to interact with the desktop

-Adam

On 8/19/05, Adkins, Randy [EMAIL PROTECTED] wrote:
 I am not sure if this is related to us establishing more robust 
 logging within CFMX but recently I noticed that when we start the 
 CFusion Services on our web server that a DOS window appears and will 
 not hide when services are started.
 
 If you 'X' (close) the window, it will stop the CF Services.
 
 Anyone else seen this and if so any idea why it occurs and how to 
 change it? Or is this due to the logging?
 
 Thanks
 
 
 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215797
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: WDDX Replacement Attempt (was RE: Ajax and CFCs)

2005-08-19 Thread Jim Davis
 -Original Message-
 From: Roger B. [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 10:04 AM
 To: CF-Talk
 Subject: Re: WDDX Replacement Attempt (was RE: Ajax and CFCs)
 
 Jim: Any reason not to go with the prior art and just use (or extend,
 if necessary) XML-RPC?

Mostly because I'd never heard of it until you mentioned it.  Where have you
been for the past two weeks while I've been ranting about not having
something like this.  ;^)

 XML-RPC parsers are everywhere, so it's pretty much the no-brainer
 default option for passing around programmatic data. In fact, that was

It does look good - it's just odd that in my posting/searching I never came
across it.

While I've a bit too much invested in YODEL right now to stop I think I'll
still add XML-RPC support (at least for the data format if not for the
method calls) to my serialization libraries.

Thanks!

(Although I still wish you had spoken up two weeks ago.  ;^)  )

Jim Davis







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215798
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Coldfusion7 CFDocument error

2005-08-19 Thread Andy Mcshane
Does anybody know what could be the cause of this error,

'An Error of type com.lowagie.text.ExceptionConverter has occured'

'The document has no pages'

Other than the obvious no pgaes thing. I cannot se why my document would not 
have any pages? Any ideas?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215799
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Why is Googlebot is creating Thousands of sessions?

2005-08-19 Thread Pete Ruckelshaus
http://www.google.com/bot.html

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215800
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


YACI - Yet another CFSEARCH issue

2005-08-19 Thread Dave.Phillips
Well, although my last problems were figured out, I'm having another issue now. 
 

My understanding from the docs is that a 'simple' type search has implicit STEM 
and MANY operators added to it.  So, if I'm doing a simple search and I just 
put in * as my criteria, I get back ALL records in the index.  That works just 
fine.

Now, I have an explicit cfsearch, but I want the 'text' part of my search to 
function just like the simple parti.e., if I put in * I want to get all 
records that match that criteria...

cfsearch ... type=explicit criteria=MANYSTEM#UCase(form.criteria)#

With this CFSEARCH tag, If I type in an actual word in my search form, and it 
is contained in the index and at least one of my equations is true, it returns 
it properly.  BUT, if I just type in a *, or even a partial word and * like 
mik* or cat* it returns ZERO results.  If I can get it to return results with 
an actual word, but not with a *, that doesn't make any sense.  

Any thoughts or ideas?  What am I missing?

Thanks,

Dave
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215801
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Sorting Y-AXIS on CFCHART?

2005-08-19 Thread asherwood
Has anyone sorted the Y axis on CFCHART?

For example, plotting simple values between 1 and 30 will always peak 
upwards with 1 at the bottom of the y-axis and 30 at the top. Is there a way 
to reverse the Y Axis, with 0 at the top and 30 at the bottom?

Thanks!

--
Alex Sherwood

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215802
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: YACI - Yet another CFSEARCH issue

2005-08-19 Thread Raymond Camden
To return all in an explicit search, you can use WILDCARD*

You can also just make your type dynamic, and if the search term is *,
switch to a simple search.

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Well, although my last problems were figured out, I'm having another issue 
 now.
 
 My understanding from the docs is that a 'simple' type search has implicit 
 STEM and MANY operators added to it.  So, if I'm doing a simple search and I 
 just put in * as my criteria, I get back ALL records in the index.  That 
 works just fine.
 
 Now, I have an explicit cfsearch, but I want the 'text' part of my search to 
 function just like the simple parti.e., if I put in * I want to get all 
 records that match that criteria...
 
 cfsearch ... type=explicit criteria=MANYSTEM#UCase(form.criteria)#
 
 With this CFSEARCH tag, If I type in an actual word in my search form, and it 
 is contained in the index and at least one of my equations is true, it 
 returns it properly.  BUT, if I just type in a *, or even a partial word and 
 * like mik* or cat* it returns ZERO results.  If I can get it to return 
 results with an actual word, but not with a *, that doesn't make any sense.
 
 Any thoughts or ideas?  What am I missing?
 
 Thanks,
 
 Dave
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215803
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Javascript form question

2005-08-19 Thread Ewok
form name=myform
input type=radio name=rad value=0 checked Defaultbr
input type=radio name=rad value=1 Onebr
input type=radio name=rad value=2 Twobr
input type=radio name=rad value=3 Threebr
input type=radio name=rad value=4 Fourbr
input type=radio name=rad value=5 Fivebr
br
input type=button value=Reset Radio to Default
onclick=myform.rad[0].checked=true
/frorm

-Original Message-
From: Creese, Eric [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 12:05 PM
To: CF-Talk
Subject: Javascript form question

Okay I have a form with a series of selection boxes which fill the next
selection box. Then I have a radio button choice and depending which
radio button is selected a selection box will appear next to the label
of the radio button. When I decided to change say the first selection
box it at the top fires of a JavaScript on event change and I can get
all the selection boxes to hide but I can not get the radio button to
reset to the default choice automatically. I am not doing any page
refreshes. I can not figure out the JavaScript setting I need to reset
the radio button. Can anyone help?



--
This e-mail is intended for the use of the addressee(s) only and may contain
privileged, confidential, or proprietary information that is exempt from
disclosure under law.  If you have received this message in error, please
inform us promptly by reply e-mail, then delete the e-mail and destroy any
printed copy.   Thank you.

==



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215804
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Why is Googlebot is creating Thousands of sessions?

2005-08-19 Thread Troy Simpson
Pete,

I read this page, but I don't see anything that can help me with this.
 I probably should have designed the application to not use sessions. 
But I used sessions to cache user data/queries to improve response
time.

I did not want to query the Oracle RDBMS everytime a user goes to the
next page of a result set, so I put the data in the Session variable.

If I can figure out how to assign Googlebot and other bots to a
dedicated session that would solve my problem.  For example, if the
user is Googlebot, could I reset the sessionIDs in Application.cfm so
the Googlebot uses an existing session?

Thanks,
Troy


-- 
Troy Simpson
  Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215805
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: YACI - Yet another CFSEARCH issue

2005-08-19 Thread Dave.Phillips
Thanks Ray.  That was it. Here's an interesting note

Almost every time I used this:

MANYSTEMWILDCARDtext*

My CF service bombed.  Not EVERY time, but most of the times.

In any case, I'm leaving off the STEM and using WILDCARD when the are using 
a * in the search criteria, and that solves my problem.

Thanks, yet again, for the help, Mr. Verity.

Dave


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 1:06 PM
To: CF-Talk
Subject: Re: YACI - Yet another CFSEARCH issue


To return all in an explicit search, you can use WILDCARD*

You can also just make your type dynamic, and if the search term is *,
switch to a simple search.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215806
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Javascript form question - SOLVED

2005-08-19 Thread Creese, Eric
Actually I need to do this from a function call not a reset button,
however using the onclick format you provided I simply stuck that bit in
and it works. Thanks

-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 12:12 PM
To: CF-Talk
Subject: RE: Javascript form question


form name=myform
input type=radio name=rad value=0 checked Defaultbr
input type=radio name=rad value=1 Onebr
input type=radio name=rad value=2 Twobr
input type=radio name=rad value=3 Threebr
input type=radio name=rad value=4 Fourbr
input type=radio name=rad value=5 Fivebr
br
input type=button value=Reset Radio to Default
onclick=myform.rad[0].checked=true
/frorm


--
This e-mail is intended for the use of the addressee(s) only and may contain 
privileged, confidential, or proprietary information that is exempt from 
disclosure under law.  If you have received this message in error, please 
inform us promptly by reply e-mail, then delete the e-mail and destroy any 
printed copy.   Thank you.
==

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215807
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: iframe with dynamic columns

2005-08-19 Thread Claude Schneegans
 I create a table with a dynamic list of column headers which in 
general will exceed the browser horizontal size.

May be CF_cornerTable could help you reduce the width.
Have a look at:
http://www.contentbox.com/claude/customtags/cornerTable/testCornerTable.cfm?p=hf


-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215808
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Why is Googlebot is creating Thousands of sessions?

2005-08-19 Thread Claude Schneegans
 It appears that Googlebot is crawling our website and opening a large
number of sessions.

It's probabilly because robots do not accept cookies.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215809
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: UDF local variables?

2005-08-19 Thread Damien McKenna
 Nope, those variables don't exist in any kind of container.  At least
 not a CFML-exposed one.  And be aware that arguments are DUPLICATED
 into the local variables scope, and still exist in the 'arguments'
 scope, as separate variables.

Ah, perfect, I did a test and can reference everything via 'arguments'.
Groovy.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215810
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Why is Googlebot is creating Thousands of sessions?

2005-08-19 Thread Matt Robertson
Yes you can do stuff like that. I have my error handler filter out 
bot-related errors and errors of certain types (like the infamous 
java.net.SocketException: Connection reset by peer:) so I am not bothered 
with them. Same thing could be applied here
 I keep a simple text file that holds a list of ill-behaved bots. I read it 
into an array and loop over the array looking for a match. If I get one...
 Since you are doing this on every page call it would make more sense to 
hold the bot list in an application variable, or maybe a db and just cache 
the botlist query for 10 minutes or so. That'd be even simpler.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com http://mysecretbase.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215811
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfchart issues... (sub domain)

2005-08-19 Thread Tony Weeg
thats not an option, but thanks for the info.

now, about the number of cached charts...

what was that?

tony

On 8/19/05, Michael Brake [EMAIL PROTECTED] wrote:
 Hey
 We just found an excellent alternative, as recommended by New Atlanta on 
 their FAQ about alternatives to cfchart.
 
 Product Site:
 http://www.infosoftglobal.com/FusionCharts/
 
 See their cf demo installed here : 
 http://secure.dev.casa.colostate.edu/applications/fc2%5F3%5Fcf/
 
 I prefer them to cfchart as they take no admin panel configuration.  I too 
 have run into the non-display error, which I found out was because of my 
 configuration for number of cached charts.
 
 Good luck
 Mike
 hi there.
 
 still battling the sub domain and the cfchart, where it just doesnt show the
 swf.  if you right click in the area where you should be able to see
 the chart...
 you see the normal right click context menu of any flash swf.  however its
 the chart is just not there. if i sniff the http headers, i see an object
 not found error.
 
 some of you suggested that i have a virtual directory
 under the subdomain, that is the /cfide directory under the
 server root (i tried all the CFIDE directories for that matter)
 and that didnt help.  any other ideas?
 
 http://reports.navtrak.net/test_reportLogGraph.cfm is the url.
 
 you can click on the top report, and you will see what i mean.
 
 IF i put this same file under www.navtrak.net, its all good.
 
 HELP :) if you can... thank you.
 
 --
 ...tony
 
 Tony Weeg
 tonyweeg [at] gmail [dot] com
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215812
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: UDF local variables?

2005-08-19 Thread Barney Boisvert
Just to be clear, are you saying that something like this works?  I
know it doesn't on CF6.1; perhaps that's different on CF7 (though I'd
be surprised)?

cffunction name=test
  cfargument name=arg1 /
  cfset var var1 = test /
  cfreturn arguments.var1 /
/cffunction

Or were you not actually looking for local variables, but rather for
arguments, and the fact that you can't reference local vars by a scope
is irrelevant?  Not to criticize your question, just want to make sure
all the facts are straight.

cheers,
barneyb

On 8/19/05, Damien McKenna [EMAIL PROTECTED] wrote:
  Nope, those variables don't exist in any kind of container.  At least
  not a CFML-exposed one.  And be aware that arguments are DUPLICATED
  into the local variables scope, and still exist in the 'arguments'
  scope, as separate variables.
 
 Ah, perfect, I did a test and can reference everything via 'arguments'.
 Groovy.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215813
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFLib Warning...

2005-08-19 Thread Raymond Camden
Folks, I'm fighting an issue with my mail server now, and some people
are getting duplicate copies of the weekly CFLIB email. I apologize
for this. More copies may still come as I fight the mail queue.

There is no need to email me to let me know about it.

If you want ot unsubscribe, as some folks have asked, I do ask that
you reconsider since this is just a one time glitch, but if you still
want to unsubscribe, please email me at [EMAIL PROTECTED]

Again - please forgive the dupes.

-- 
===
Raymond Camden, Director of Development for Mindseye, Inc (www.mindseye.com)

Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : ray.camdenfamily.com
Yahoo IM : cfjedimaster

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

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOT: One of our own gets even better

2005-08-19 Thread Dick Applebaum
Hey people

pardon the OT or SOT.

But, one of the really good guys on this list, rob rohan, is getting  
even better...

On Saturday, rob  the lovely K, will be married!

Congrats  the very best to both of you!

http://67.124.145.42/look/


Dick

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215816
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFINDEX - how to add/update a single record in an existing collection?

2005-08-19 Thread Pete Ruckelshaus
Sometimes, no, make that usually, Macromedia's documentation for CF
just barely scratches the surface.

I have an existing collection that is populated from a query.  The
data returned from this query gets updated quite often.  In order to
allow accurate searches, I would like to add (for new records) or
update a record in a collection from query data...actually, I'll be
passing the data in via a CFC...

Is there a way to do this?  Here is the original tag call to populate
the collection:

cfindex action=UPDATE collection=coll_datacards type=CUSTOM
key=id title=name query=getDatacardsForIndexing body=name,
cardcontent, metadata

So, in order to do this, would I do something like:

cfindex action=UPDATE collection=coll_datacards type=CUSTOM
key=#arguments.id# title=#arguments.name# body=#arguments.name#,
#arguments.cardcontent#, #arguments.metadata#

(note that I omitted the query attribute).  Would this update just a
single record in the coll_datacards collection?

Thanks,

Pete

PS Is it time to create an Undocumented CF web site?  If there's
enough interest and enough content, I'm willing to start this as a
project...I just know that between things like cfcollection (and
related tags), cfdocument, cfchart, and more that there's a lot of
stuff that Macromedia doesn't cover in their docs.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Variable or CFFILE issue

2005-08-19 Thread David Critchley
I've tried to do a little digging, but with little success.  Im looking for the 
Max Size of a file that the CFFILE tag (Or could be the variable) can handle.  
We regularily parse large files (larger than 10mb some upwards around 100mb).  
Currently we have been splitting the file into sections using UNIX, however 
this is tedious, and is a poor fix for the problem.  Any info you could provide 
would probably help, or just point me towards the documentation.

Thanks,
Dave

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215817
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Parsing iTunes xml file

2005-08-19 Thread Marlon Moyer
Well, to answer my own question.  It looks like java.io.filereader
will do the trick:

Example code below stolen from someones blog entry:

cfscript
fileAsString = ;
fileReader = createObject(java, java.io.FileReader);
fileReader.init(myFile);
bufferedReader = createObject(java, java.io.BufferedReader);
bufferedReader.init(fileReader);
try {
   do {
  fileAsString = bufferedReader.readLine();
  processLine(fileAsString);
   } while (true);
} catch (coldfusion.runtime.UndefinedVariableException e) {
// this indicates end of file, ok to ignore error
}
/cfscript


On 8/19/05, Marlon Moyer [EMAIL PROTECTED] wrote:
 iTunes will tell you the duplicates, it won't tell you files that are
 missing until you try to play them.  I also want to compare files that
 may be in the iTunes directory, but may not be in the iTunes xml file.
 
 Ephpod?  EPHPOD!  Where's the fun in using that :)
 
 
 
 On 8/19/05, Robertson-Ravo, Neil (RX)
 [EMAIL PROTECTED] wrote:
  Doesn't iTunes do this for you? Or EpPhod?
 
 
 
 
 


-- 
Marlon

A mulatto, an albino, a mosquito, my libido

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215818
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Variable or CFFILE issue

2005-08-19 Thread Dave.Phillips
Have you found a limit?  I would think it would depend mostly upon how much RAM 
you have on you server.  The more RAM you have, the larger the file you could 
read in with CFFILE.

Maybe someone else can expound more on this? Now you've got me curious.

Dave

-Original Message-
From: David Critchley [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 2:37 PM
To: CF-Talk
Subject: Variable or CFFILE issue


I've tried to do a little digging, but with little success.  Im looking for the 
Max Size of a file that the CFFILE tag (Or could be the variable) can handle.  
We regularily parse large files (larger than 10mb some upwards around 100mb).  
Currently we have been splitting the file into sections using UNIX, however 
this is tedious, and is a poor fix for the problem.  Any info you could provide 
would probably help, or just point me towards the documentation.

Thanks,
Dave
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfindex/cfsearch help with dates

2005-08-19 Thread Pete Ruckelshaus
Here's what I do.  I file this under the category elegant hack.

The content that I want to index resides in a table.  To
over-simplify, the table contains a numeric identifier (key), text and
date fields.

I create a collection that indexes just text search terms (i.e. just
the text fields).

I have an advanced search interface.  If the text field is a Verity
term (I created a UDF that determines if the search is Verity or not),
I search against my collection and return a resultset of just keys.  I
then create a list of those keys.  Finally, I pass that list of keys
(I return a max of 1,000) in to a standard SQL query IN statement
within the WHERE clause that filters the other defined parameters of
the SQL query (including any date logic).

Works great, I don't have to be limited by having only 4 CUSTOM
fields, it gives me far more search flexibility, and it only adds a
bit of overhead to the verity search.

Pete

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215820
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Changing email address

2005-08-19 Thread David Critchley
How does one change their email address for the mail list?  My old email 
account is no longer active.  I've tried changing it in my settings here, but 
it still retains the old email address after I have changed it.  I did a search 
and someone else had this problem, but it looks as though this was never 
resolved.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215821
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFINDEX - how to add/update a single record in an existing collection?

2005-08-19 Thread Dave.Phillips
Pete,

Actually, you would just execute a CFQUERY that would return that one record, 
and as long as your KEY is the same, issue your cfindex just like you would if 
you were indexing a query with 1,000 records.  

cfquery name=getNewDataCardForIndexing
select [your fields] 
from [your table]
where [your criteria to return just the new record]
/cfquery
cfindex action=UPDATE collection=coll_datacards type=CUSTOM
key=id title=name query=getNewDataCardForIndexing body=name,
cardcontent, metadata

That's all you need to do.  Now, you could also build the query dynamically if 
you don't want to re-query your databse, using the query functions.

HTH,

Dave



-Original Message-
From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]
Sent: Friday, August 19, 2005 2:31 PM
To: CF-Talk
Subject: CFINDEX - how to add/update a single record in an existing
collection?


Sometimes, no, make that usually, Macromedia's documentation for CF
just barely scratches the surface.

I have an existing collection that is populated from a query.  The
data returned from this query gets updated quite often.  In order to
allow accurate searches, I would like to add (for new records) or
update a record in a collection from query data...actually, I'll be
passing the data in via a CFC...

Is there a way to do this?  Here is the original tag call to populate
the collection:

cfindex action=UPDATE collection=coll_datacards type=CUSTOM
key=id title=name query=getDatacardsForIndexing body=name,
cardcontent, metadata

So, in order to do this, would I do something like:

cfindex action=UPDATE collection=coll_datacards type=CUSTOM
key=#arguments.id# title=#arguments.name# body=#arguments.name#,
#arguments.cardcontent#, #arguments.metadata#

(note that I omitted the query attribute).  Would this update just a
single record in the coll_datacards collection?

Thanks,

Pete

PS Is it time to create an Undocumented CF web site?  If there's
enough interest and enough content, I'm willing to start this as a
project...I just know that between things like cfcollection (and
related tags), cfdocument, cfchart, and more that there's a lot of
stuff that Macromedia doesn't cover in their docs.
**
The information contained in this message, including attachments, may contain 
privileged or confidential information that is intended to be delivered only to 
the 
person identified above. If you are not the intended recipient, or the person 
responsible for delivering this message to the intended recipient, ALLTEL 
requests 
that you immediately notify the sender and asks that you do not read the 
message or its 
attachments, and that you delete them without copying or sending them to anyone 
else. 


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215822
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Variable or CFFILE issue

2005-08-19 Thread David Critchley
We tried running CFFILE on a 72mb file and it died.  Our server currently has 
4gb of RAM and 2 processors, all of this is dedicated to my work only, so this 
was the only large process running on the server at the time.  Tried several 
times without success to get it to work.

Dave C

 Have you found a limit?  I would think it would depend mostly upon how 
 much RAM you have on you server.  The more RAM you have, the larger 
 the file you could read in with CFFILE.
 
 Maybe someone else can expound more on this? Now you've got me curious.
 
 
 Dave
 
 -Original Message-
 From: David Critchley [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 2:37 PM
 To: CF-Talk
 Subject: Variable or CFFILE issue
 
 
 I've tried to do a little digging, but with little success.  Im 
 looking for the Max Size of a file that the CFFILE tag (Or could be 
 the variable) can handle.  We regularily parse large files (larger 
 than 10mb some upwards around 100mb).  Currently we have been 
 splitting the file into sections using UNIX, however this is tedious, 
 and is a poor fix for the problem.  Any info you could provide would 
 probably help, or just point me towards the documentation.
 
 Thanks,
 Dave
* 
*
 The information contained in this message, including attachments, may 
 contain 
 privileged or confidential information that is intended to be 
 delivered only to the 
 person identified above. If you are not the intended recipient, or the 
 person 
 responsible for delivering this message to the intended recipient, 
 ALLTEL requests 
 that you immediately notify the sender and asks that you do not read 
 the message or its 
 attachments, and that you delete them without copying or sending them 
 to anyone else. 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215823
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFEclipse, user.xml and the closing tag

2005-08-19 Thread Johnny Le
Hi,

I am editing the user.xml file of the CFEclipse 1.2 plugin to add my own tags 
to it, but it doesn't matter what I do, I can't get it to add the closing tag 
for me.  For example: when I type cfoutput, /cfoutput would automatically 
added, but when I type my own custom tag.  No end/closing tag is added.

Johnny

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Changing email address

2005-08-19 Thread Michael Dinowitz
I've been tied up with a disaster or two and as soon as the smoke clears a bit, 
I'll rewrite the sign in again. Till then, send me the changes you want. 

Sorry for the delay, but the host that was providing free hosting for 
cfregex.com, cftips.com, and some of my other resources asked me to move them 
and pulled the plug. I'm moving all the equipment/domains over to AHPHosting 
(http://www.ahphosting.com) who's been providing the House of Fusion / Fusion 
Authority hosting for the last 7 or 8 years (free as a community resource).

BTW, If anyone knows of a sponsor who'd like to support me for a month while I 
make the move, please let me know. The upside of sponsorship is lots of great 
publicity and community support. 

Again, sorry for the delay in getting this fixed. 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINDEX - how to add/update a single record in an existing collection?

2005-08-19 Thread Raymond Camden
Yes, it would work. (or should work - yell at me if it doesnt)

On 8/19/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote:
 Sometimes, no, make that usually, Macromedia's documentation for CF
 just barely scratches the surface.
 
 I have an existing collection that is populated from a query.  The
 data returned from this query gets updated quite often.  In order to
 allow accurate searches, I would like to add (for new records) or
 update a record in a collection from query data...actually, I'll be
 passing the data in via a CFC...
 
 Is there a way to do this?  Here is the original tag call to populate
 the collection:
 
 cfindex action=UPDATE collection=coll_datacards type=CUSTOM
 key=id title=name query=getDatacardsForIndexing body=name,
 cardcontent, metadata
 
 So, in order to do this, would I do something like:
 
 cfindex action=UPDATE collection=coll_datacards type=CUSTOM
 key=#arguments.id# title=#arguments.name# body=#arguments.name#,
 #arguments.cardcontent#, #arguments.metadata#
 
 (note that I omitted the query attribute).  Would this update just a
 single record in the coll_datacards collection?
 
 Thanks,
 
 Pete
 
 PS Is it time to create an Undocumented CF web site?  If there's
 enough interest and enough content, I'm willing to start this as a
 project...I just know that between things like cfcollection (and
 related tags), cfdocument, cfchart, and more that there's a lot of
 stuff that Macromedia doesn't cover in their docs.
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


updating a query in memory

2005-08-19 Thread Rick Root
My application loads some data from a query into memory.

Sometimes, I have a need to update this data, and usually what happens 
is that I update the base tables, then rerun the query.

Unfortunately, it's a lot of data and I'd prefer NOT to re-run the query.

Is there a way to update a query in memory?  I think I tried using an 
update statement in a query of queries but it didn't work.

Rick


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Variable or CFFILE issue

2005-08-19 Thread Marlon Moyer
Might I direct you to the post about parsing the iTunes xml file as
that could be a solution to your problem.

On 8/19/05, David Critchley [EMAIL PROTECTED] wrote:
 We tried running CFFILE on a 72mb file and it died.  Our server currently has 
 4gb of RAM and 2 processors, all of this is dedicated to my work only, so 
 this was the only large process running on the server at the time.  Tried 
 several times without success to get it to work.
 
 Dave C
 
  Have you found a limit?  I would think it would depend mostly upon how
  much RAM you have on you server.  The more RAM you have, the larger
  the file you could read in with CFFILE.
 
  Maybe someone else can expound more on this? Now you've got me curious.
 
 
  Dave
 
  -Original Message-
  From: David Critchley [mailto:[EMAIL PROTECTED]
  Sent: Friday, August 19, 2005 2:37 PM
  To: CF-Talk
  Subject: Variable or CFFILE issue
 
 
  I've tried to do a little digging, but with little success.  Im
  looking for the Max Size of a file that the CFFILE tag (Or could be
  the variable) can handle.  We regularily parse large files (larger
  than 10mb some upwards around 100mb).  Currently we have been
  splitting the file into sections using UNIX, however this is tedious,
  and is a poor fix for the problem.  Any info you could provide would
  probably help, or just point me towards the documentation.
 
  Thanks,
  Dave
 * 
 *
  The information contained in this message, including attachments, may
  contain
  privileged or confidential information that is intended to be
  delivered only to the
  person identified above. If you are not the intended recipient, or the
  person
  responsible for delivering this message to the intended recipient,
  ALLTEL requests
  that you immediately notify the sender and asks that you do not read
  the message or its
  attachments, and that you delete them without copying or sending them
  to anyone else.
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215828
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: One of our own gets even better

2005-08-19 Thread Jim Davis
 -Original Message-
 From: Dick Applebaum [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 2:32 PM
 To: CF-Talk
 Subject: SOT: One of our own gets even better
 
 Hey people
 
 pardon the OT or SOT.
 
 But, one of the really good guys on this list, rob rohan, is getting
 even better...
 
 On Saturday, rob  the lovely K, will be married!
 
 Congrats  the very best to both of you!
 
 http://67.124.145.42/look/

Congrats!

There's nothing like the love of a good woman.  Hell, even the love of a bad
woman can be pretty damn as well!

Jim Davis





~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFEclipse, user.xml and the closing tag

2005-08-19 Thread Barney Boisvert
There are definitely some issues with closing tags in 1.2.  I upgraded
to 1.2 last night (from the latest 1.1.18 nightly from Spike), and I
can't get ANY closing tags to be auto inserted. But I expect now that
they're done with the initial infrastructure work, they'll get back to
code development and some bug fixes.

Also, if you're running Eclipse 3.0, rather than 3.1, you might try an upgrade.

cheers,
barneyb

On 8/19/05, Johnny Le [EMAIL PROTECTED] wrote:
 Hi,
 
 I am editing the user.xml file of the CFEclipse 1.2 plugin to add my own tags 
 to it, but it doesn't matter what I do, I can't get it to add the closing tag 
 for me.  For example: when I type cfoutput, /cfoutput would automatically 
 added, but when I type my own custom tag.  No end/closing tag is added.
 
 Johnny
 
 
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFEclipse, user.xml and the closing tag

2005-08-19 Thread Johnny Le
Yah, if you run 3.0, you would definitely not get any closing tags, but if you 
run 3.1, you should get all of your closing tags.  My problem here is my custom 
tags, not the built-in CFML tags.  I thought by adding single=false, I would 
get the closing tag, but it doesn't do it.

The other problem I have is that I don't have any options for attributes for 
CFML tags, but they work for HTML tags.  Weird bug!

Johnny

 There are definitely some issues with closing tags in 1.2.  I 
 upgraded
 to 1.2 last night (from the latest 1.1.18 nightly from Spike), and I
 can't get ANY closing tags to be auto inserted. But I expect now that
 they're done with the initial infrastructure work, they'll get back 
 to
 code development and some bug fixes.
 
 Also, if you're running Eclipse 3.0, rather than 3.1, you might try an 
 upgrade.
 
 cheers,
 barneyb
 
 On 8/19/05, Johnny Le [EMAIL PROTECTED] wrote:
  Hi,
  
  I am editing the user.xml file of the CFEclipse 1.2 plugin to add my 
 own tags to it, but it doesn't matter what I do, I can't get it to add 
 the closing tag for me.  For example: when I type cfoutput, 
 /cfoutput would automatically added, but when I type my own custom 
 tag.  No end/closing tag is added.
  
  Johnny
  
  
 -- 
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215831
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFEclipse, user.xml and the closing tag

2005-08-19 Thread Barney Boisvert
Did you make sure and restart the workbench after you change the XML? 
I believe it's only loaded once at startup, so it won't see changes.

On 8/19/05, Johnny Le [EMAIL PROTECTED] wrote:
 Yah, if you run 3.0, you would definitely not get any closing tags, but if 
 you run 3.1, you should get all of your closing tags.  My problem here is my 
 custom tags, not the built-in CFML tags.  I thought by adding single=false, 
 I would get the closing tag, but it doesn't do it.
 
 The other problem I have is that I don't have any options for attributes for 
 CFML tags, but they work for HTML tags.  Weird bug!
 
 Johnny
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215832
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFEclipse, user.xml and the closing tag

2005-08-19 Thread Johnny Le
Yep, I did and I get all the attributes to pop up correctly.  Just the closing 
tag doesn't automatically add in.

Johnny

 Did you make sure and restart the workbench after you change the XML? 
 
 I believe it's only loaded once at startup, so it won't see changes.
 
 On 8/19/05, Johnny Le [EMAIL PROTECTED] wrote:
  Yah, if you run 3.0, you would definitely not get any closing tags, 
 but if you run 3.1, you should get all of your closing tags.  My 
 problem here is my custom tags, not the built-in CFML tags.  I thought 
 by adding single=false, I would get the closing tag, but it doesn't 
 do it.
  
  The other problem I have is that I don't have any options for 
 attributes for CFML tags, but they work for HTML tags.  Weird bug!
  
  Johnny
  
 
 -- 
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215833
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINDEX - how to add/update a single record in an existing collection?

2005-08-19 Thread S . Isaac Dealey
 PS Is it time to create an Undocumented CF web site?  If
 there's
 enough interest and enough content, I'm willing to start
 this as a
 project...I just know that between things like
 cfcollection (and
 related tags), cfdocument, cfchart, and more that there's
 a lot of
 stuff that Macromedia doesn't cover in their docs.

It's probably more apprproiate to add comments about these things to
the livedocs on the MM site. Some livedocs comments are adopted into
the documentation, others are not (serviceFactory info for instance).

http://livedocs.macromedia.com

s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215834
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: .NET suggestions

2005-08-19 Thread Micha Schopman
Tom,
 
There are several very good books available to get you started. ASP.NET Website 
Programming by Marco Bellinaso and Kevin Hoffman is a good book covering the 
basics of the framework.
 
Iit assumes you know a fair deal of c# and starts with building a foundation 
for further use throughout the book, and then covering 3 tier development, io 
operations by building a file manager, database operations by building a 
portal, basic security foundations for .NET, and in the end you will have build 
a complete portal with user management, forums, a blog, and file management. It 
also addresses aspects like caching techniques, webservices, xslt etc.
 
A good start for the newcomer. The most difficult part I experienced in the 
learning process was to figure out, if what I wanted to do was already 
available in the .NET framework. There is just so much to find out, but it is 
real fun and development speed is very high.
 
Micha
 
 



From: Tom McNeer [mailto:[EMAIL PROTECTED]
Sent: Fri 8/19/2005 5:21 PM
To: CF-Talk
Subject: Re: .NET suggestions



To Kevin and Matthew --

Thanks for the references.

To others, particularly Matt, since he's the one who raised the real issue --

I'm well aware of BD .NET and its advantages. I've had lunch with
Charlie Arehart and Brian O'Reilly. (And for that matter, Brian called
me a few minutes ago because of this post).

But while I wouldn't characterize the situation exactly as Matt did,
it does seem (at the moment) as if the determination is that the CF
code base will be replaced. I intend to discuss Blue Dragon as an
option with this client. But my current guess is that he will choose
to rewrite the applications to eliminate the CFML.

If that's the final decision, then we will need to be writing C#, I guess.

And if we get to that point -- does anyone else have any other
suggestions for the best books/courses/online resources?


--
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215835
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFINDEX - how to add/update a single record in an existing collection?

2005-08-19 Thread Raymond Camden
Dave, I'm pretty sure, in MX7 at least, you don't need to make a one
record query. You can just pass the values. Of course, if you already
have the one record query, that would work.

On 8/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Pete,
 
 Actually, you would just execute a CFQUERY that would return that one record, 
 and as long as your KEY is the same, issue your cfindex just like you would 
 if you were indexing a query with 1,000 records.
 
 cfquery name=getNewDataCardForIndexing
 select [your fields]
 from [your table]
 where [your criteria to return just the new record]
 /cfquery
 cfindex action=UPDATE collection=coll_datacards type=CUSTOM
 key=id title=name query=getNewDataCardForIndexing body=name,
 cardcontent, metadata
 
 That's all you need to do.  Now, you could also build the query dynamically 
 if you don't want to re-query your databse, using the query functions.
 
 HTH,
 
 Dave
 
 
 
 -Original Message-
 From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]
 Sent: Friday, August 19, 2005 2:31 PM
 To: CF-Talk
 Subject: CFINDEX - how to add/update a single record in an existing
 collection?
 
 
 Sometimes, no, make that usually, Macromedia's documentation for CF
 just barely scratches the surface.
 
 I have an existing collection that is populated from a query.  The
 data returned from this query gets updated quite often.  In order to
 allow accurate searches, I would like to add (for new records) or
 update a record in a collection from query data...actually, I'll be
 passing the data in via a CFC...
 
 Is there a way to do this?  Here is the original tag call to populate
 the collection:
 
 cfindex action=UPDATE collection=coll_datacards type=CUSTOM
 key=id title=name query=getDatacardsForIndexing body=name,
 cardcontent, metadata
 
 So, in order to do this, would I do something like:
 
 cfindex action=UPDATE collection=coll_datacards type=CUSTOM
 key=#arguments.id# title=#arguments.name# body=#arguments.name#,
 #arguments.cardcontent#, #arguments.metadata#
 
 (note that I omitted the query attribute).  Would this update just a
 single record in the coll_datacards collection?
 
 Thanks,
 
 Pete
 
 PS Is it time to create an Undocumented CF web site?  If there's
 enough interest and enough content, I'm willing to start this as a
 project...I just know that between things like cfcollection (and
 related tags), cfdocument, cfchart, and more that there's a lot of
 stuff that Macromedia doesn't cover in their docs.
 **
 The information contained in this message, including attachments, may contain
 privileged or confidential information that is intended to be delivered only 
 to the
 person identified above. If you are not the intended recipient, or the person
 responsible for delivering this message to the intended recipient, ALLTEL 
 requests
 that you immediately notify the sender and asks that you do not read the 
 message or its
 attachments, and that you delete them without copying or sending them to 
 anyone else.
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215836
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: updating a query in memory

2005-08-19 Thread Dawson, Michael
I think you will just need to loop over the query using array notation. 

Then use querySetCell().

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 19, 2005 1:59 PM
To: CF-Talk
Subject: updating a query in memory

My application loads some data from a query into memory.

Sometimes, I have a need to update this data, and usually what happens
is that I update the base tables, then rerun the query.

Unfortunately, it's a lot of data and I'd prefer NOT to re-run the
query.

Is there a way to update a query in memory?  I think I tried using an
update statement in a query of queries but it didn't work.

Rick


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215837
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Variable or CFFILE issue

2005-08-19 Thread David Critchley
Thanks, I will have to try that when I get a chance to.


Might I direct you to the post about parsing the iTunes xml file as
that could be a solution to your problem.

On 8/19/05, David Critchley [EMAIL PROTECTED] wrote:


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215838
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: .NET suggestions

2005-08-19 Thread Tom McNeer
Charles -- Thanks, I had forgotten about that comparison. A little
outdated, but helpful.

And Micha --

 Iit assumes you know a fair deal of c# 

 but if I don't? (which I don't yet, though I'd rather learn C#
than VBScript).

-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
530 Means St NW, Suite 110
Atlanta, GA 30318
404.589.0560

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215839
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >