Re: ColdFusion Tech Talk (CF-Talk): Digest every 2 hours

2006-04-03 Thread Cutter (CF-Talk)
Just curious, but why would you val() the myVar when you already have it 
set as a numeric value? (since it isn't set in quotes then it wouldn't 
be considered a string, right?) Not sure about your test there. Haven't 
really seen this isValid() function yet...

Cutter

Tim Lux wrote:
 Small typo in the cfoutput section. it should be myVar, not myVal.
 
 On 4/2/06, Tim Lux [EMAIL PROTECTED] wrote:
 
Re: isValid().

I noticed a strange situtation with isValid.

Try this and see if it works on your install:

cfset myVar = 3
cfset myVar = VAL(myVar) !--- VAL, by definition, takes a string
and returns a number ---
cfoutput#isValid(integer,myVal)#/cfoutput

I get NO for the above CFOUTPUT.

Tim

 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236844
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: Update on eolas/cfform/cfchart fixes

2006-03-30 Thread Cutter (CF-Talk)
At work, we have found this workaround to be highly flexible:
http://blog.deconcept.com/flashobject/

Cutter

Anthony Prato wrote:

let me start by saying please don't post in this thread about
IE/ActiveX being good or bad. Yes most of us hate it, but this change
is coming in less than 2 weeks.

I've been to the Active Content Center.
http://www.macromedia.com/devnet/activecontent/

Unfortunately it does not provide any fixes for the flash
automatically generated by Coldfusion. Nor does it provide any info on
a forthcoming fix. Can someone from Adobe please respond to this! I'm
amazed I have to say this, but I think Dave is wrong. :p  From
everything i have read the change will be included in a security
update on April 11. This means people WILL install it. Most
organizations have become very diligent in installing these security
patches.

I downloaded the IE update to test myself and all the CF generated
flash loads inactive. I've already rewritten the code to display my
cfdocuments using the Microsoft workaround example. (document.write()
in included javascript) However, cfdocument is easy because it will
leave the actual flash/pdf binary in its place. When CF processes a
cfform tag it only leaves the html to load the flash in its place.
Because of this I do not know how to use and of the included
JavaScript workarounds for flash forms. Has anyone found a workaround?
Can someone from Adobe comment?



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236586
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


Building a string

2006-03-08 Thread Cutter (CF-Talk)
OK, I've got one that has me stumped.
I am in the process of building a text string to be passed into a plain 
text email, which will later be parsed according to it's line breaks. 
Not building within the cfmail tags (because that's a nightmare in it's 
own right) but within a variable:

cfset msgBody = Here's the start.#chr(13)##chr(10)#
cfset msgBody = msgBody  A little more here.#chr(13)##chr(10)#
cfloop list=#form.fieldnames# index=x
 cfif not listfindnocase(listexclude,x)
 cfset msgBody = msgBody  replace(x,_, ,all)  : 
 cfif form[x] neq 
 cfset msgBody = msgBody  form[x]
 cfelse
 cfset msgBody = msgBody  (not required and empty)
 /cfif
 cfset msgBody = msgBody  #chr(13)##chr(10)#
  /cfif
/cfloop

My problem is, sometimes I don't get line breaks. There does not appear 
to be any rhyme nor reason, it just happens. I'm still getting my 
fieldnames and values (or lack of) for all fields, just, on occasion, 
without warning or reason, I lose my linebreaks. Not always. 18 fields 
and it might lose it for two or three, but they justdon't appear.

Anyone?

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234639
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: Building a string

2006-03-08 Thread Cutter (CF-Talk)
I appreciate everyone's assistance. Turns out that Outlook (I hate it, 
but am required to use it for my work email) was removing what it deemed 
'extra line breaks'.

Cutter

Josh Nathanson wrote:

Hey Cutter, not sure if this will help but it's worth a try:

cfset linebreak = #chr(13)#  #chr(10)#

Then replace where you have #chr(13)##chr(10)# with #linebreak#.  Not sure 
if that will work but it might help with the consistency issue.

-- Josh


- Original Message - 
From: Cutter (CF-Talk) [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, March 08, 2006 8:36 AM
Subject: Building a string


  

OK, I've got one that has me stumped.
I am in the process of building a text string to be passed into a plain
text email, which will later be parsed according to it's line breaks.
Not building within the cfmail tags (because that's a nightmare in it's
own right) but within a variable:

cfset msgBody = Here's the start.#chr(13)##chr(10)#
cfset msgBody = msgBody  A little more here.#chr(13)##chr(10)#
cfloop list=#form.fieldnames# index=x
cfif not listfindnocase(listexclude,x)
cfset msgBody = msgBody  replace(x,_, ,all)  : 
cfif form[x] neq 
cfset msgBody = msgBody  form[x]
cfelse
cfset msgBody = msgBody  (not required and empty)
/cfif
cfset msgBody = msgBody  #chr(13)##chr(10)#
 /cfif
/cfloop

My problem is, sometimes I don't get line breaks. There does not appear
to be any rhyme nor reason, it just happens. I'm still getting my
fieldnames and values (or lack of) for all fields, just, on occasion,
without warning or reason, I lose my linebreaks. Not always. 18 fields
and it might lose it for two or three, but they justdon't appear.

Anyone?

Cutter







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234685
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: is this thing on?

2006-03-07 Thread Cutter (CF-Talk)
Bryan,

I have four messages (including yours) from this list since 11AM EST.

Cutter

Bryan Stevenson wrote:
 I just don't know what to do when my inbox doesn't flood with CF_Talk mail 
 first thing in the morning ;-)
 
 I take there is a list problem?
 
 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
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234502
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: Coldfusion online photo gallery creator?

2006-03-07 Thread Cutter (CF-Talk)
BellaAlbum

Andy Matthews wrote:

Does anyone know of a free CF photo gallery creator? I googled for it last
night but didn't see anything.



!//--
andy matthews
web developer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234507
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: Date Validation Three Digit Year

2006-03-07 Thread Cutter (CF-Talk)
This is a matter of preference (and I'm sure there are others here who 
might agree with me), but the validation code provided by the cfform 
tags is abismal. Roll your own.

Cutter

[EMAIL PROTECTED] wrote:

I've got an interesting form date validation problem. I'm using the
standard built in cfinput date validation code.

 

cfinput type=Text name=EDate value= 

message=Please enter a valid end date (mm/dd/) validate=date
required=No maxlength=10

 

I'm also using CreateODBCDate and cfQueryParam in the query

 

End_Date = cfqueryPARAM value = #CreateODBCDate(form.EDate)#
cfsqltype=CF_SQL_DATE

 

My problem is that if a user enters a year less than 1000 (01/01/500),
it gets through the CF validation but errors at the SQL level. The SQL
Server settings are not available to me. I wan't to avoid adding
JavaScript or doing anything server side. Are there any other
possibilities?

 

Lee Surma

 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234508
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: onRequestStart question.....

2006-03-02 Thread Cutter (CF-Talk)
Maybe something like:

cfset variables.fileExclusionList = myFile1.cfm,
myFile2.cfm,
myFile3.cfm,
myFile4.cfm
cfif 
listfindnocase(variables.fileExclusionList,getfilefrompath(cgi.path_translated),,)
 
eq 0
cfinclude template=myHeaderFile.cfm
/cfif


Cutter

Tony wrote:
 might be dumb, but this is what i would do.
 
 cffunction name=onRequestStart returnType=boolean output=true
 cfif NOT (cgi.script_name contains yourFilename1 or
 cgi.script_name contains yourFileName1)
  !--- Display our Site Header at top of every page ---
  cfinclude template=SiteHeader.cfm
  cfreturn true
 cfelse
  !--- DO NOT Display our Site Header at top of every page ---
  cfreturn true
 /cfif
 /cffunction
 
 tw
 
 
 On 3/1/06, Les Mizzell [EMAIL PROTECTED] wrote:
 
I'm using the below to call the header for all the main pages in a site:

cffunction name=onRequestStart returnType=boolean output=true
   !--- Display our Site Header at top of every page ---
   cfinclude template=SiteHeader.cfm
   cfreturn true
/cffunction

Suddenly, I find I've got maybe one of two pages where I do *NOT* want
to call that specific header. Is there a good way to EXCLUDE a page from
using that header, but keep it in the same directory as all the others?


 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233887
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: MM Menu

2006-02-23 Thread Cutter (CF-Talk)
If I remember correctly there is a tutorial included with Flash to do 
just what you are asking (all components included), but that may have 
been in a previous version

Cutter

Oðuz_Demirkapý wrote:
 Hi,
 
 I am looking for a Flash menu like in MM website.
 
 I have found one in 123 Flash Menu program but this has all links direct in
 flash file included and this is not useful for my case.
 
 I need one which can use an XML file or an external list for menu items and
 links. I need to create this menu from my datasource by using CF.
 
 TIA!
 
 Oguz Demirkapi
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233224
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: OT: embedding audio and playing with javascript

2006-02-22 Thread Cutter (CF-Talk)
The following blog entry from Christian Cantrell may be able to shed 
some light for you Rick...

http://weblogs.macromedia.com/cantrell/archives/2005/06/flash_js_integr.cfm

Cutter

Rick Root wrote:

so, I'd like to add optional audio alerts to my chat app... and I did 
that using the embed tag and just had the javascript play the sound 
when appropriate.  I used .au files for the audio.

Some people surfed in and got the quicktime plugin alert because they 
were using mozilla and didn't have quicktime installed.  I know *I* 
would find that to be obnoxious.

I was thinking that using a flash movie to play the sounds might work 
better.. more likely to be installed.  Javascript can cause actions to 
occur in flash movies, right?

I've used actionscript to call javascript functions on a page before, 
but never used javascript to trigger an event in the flash movie.

Ultimately, I'd just like a little 1x1 flash movie that could play 2-3 
sounds.. which would be configurable via url parameter to the flash 
movie itself... and then allow javascript to play the different sounds 
by calling some kind of actionscript method... playSound(1) playsound(2) 
etc.

Rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233083
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: Help! Error in OnSessionEnd in Application.cfc

2006-02-22 Thread Cutter (CF-Talk)
I could be wrong, but I thought all argument attribute values had to be 
quoted?...

Cutter

[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

This one is baffling me. I have an app with session management enbabled. The 
onSessionEnd function has NO CODE in it whatsoever. It is there so I do not 
get a method not found error when sessions end. I am NOT calling this 
explicitly - it gets called by CF when a session expires.

Every time the OnSessionEnd function fires, I get this error:

An exception occurred when invoking a event handler method from 
Application.cfc The method name is: onSessionEnd.

The StackTrace shows this: java.lang.NullPointerException at 
coldfusion.runtime.AppEventInvoker.onSessionEnd(AppEventInvoker.java:145)


Here is the EXACT code for the onSessionEnd function:

[cffunction name=onSessionEnd]
   [cfargument name=SessionScope required=True/]
   [cfargument name=ApplicationScope required=False/]
   
[/cffunction]

I even added a simple [cfset x=1] in the function body thinking that an empty 
function body would cause the error - no luck.

Any ideas?



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:233147
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


cffile copy

2006-02-14 Thread Cutter (CF-Talk)
OK, rewriting some old code here, and I have a question.

I'm seeing two different things happening here. In one instance it says 
cffile action='copy' source='#thefullsourcefilepath#' 
destination='#afulldestinationpathwithfilename#'

in another instance it reads like
cffile action='copy' source='#thefullsourcefilepath# 
destination='#justapathwithoutafilename#'

and yet another instance reads
cffile action='copy' source='#thefullsourcefilepath#' 
destination='#justapathwithoutafilename#'
cffile action='rename' source='#thisnewfilepathandname#' 
destination='#samepathwithnewfilename#'

It seems to me that the first option makes the most sense. LiveDocs says 
that action='copy' can take just a path or a path with filename for the 
destination attribute, but if the intent of the code is to rename the 
file in the new location anyway then option 1 seems like the best option.

Anybody have any insight here. I'm starting to get confused

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232264
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: SOT: Ajax and server-side errors

2006-02-13 Thread Cutter (CF-Talk)
What's wrong with catching every possible error? (just asking...)

Cutter

Rick Root wrote:

I've been playing with CFAJAX a little bit today and I have a question.

Let's say my coldfusion code on the back end causes an untrapped 
exception.  Perhaps the server gets overloaded or I've made a typo in 
some code that rarely executes.

How does cfajax handle that?  Obviously, the result function is never 
called, and no error is sent back to the browser to indicate something 
went wrong.

Aside from using try/catch everywhere and catching every possible error, 
is there any way that the javascript side of things can tell when the 
xmlhttp call failed?

Thanks.

Rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232127
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: OpenSource Business Services Call For Comments

2006-02-10 Thread Cutter (CF-Talk)
Has anyone responded to this besides me?

Cutter

Andy wrote:
 Call for comments.  This link is to a first cut at a design document for the
 Open Source Business Services.  
 http://www.omygoodness.com/osbsv1.doc
  
 Any and all comments are appreciated, ranging from you are missing this
 whole section, to that won't work because..., even here is something on
 this area that you can adapt.  Also, if anyone has a block of design
 considerations that can provide some framework for use of CSS, I'd really
 appreciate it.  I am especially clueless in this area.
  
 Email me off list, on list, update the doc directly and send to me, whatever
 technique works for you
  
 Thanks.
  
 Andy

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231911
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: A way to set a dynamic anchor in a div?

2006-02-09 Thread Cutter (CF-Talk)
Rick,

I don't know if this will work, you might want to look at which html 
elements can actually take this function, but I would suggest that you 
assign your 'anchored' element an id and then write a js function to 
focus() on the element. Then you could call the js function from where 
ever you would usually place your anchor call (i.e.:
a href=javascript:void(0); 
onclick=anchorFunction(anchoredElementID);link to anchor/a

Cutter

Rick Faircloth wrote:
 Hi, all...
 
 I'm working on an web-based office application,
 so I'm trying to put as much functionality on a single
 screen as possible.
 
 I've using scrolling div's for areas to add, update, and
 delete
 content.
 
 Everythings going well except for trying to place an anchor
 inside a div for client contact entries.
 
 I think I'm coding everything correctly...I've done this
 before,
 but the anchor was on a full page of html, not in a
 particular div.
 
 Is there some way I can target the anchor to affect the
 content
 in a particular div?  I think that's why the anchor's not
 working,
 because it's not an anchor for the whole HTML page, just the
 content in that particular div.
 
 It's a dynamic CF-generated anchor, but I've done that
 before, too.
 
 The div just seems to ignore the anchor...
 
 Ideas?
 
 Rick
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231746
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: check out this CS response

2006-02-09 Thread Cutter (CF-Talk)
We did the trial of ReactorFusion, and now we're buying several 
licenses. There were some processes (related to java libraries used by a 
few apps) that occasionally would over flood the system(s) with long 
running thread processes. Upon installing ReactorFusion, our uptime 
improved considerably because it automatically reigned in many of those 
processes, without additional configuration of the utility. We can 
further extend that functionality if we define some specific crash 
protection rules.

Ray, I'm not going to say that they're FOS, just that they might be 
ignorant of all of their options. Feel free to forward my message on to 
them, maybe they'll be willing to give it a look, and maybe it will take 
care of your issues. As a 'large, reputable company', I would hope that 
their server health would be worth them taking the time to explore any 
suggestions you might provide.

Cutter

Ray Champagne wrote:
 My shared server is constantly going down, so I wrote to my hosting 
 company, and this is the answer they gave me.  Now, I'm no CF expert or 
 anything, but doesn't this answer seem like a bunch of BS?  I've left 
 the name out of it, as I'm not here to slander anyone, but I will say 
 that this is a large, reputable company that is hosting my site(s).
 
 Dear Ray,
 
 We have restarted your Shared Server.
 
 Unfortunately ColdFusion is not very stable in shared environment and
 unfortunately there is nothing we can do about it except to restart it
 when it crashes. There is no way to make ColdFusion servers more
 reliable then they are now. At least none of our experiments with
 ColdFusion allowed us to improve reliability considerably.
 
 The main problem is that all customers' scripts are running in a single
 process and a single customer with faulty scripts can keep shutting down
 the server.  Moving the customer from server to server will not help as
 this problem is exhibited by all ColdFusion servers.
 
 We have automatic server monitoring in place that restarts Cold Fusion
 whenever it crashes.
 
 Please let us know if we can be of further assistance or you have any
 other questions.
 
 Regards,
 
 XX Technical Support
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231766
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: Fusion-Reactor?

2006-02-09 Thread Cutter (CF-Talk)
We evaluated both. Fusion-Reactor was a better product (in our 
opionion). Monitoring, kill process on the thread level, user editable 
crash protection scenarios, mega reporting

Cutter

Dave Carabetta wrote:
 On 2/9/06, Adkins, Randy [EMAIL PROTECTED] wrote:
 
I do agree. If the 10-day trial version did that. I would not
Delay in obtaining a license copy to run and monitor any problems
That could surface in the future.

 
 
 It should be noted that there is another product out there called
 SeeFusion which is in the same exact space and is a very solid product
 (and cheaper). I am in the process of evaluating both and hope to blog
 my experience with each when all is said and done.
 
 Regards,
 Dave.
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231817
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


evaluate hell PT 3 (three)

2006-02-07 Thread Cutter (CF-Talk)
Can anyone give me a good/valid reason for the existence of the 
following statement:

#Evaluate(ListLen(CurrentDir, '/')-NestDepth)#

(Gotta love OPC...)

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231588
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


evaluate hell

2006-02-03 Thread Cutter (CF-Talk)
Could someone translate this (and how to get out of it)

#Evaluate(GetInventory.#GetListingFields.DBColName[GetListingFields.currentRow]#[#GetInventory.CurrentRow#])#

TIA,

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231310
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


evaluate hell Pt2

2006-02-03 Thread Cutter (CF-Talk)
Need serious help rewriting this statement without using evaluate:

cfif isdefined(GetInventory.#GetListingFields.DBColName#) and 
evaluate(GetInventory.#GetListingFields.DBColName#[#GetInventory.currentrow#])
 
NEQ 0 AND 
Trim(evaluate(GetInventory.#GetListingFields.DBColName#[#GetInventory.currentrow#]))
 
NEQ 

(I'm confused???)

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231314
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: looking for a hosting company to resell

2006-02-01 Thread Cutter (CF-Talk)
You might talk to Emmet over at Full City Media. Don't think they have 
current rates posted, but I know they have great service, a 
knowledgeable staff (with CF experience), a nice control panel, and I 
think they just did some major upgrades to their datacenter as well.

Cutter

Mike Kear wrote:

My current hosting company has annoyed me one too many times so now I'm
looking to move my business to a new server/servers.  I'm sorry because this
is off topic here, but I want to take my sites to a company that understands
coldfusion.  I'm a bit bored with having to ask for coldfusion things to be
done several times before they get it right.

At the moment I have 55 domains to move, mostly small low volume and/or
developer sites used for their own sites and staging sites for their
poject.And  I want to expand.  Not quite ready to afford dedicated
server yet, so I need shared hosting.  I am reasonably open minded about
price, but of course I cant pay just anything i have to keep a mind to the
prices I will have to charge my clients.

I have approached 3 Australian companies who have their machines in the USA,
and even though I havent mentioned price yet, they dont seem interested in
following up on it.

Here are some of the things I need:


Windows platform

*Server Technologies:*

   - CFMX7 updated and current
   - PHP
   - ASP
   - .ASP.NET
   - Perl (for the slow-learning thrillseekers)

*CFMX Restrictions*

   - Few disabled tags.  Preferably none disabled (many of the sites I
   host are staging sites for other systems)

*Databases:*

   - SQLServer2000 +
   - MySQL
   - Access

*Miscellaneous*

   - Control panel so my clients can set up site features, and i can set
   up client sites without needing the support people to do it for me.   Helm
   is my CP of choice.
   - Mail server including webmail
   - Site stats for every site viewable by my clients (I'm sick of
   writing my own stats modules and installing them for clients .. it ought to
   be something provided standard by hosting companies)

*Support:*

   - As an absolute minimum - support staff on duty during the Australian
   business hours, not just the business hours where the machine is installed.
   - set up CFmappings and CF DSNs either through the control panel or
   with a response time measured in terms of less than 6 hours


*Business:*
*

   - *No contact from the hosting company to my clients.
   - Bill me for the resources used or allocated to me and I'll look
   after biling the individual site owners
   - I want to brand the control panel etc for my clients
   - Uptime guarantee - if the server fails for more than the agreed
   amount of the time, a discount is applied to my payment.  (after all I have
   to grant the same to my customers!)
   - I'm open about the basis of calculating my payment, but i prefer not
   to have a whole list of $1 for this, $2 for that, $0.50 for that  - being
   nickeled and dimed to death.  By preference I'd like to pay a total amount
   for everything I have allocated to me and let me figure out what to charge
   my clients for.
   - It would be good to have some kind of transition period to allow me
   to move my domains in without having to pay in both locations.

If you're interested please dont respond on list,   email me at
[EMAIL PROTECTED]

--
Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230947
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: IE 7 beta is available

2006-02-01 Thread Cutter (CF-Talk)
BTW, for those who are interested, the following link was sent out on 
LaTech's Javascript mailing list this morning. For those who thought you 
couldn't run multiple version instances of IE on your system...

http://browsers.evolt.org/?ie/32bit/standalone

The README will direct your here:
http://www.skyzyx.com/archives/94.php

Let the fun begin...

Cutter
(Please Note: The links above do state that the standalone browsers are 
unsupported. Although many are using these programs, it is not implied, 
nor garaunteed (sp?), to work on your system.)

Stan Winchester wrote:
 Let the fun begin!
 
 http://www.microsoft.com/windows/ie/default.mspx 
  
 Thank you,
 Aftershock Web Design, Inc.
 by: Stan Winchester
 President/Developer
 [EMAIL PROTECTED]  
 http://www.aftershockweb.com/   
 Phone 503-244-3440
 Fax 503-244-3454
  
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231033
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


Still In The Works (OpenBiz)

2006-01-27 Thread Cutter (CF-Talk)
This morning I sent this out to the Nashville CFUG mailing list and 
thought it important to copy it to drop in here as well. --C--
-
By the way, didn't get the chance to mention this last night so I 
thought I'd bring it up here. Before I begin let me just say that I am 
not trying to start a flame war on a low traffic local cfug list, please 
read through the entire message and think about it's text before blindly 
responding.

For some reason there appears to be a growing need, within the CF 
community, to defend the validity of programming within CF. The 
uninformed/unitiated either a) don't know that ColdFusion exists, or b) 
think of it as a low-level tag-based scripting language with no power 
and a high price tag. Now, I don't know about ya'll, but I'd like to 
beat these people with their own arms for being dumber than a stump. 
But, since that's not an option and we all have to work to feed our 
families, many in the community are working towards giving CF 'validity'.

Now, not all of these people look at their contributions like this. Some 
of this are 'just trying to help out.' But the bottom line is (in the 
many discussions that are out there) that there aren't a ton of high 
level, enterprise marketable, applications out there written in CF. 
There are hundreds of little snippet programs for doing this and that. 
There are thousands of SOHO business applications written in CF 
2/3/4/5 un-modifiable, non-configurable spaghetti code. There ARE NOT 
many high end Open Source enterprise level applications written in 
ColdFusion.

So? That's the response I get a lot. But what are we, as CF developers,
competing with? How about the hundreds of thousands of open source 
applications written in C++, PHP, or Python, or even ASP (shudder). 
Applications that companies download, install, and work with every day. 
With such a great development community, why don't we have more/better 
to offer for ColdFusion? Don't get me wrong, I love and applaud the 
efforts of all of the framework developers we have (Hal, Ben, S. Isaac, 
Rob, et. al.) and appreciate those who crank it out just for our 
benefit, learning and enjoyment (thanks Ray), but CF needs some 
well-designed, well-coded, well-documented Open Source programs to
offer to the world. Something that tells people We're serious about 
what we do. We're good at it, and only work with the best tools 
available. That's ColdFusion.

So, having said all of that, and having stated my opinion for all to 
poke, prod, and plunder, I finally come down to my point and request. 
Not long ago a few people spoke out on the CF-Talk (houseoffusion.com) 
list for developing an Open Source E-Commerce application. For anyone 
who's really looked out there for a good CF cart, you may have seen that 
a) none are free, b) there aren't really that many, and c) few are worth 
a damn. Some of the higher priced ones are rather nice, but that doesn't 
mean that they are very configurable (by John Doe, shop owner and all 
around nice, non-programming guy), nor does that mean they are stable 
and well written (some haven't had their core business logic updated
since FB 3).

So, now there is an Open Source project on SourceForge.net for 
openSource Business Services (keyword openbizservices). The project 
started just before the holidays, so there hasn't been a lot of activity 
yet. I've only seen posts from three people in the forums so far (one of 
'em being me). The overall scope of the project is 'in process' and is 
quickly taking shape. This morning I received an initial Design Document 
from Andy and it is fantastic for a first draft. This project, though 
still being scoped, is to be very full featured, well formed and 
documented, as well as extensible. Part of the core process is to design
component objects that can be easily extensible for platform and db
independence, that can be used in almost any framework or within a basic 
format we include.

But, we need help. There are very few of us in this right now, giving 
only a few hours a week. The project will be broken down into many small 
sub-projects that will complete/compliment the overall design, so the 
more help the faster and more full-featured it will be. So, anyone 
interested in helping out (even just an hour or two a week) should 
please go over to SourceForge.net and sign up for the lists. We, and 
eventually the community at large, will greatly appreciate it.

Steve 'Cutter' Blades

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230588
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: html email newsletters via CF

2006-01-26 Thread Cutter (CF-Talk)
Tim,

There's NetDispatch...

Cutter

Tim Laureska wrote:

Hello

Before I go off recreating the wheel possibly, I wanted to know if there
was any good CF based email newsletter templates/systems out there. will
be about 800 recipients on a crystal tech shared server environment
running CF7

 

 

thanks

Tim 

 

 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230485
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: XLS Connection

2006-01-26 Thread Cutter (CF-Talk)
I don't really know (I've only done this with text or PDF files using 
java). How did you open it in the first place? Maybe that will give you 
some direction...

Cutter

Randy Messer wrote:
 How do you close the file?
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230512
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: XLS Connection

2006-01-25 Thread Cutter (CF-Talk)
Not entirely sure here, you'll have to read up a little more, but I know 
that when I 'open' a file with a java call then I must remember to 
'close' the file as well, even with error trapping, or the file will 
remain open until I either a) recycle the CF server or b) recycle the 
machine itself (though it might only be 'a')

Cutter

Randy Messer wrote:
 I have an XLS mapped up. After I query it, I can not upload, delete or rename 
 the XLS file due to sharing violation. Is there a method to end the process? 
 I need to replace the xls file after the qry has run with another xls of the 
 same name.
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230460
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: Coldfusion CFMX 6.1 on Red Hat

2006-01-18 Thread Cutter (CF-Talk)
There was something in the CFPodcasts about this (can't remember which, 
but I know it was somewhere between 1 and three). Apparently there was a 
new Security Engine layer built into the latest version of RedHat as 
part of an initiative from NSA to create a more secure computing 
environment. Support is built into CF7, but not into 6.1, although they 
may have said in the podcast that there were workarounds (I don't 
remember). You can check Adobe's technotes, as well as the summaries of 
the podcasts on coldfusionpodcast.com (I think it's Episode 2 in the 
section on Stephen Collins guide, but I could be wrong. It could just be 
part of the podcast where they mention one of the updater releases, 
which they talked about in Episodes 1  2).

Cutter

Protoculture wrote:

Hi List,

I am wondering, an isp that we deal with is telling us that the latest version 
of Red Hat will only work with CF 7.

something about updates and stuff and they are saying that it(CFMX) wont work 
with apache etc... the updates to red hat will not work with CFMX 6.1.

I'm not convinced. Anyone have any ideas?



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229860
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


CF CBT App

2006-01-13 Thread Cutter (CF-Talk)
Anyone out there know of/written/used a CF based CBT application? 
Support for Flash, audio and video media, testing and control, etc.?

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229472
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: eGovernment and Wiki's --- anyone making Wiki's with CF?

2006-01-12 Thread Cutter (CF-Talk)
Sounds like a new Open Source CF project for somebody...

[EMAIL PROTECTED] wrote:

I've also played with Confluence and I think its awesome, shame its not
written in CF 

Kola

:)

  

-Original Message-
From: Geoff Bowers [mailto:[EMAIL PROTECTED]
Sent: 11 January 2006 22:32
To: CF-Talk
Subject: Re: eGovernment and Wiki's --- anyone making Wiki's with CF?

On 1/12/06, Munson, Jacob [EMAIL PROTECTED] wrote:


It sounds like you want a content management system rather than a wiki.
The difference being you give people access to edit your content instead
of a free-for-all system.  Check out Farcry, an open source, CF based
CMS.  Personally I haven't tried it, but I did attend their demo at
CFUnited 2005, and I was pretty impressed.
  

Thanks for that :)  Not our demo per se just an enthusiastic member of
the community at CFUnited.

Current link for FarCry community site:
http://www.farcrycms.org/

I thought I might chime in to say I've been using a WIKI as an
experiment for building developer documentation for the FarCry
community.  You can see our efforts here:
http://bugs.farcrycms.org:8080/confluence/dashboard.action

We tried this in FarCry initially but WIKI and CMS are not really
equivalent.  A wiki is a very niche sort of CMS; very interactive and
very organis. And although I'm sure we could engineer FarCry to run in
wiki mode I'm not sure about the return on investment given the
multitude of specialist wiki engines out there.

I'm a late convert to the WIKI seen.. but I quite like working with
them once you get going.  I think however you need the right content
project and a community of wiki users ie people who know how it works
or are prepared to learn -- this isn't the general public just yet.
Navigational concepts get a bit blurry and its important that people
who really do know what they are doing constantly keep pruning the
wiki so to speak, otherwise it gets out of hand, and/or whithers and
dies.

We're using Confluence.  Its Java and its commercial (unless you are
an open source project) but its very much more sophisticated than the
variety of other WIKIs I've tried to set up:
http://www.atlassian.com/software/confluence/

If you are building wikis you wouldn't go far wrong trying to
benchmark against Confluence's feature set -- it's really a great
product.

-- geoff
http://www.daemon.com.au/

~






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229332
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: ColdFusion Cookbook

2006-01-09 Thread Cutter (CF-Talk)
Still a work in progress but a fantastic beginning. Great work as always 
Ray, and thank you for everything you do for the CF community.

Cutter

Raymond Camden wrote:

So hopefully this won't' spawn another 100 message thread on food, but
the ColdFusion Cookbook is launched: www.coldfusioncookbook.com. It is
still in beta I suppose, but I'd love feedback. I have a lot of
content thanks to Rob Brooks-Bilson and Jeremy Petersen. More content
should continue to flow in as time goes by.

More info here:

http://ray.camdenfamily.com/index.cfm/2006/1/6/Get-Cooking-with-ColdFusion

--
===
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



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228826
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


Java and CF

2006-01-05 Thread Cutter (CF-Talk)
I've written a java class file I want to use in an app (just testing). 
but I can't figure out where to put my .class file. I tried putting it 
in the directory with the page calling it, then calling it

createobject(java,myclass);

But this errored out, not finding the class. So then I placed it in the 
classpath used according to the cf administrator

c:\cfusionmx7\wwwroot\web-inf\lib

But the same call fails in the same way, even after restarting cf. I 
have .jar files installed in the same directory that are working fine 
(JAI, JPedal, etc.), but my .class file just seems to be ignored. Can 
anyone give me some insight here? TIA

Cutter

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228478
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: Fax/PDF Form/CF and more

2006-01-05 Thread Cutter (CF-Talk)
iText functionality can be explored in depth at sourceforge and

lowagie.com/iText. There is support for XML functionality, but I'm not 
seeing anything for FDF (which is included in JPedal, also available on 
sourceforge)

Cutter

Bryan Stevenson wrote:

iText anyone?



NeilDoes iText handle PDF forms?  I thought it was just for good old 
regular 
PDFs?

I'm quite sure that if iText does handle PDF forms...it most certainly won't 
allow me to build in the form data package/send via XML functionality ;-)

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 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228492
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: Tracking downloads of mp3 files

2006-01-03 Thread Cutter (CF-Talk)
Mike,

Another possible issue to consider, is the production server Windows or 
Linux?

A Linux machine will be case sensitive to file and folder names, and 
won't allow spaces either. Another simple test you might (and probably 
should) use: fileexists(string path). The 'file' attribute of the 
cfcontent tag won't do you diddly if it can't find the file you're 
looking for (you may have thought of this already, but it's the simple 
stupid stuff that always catches me with my pants down...) Pathing is 
one of those things that can, and will, catch you off guard;)

Cutter

Mike Kear wrote:

I tried Matt's method of using CFContent to serve the files to the user, and
worked just like a charm - on my dev machine.  I was able to not only do
what I needed, and keep good stats and log of activity, but do some other
cool stuff too like have the pages fed from a database instead of a static
page, thereby allowing much easier updating of content etc.   Good ..

EXCEPT .

It didnt work on my production machine.  A shared host.At first I
figured we had CFContent disabled, but Im assured that CFContent is NOT
disabled for the site in question.Now i have to go back to the code, to
look for what I might have got wrong somewhere along the line.

Are there any 'gotchas' with CFCONTENT in a shared hosting environment i
ought to look for?   Failing that, I think since the app worked beautifully
first time on my dev machine, the only possibility is that I forgot to
upload one of the files or something REALLY dumb like that.Any other
ideas?


Cheers
Mike Kear
Windsor, NSW, Australia
Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

On Mon, 2 Jan 2006 05:42:50 -0800
Matt Robertson [EMAIL PROTECTED] wrote:
  

Use cfcontent to push the files to them.  Then you can
work whatever
tracking code you want into the picture.

http://mysecretbase.com/How_To_Display_Protected_Files.cfm

--
--mattRobertson--
Janitor, MSB Web Systems
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:228256
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


[Fwd: Not Subscribed: Re: Fax/PDF Form/CF and more]

2006-01-03 Thread Cutter (CF-Talk)
You could also look into a Java PDF Manipulation API (I think JPedal is

a little more robust than iText, though true documentation is weak).

Cutter

Larry Lyons wrote:

Hey All,

I'm looking into building a process with the following bits:

PDF FORM
-filled in by user
-each form generates a unique barcode or ID and displays on the form
-some of the fields are calculated (based on input in other fields)
-form has send button to package up the form data and send to an 
e-mail account OR send via HTTP

FAX
-user must print the completed PDF form and get multiple signatures on 
it
-fax in the form via a fax service (I'd expect the TIFF to arrive in a 
mailbox which CF could check) 
CF and MORE
-grab the fax TIFF from the mailbox
-CFEXECUTE (or another process) to read the bar code or OCR the unigue 
ID off the faxed form
-convert TIFF to PDF (I can do this already with iText)
-store file reference against the data sent by the PDF form

So this whole process allows a signed copy of the form to be stored 
digitally along with the data sent in by the form creating an 
automatic paperless process.

PARTS I'M LOOKING FOR SOME INSIGHT ON
-creation of PDF forms that meet my requirements (via an IDE or 
programmatically)
-bar code or OCR process that CF can kick off (what app to use to 
perform these tasks)

Any and all insight welcome (especially from someone that's built a 
process like what I've outlined).

I'm off to do my own research...but I always ask here first ;-)

TIA

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



Bryan,


I don't know how to create PDF forms programatically, (CF8 perhaps) but Adobe 
Acrobat Professional allows you to create PDF forms. It also has a limited 
subset of Javascript that allows you to do most of what you want, including 
hiding and showing fields based on user actions, validation scripts, and using 
the user's email client app to email the form data to the server. Then you can 
parse the returned FDF form fields using CF.

hth,

larry

--
Larry C. Lyons
Web Analyst
BEI Resources
American Type Culture Collection
email: llyons(at)atcc(dot)org
tel: 703.365.2700.2678
--



~|
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:228260
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: Favorite CF books

2005-12-28 Thread Cutter (CF-Talk)
I would also suggest the Deitel  Dietel title Java How To Program.

Great book for beginning to intermediate Java Programmers, including a 
step by step small game programming project with primer for OOD with UML 
and Design Patterns.

Cutter

Yves Arsenault wrote:

My personal favorite was the CF 5 wack book... sentimental it is...
was my first CF book..

I have one of the CF7 wack books. I use it occasionally for reference.

I do like Ben Forta's books in general.

One of my current favorite books is one I bought several months ago
but never really got into it..

Ivor Horton's Beginning Java 2 by Wrox.

I'm completely new to Java and so far love this book. I did study C++
ages ago but never used it since I had been out of college (and it
wasn't a very deep study).

Much of the early stuff in the book looks very familliar. I find this
book very interesting because for about 8 of the last chapters, you
concentrate on building different aspects of a small desktop app...
got me very interested.

One book that I had wanted to read for a while was that book by Ben
Forta which was titled Reality ColdFusion: Intranets and Content
Management
http://www.forta.com/books/0321124146/

Anyone read that?

I have the Flash integration one..

--
Yves Arsenault

Love is the only force capable of transforming an enemy into a friend.
--Martin Luther King, Jr.



~|
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:227745
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: FlashAudio

2005-12-20 Thread Cutter (CF-Talk)
Better yet, put an obvious 'Start' button, so you don't annoy the hell 
out of everyone right away, but give them the option instead.

Cutter

Bobby Hartsfield wrote:

Other than don't do it the only advice I can give is, put a stop button on
it because it WILL get annoying.

..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
 

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 6:34 PM
To: CF-Talk
Subject: FlashAudio

I want add some flash background music to the home page of a site that I am
working on.  Any Advice?





~|
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:227322
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: PDF Manipulation

2005-12-15 Thread Cutter (CF-Talk)
While I appreciate everyone's input, I thought CFDocument was a MX 7 
feature? I did look at iText, but haven't found anything within it that 
I might convert a PDF to an image. I'll take another look, but if anyone 
already has some insight please share. TIA

Cutter

Paul Hastings wrote:

Robertson-Ravo, Neil (RX) wrote:
  

Yep, indeed it is; I am not sure if it's restricted in anyway.



the cf version is older than the latest  greatest BUT cfdocument is 
world's easier to use in 90% of the situations you'd need it. the cf 
team did a bang up job simplifying iText.



~|
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:227095
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: Open Source Shopping Cart Coding Guidelines

2005-12-06 Thread Cutter (CF-Talk)
Sorry it's taken so long to respond. Major issues in my migration to 
Nashville (but I'm here!) I see Sean pointed you in a good direction...

Cutter

Andy wrote:

Cutter,
Are you going to get a chance to take a first cut at this?  If not, can you
point me to someplace that I can use to do so?

Andy






~|
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:226263
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: Open Source Shopping Cart Architecture

2005-11-16 Thread Cutter (CF-Talk)
Looks great. Only two things I might have issue with:

1.  Only writing for CFMX 7 will alienate the many out there who finally 
moved to 6.1 (once achieving corporate approval) or who have moved to 
BlueDragon. An option within the install to define the server 
environment can enable/disable features that might be version specific 
(like Flash or XForms or CFDocument).

2.   Use of stored procedures will alienate anyone using MySQL prior to 
version 5. Many shops may not upgrade for a year or more to guarantee 
(in their minds) stability as well as testing (kinda the same reasoning 
you may night want to write exclusively for MX 7...). I would suggest a 
DAO architecture that you could then extend for different database 
platforms (MSSQL, MySQL, Oracle, etc.) and include the need within the 
install to define the db platform being used. A good example of this can 
be seen by DAO CFC's written by CFCCreator.

I would also suggest defining some basic coding guidelines. Code 
indentation, variable naming conventions, db table and column naming 
conventions, documentation specifications (I suggest JavaDoc), etc. This 
will keep everyone on the same sheet of music, make code review and 
revision easier, and implement some design consistency to make final 
packaging much cleaner.

My $.02, which is all I can give with the rising moving expenses I am 
about to incur.

Cutter

~|
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:224448
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: Open source shopping cart

2005-11-14 Thread Cutter (CF-Talk)
Were I not in the process of transitioning out of one position, 
relocating, and into a new position, then I would be offering my 
assistance immediately. However, as I won't have an internet connection 
for a while (much less the packing, moving, unpacking, etc.) I'll have 
to wait until I'm settled. I did want to take a moment to throw in my $.02.

My daddy always told me if you're going to do a job then you should do 
it right the first time. Although the initial planning may take longer 
it is definitely worth while to make this an OO application. It is 
actually easier (by far) to modify and extend a well documented OO app 
over a procedural app. It is easier to design and apply extension 
modules/components. It is easier to track your program flow. Using DAO 
CFC's will allow you to extend the app from a multitude of database 
platforms. A complete separation of the business logic from you control 
and presentation layers will force a developer to concentrate on the 
data to be presented rather than the presentation (which could then be 
output in HTML, XHTML, XML, or even Flash). And, since you are already 
planning on using CFC's, a loosely coupled MVC OO approach will break 
down the project into easily defined subprojects. This type of approach 
would also make it very easy to port into most existing frameworks (Mach 
II, Fusebox, Model-Glue, etc.)

Would an OO approach alienate a majority of users? I don't think so. If 
you offer a superior product, with the features they want, then the 
users will take the time to read documentation to make it work for them. 
These aren't advanced programming concepts, they're good programming 
practices. Those of you looking to turn this into a learning experience 
will gain a much better learning experience by moving forward from an OO 
standpoint.

My two $.02. Hope it helps.

Cutter

dave wrote:

most of that sounds good but some of it is a bit over the top.
If you make it 00 then it will alienate a good majority of users, needs to be 
simple enough that the average user can modify it.
Some of the xml stuff is over most peoples heads, maybe we could end up with 2 
versions and the 2nd can be a paid version with all that stuff.
I know a lot of people will want to show off their skills but i think it needs 
to be user friendly enough for beginners to use it since they will be using it 
probably the most and for those ppl we try to get from php and such it will be 
an easier conversion.

Have you noticed the ppl (including myself) that are volenteering aren't the 
experts on here? If it's gunna be 00 then you lose those helpers and since 
most of the higher end coders on here won't be helping so who's gunna go in 
and make all our stuff 00?

other than that good plan.
While you are doing that I will start on the base code and css.
What are your opinions on that?
I personally am using xhtml strict and mostly cssp on my current stuff, I 
don't mind being in charge of the base code stuff but lets agree on what to 
start with. I'll be more than happy to take each persons code and make it 
validate and all that good cross browser stuff.

~Dave the disruptor~
Some people just don't appreciate how difficult it is to dispense wisdom and 
abuse at the same time. 


From: Andy [EMAIL PROTECTED]
Sent: Thursday, November 10, 2005 12:12 AM
To: CF-Talk cf-talk@houseoffusion.com
Subject: RE: Open source shopping cart 

Here are my thoughts:
1. OO
2. Design to be extended without taking out of upgrade path(pre  post
processing steps)
3. Provide DLL's
4. XML in and out with appropriate XSD's
5. Sample HTML and/or XSLT with CSS that can be used as a base 

Starting with someone elses data model is like starting coding without
requirements. If we want to do this right, we need to start at the
beginning. If we all chip in with the IC that we have this shouldn't take
too much time to get through the documentation phase. At each stage, we
create a forum for the individual parts, each of use signs up for those that
they can contribute to, someone takes lead for each...We finish then move to
the next step of the design. Continue until done, then move to Detailed
Design. While Use Cases are being created, the Archeticts can start
creating the framework within which detailed design and coding will operate
within.

Bottom line, this needs to be run like a large scale development project.

Andy





~|
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:224121
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 Open Source Shopping Cart

2005-10-25 Thread Cutter (CF-Talk)
My (first) $.02

Address: A physical location. Address is a complex subset(s) of user, 
affiliate, partner, store, wharehouse, etc., etc..

How about CFOEC (CF Open E Commerce)

Cutter

Andy wrote:

First decision is which site to use to coordinate our efforts.  Any
advantage to one site versus another?  Once we decide this, I'll open a
project and we can move the dialog to there.

Second step is to agree on some definnitions to help us to move forward.
Let me offer a first cut at some definitions:

Product:  A single item that can be bought or sold

Shopping Cart:  A set of products and order quantities that may or may not
be purchased

Address:  A phyisical location to which order confirmations, invoices,
bills, orders, etc, can be mailed or otherwise delivered to

Order:  A set of products and requested quantities and shipping and billing
information that are to be shipped to a single location

Purchase Order:  A grouping of one or more orders associated with a single
authorization

Let the party begin

Andy






~|
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:222162
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


MySQL 5 release

2005-10-25 Thread Cutter (CF-Talk)
By the way, if you missed Ben Forta's Blog this morning then you may 
have missed this item. This blurb is from the MySQL.org website:

MySQL 5.0 delivers the enterprise features the community has been 
asking for, including Stored Procedures, Triggers, Views, Information 
Schema, XA Distributed Transactions, and new Storage Engines...

~|
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:09
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: Coldfusion - i'm moving on

2005-10-09 Thread Cutter (CF-Talk)
Stuart,

See what you can find out about using an include in this fashion (I know 
you can find a little in the CF section at www.benorama.com).

cfimport prefix=form taglib=/system/cftags/forms

forms:include_formContactUs actionPage=/index_02005ii.cfm?cp=13

Cutter

Saturday (Stuart Kidd) wrote:
 Hi guys,
 
 I'm quite happy with myself because after so long i've been using CF  
 i haven't always been using it in 'rapid development'... but today  
 instead of keep re-writing code, usually in a copy  paste style then  
 a re-hash of variable names etc I decided I was going to create an  
 include file so I could reuse a form.  In this case it was a 'contact  
 us form'.
 
 I created an include file that had a form in it and also a cfif  
 isDefined type thingy so that if the form had been submitted then it  
 would action that.
 
 So I have on my main page:
 
 -
  !--- contact us form ---
  cfset actionPage = /index_02005ii.cfm?cp=13
  cfinclude template=/webs/02005/includes/ 
 include_formContactUs.cfm
  !--- end of contact us form ---
 -
 
 AND ON my include_formContactUs.cfm I have:
 
 -
 
 cfif isDefined('sendContact')
 Blah blah
 /cfif
 
 My form
 
 -
 
 However, I know this is probably the right time for me to do it  
 another way, but i'm just not sure how to do it.  It works fine the  
 way it is but i know that for instance i have set the actionPage but  
 i'm sure there is a different way of doing that?  It's not a  
 CFFUNCTION i have to make is it?
 
 Is it worth doing it for this?  I'm sure it would come handy because  
 so often I have written 'contact us' type action forms.
 
 Thanks for your help,
 
 Saturday
 
 
 

~|
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:220497
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: Outlook integration?

2005-10-07 Thread Cutter (CF-Talk)
Aw, come on now Damien. Why don't we give some good advice and possible 
recommendations, rather than off handedly trash DRE's client for poor 
program choices;)

I do agree with Damien, Outlook is a very poor choice for this (or any 
other) type of application. That being said, what you ask is not 
entirely impossible. It really depends upon your client's internal 
architecture. Is your client using Exchange? Is their app an Exchange 
based app? Are they using a custom form Outlook application? Where is 
Outlook housed (client machine, server, etc.)? Is there currently 
scripting within Outlook to prevent double location bookings, or is this 
something you must build into the server side processing of your 
application?

Having answered these questions, if you are still using Outlook, you'll 
want to look at the specs for vCal. You can find a great deal of 
information on programming for Outlook at msdn.microsoft.com. Sue 
Mosher's slipstick.com has been a resource for Outlook developer's since 
the Office '97 days (she has also written several informative books). 
Doing a search, I see that she's expanded to OutlookCode.com. CFComet 
has always been a good resource for CF/MS Office integration as well 
(http://cfregex.com/cfcomet/outlook/ for outlook specific help). Chris 
Wigginton posted a vCal UDF library (http://www.cflib.org/udf.cfm?ID=385).

I personally can't imagine why anyone would write a reservations or 
property management package based upon Outlook? But, then again, every 
music scheduling program (that I know of) for radio stations are built 
on top of Access databases (which may be part of the reason you hear the 
same 1,000 or so songs over and over again on most radio stations). In 
any event, I hope some of the above information assists you.

Cutter

Damien McKenna wrote:

-Original Message-
From: DRE [mailto:[EMAIL PROTECTED] 

Hi, I have a customer that has an app that manages properties. People
can reserve rooms and auditoriums and or whatever is on various 
properties thru the site. He'd like to integrate it with outlook
such that the location gets autmatically reserved.



Please explain what the intention is regarding integrating with Outlook
and whether Exchange Server would be part of the equation also.
Outlook's calendar system is really quite atrocious, Microsoft have
wasted several years of development time and it still doesn't do half of
what Apple's iCal does for simple collaboration, so I'm really not sure
you'll really be able to do anything.

  


~|
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:220295
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: CF Web Based Keyboard

2005-10-01 Thread Cutter (CF-Talk)
Very cool, but I still think JavaScript is your best option.

1:  I would use Linux as the OS rather than MS (licensing)
2:  That pesky Windows key is there, regardless of the layout you select.

Dave Watts wrote:
Doesn't a PC in kiosk mode have onscreen keyboard abilities 
built-in??

Not unless it's got software to provide this. Windows XP 
Tablet 2005, for
example, provides an onscreen keyboard. There are third-party 
products that
also do this.
 
 
 Oops! Jim Davis proved me wrong:
 
 However there's a good on-screen keyboard built into Windows 
 already. It's usually here: %SystemRoot%\system32\osk.exe
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 

~|
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:219821
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: CSS and Firefox

2005-09-15 Thread Cutter (CF-Talk)
Inconsistencies between browsers (IE, Firefox, etc.) does present minor 
issues on occasion, not just in basic terms (like slight differences to 
the DOM style references), but also in broader issues (like how each 
browser is affected by the use of a particular DTD). When IE7 is finally 
released hopefully some of this will be relieved (if they can convince 
everyone to upgrade [yeah, right...]).

All of that being said though, it's worth the tradeoff. I've been slowly 
implementing styles in my work for the last few years. I've even totally 
rewritten 3rd party code to make it HTML 4/XHTML compliant with styles 
(and later stylesheets) so that they were easier to change/maintain. 
It's nice to change one line of CSS to change the appearance of an item 
across an entire site (like changing the font-type, or the font-size, or 
the background color). Sure, sometimes there are issues (especially with 
the box model), but generally a little time of tweaking/testing will 
work it out, with an occasional trip to Google or the W3CSchool.

I generally start with a layout that works with Firefox (my browser of 
choice) and then look at it within IE to see what needs to be 
changed/adjusted. I pre-plan my layout prior to coding, which helps me 
develop with an eye for encapsulating pods of content and pre-defining 
default and block level styles. Since the view layer is usually the last 
area of code I work on it typically doesn't take much of my time. Since 
code/dev is only about 10% of my current work week then that is time 
well spent (I can't wait to get back to core dev. Now, where was that 
resume?...)

Minor things will drive you nuts, but typically only you will notice. 
It's worth the initial effort.

Cutter

Rick Faircloth wrote:

Thanks for the reply, Cutter...

It does seem an elegant and efficient way to design,
but I've been following discussions on the css-discuss
mailing list, and they sure spend a lot of time figuring out
design issues.

I'm just wondering if I'll be spending too much time trying
to make CSS design behave and not enough time coding CF.

I guess there's probably a common set of functional design
patterns that work well with all (mostly all) browsers and I
could learn what to stay away from...

What's been the key for making CSS work well for you
in dealing with incompatabilities between browsers?  Or does
it just seem that there are a lot of issues because the problems
are usually the only hot topics that are discussed on lists...

Rick


-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 3:33 PM
To: CF-Talk
Subject: Re: CSS and Firefox


Rick,

Yes, I'm using CSS for all of my design (only using tables for tabular
data). Irie Radio is my first foray into Mach II, and every page
contains some dynamic data (much more to come). I've really had to
rethink some things structurally to leverage CF with a total CSS layout,
but in the end run I'm finding it to be much more flexible from a design
standpoint, especially as I modularize my code. Much easier to change
and maintain.

Cutter



Rick Faircloth wrote:

  

Hi, Cutter...

Are you using CSS as your primary design approach or tables?
I say primary, because I'm sure you use both, but what do you
use to do your basic page layout?

And if you use CSS, how has it worked with dynamic pages and CF?

Rick


-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 9:08 AM
To: CF-Talk
Subject: Re: CSS and Firefox


! Thanks Damien. I had tried adjusting the internal content
block sizes and forgot about my primaryContent container.

The WebDeveloper Toolbar extension for Firefox is great for this as
well. It's got an option in the Outline menu to Outline Block Level
Elements, so I don't have to adjust my stylesheet to see all of these
elements. Overall it's not perfect, but it has been a great tool.

Thanks again Damien (and all those others who posted). Dropping that
width just 5px (460px) was all it needed.

Cutter

Damien McKenna wrote:




Its simply a case of your content being too wide.  I made the following
change and it worked fine:

#primaryContent {
 width:455px;
}

I suggest adding the following to your main DIVs to see where everything
is *really* positioning:

 border: 1px dashed red;



  








~|
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:218471
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: CSS and Firefox

2005-09-14 Thread Cutter (CF-Talk)
! Thanks Damien. I had tried adjusting the internal content 
block sizes and forgot about my primaryContent container.

The WebDeveloper Toolbar extension for Firefox is great for this as 
well. It's got an option in the Outline menu to Outline Block Level 
Elements, so I don't have to adjust my stylesheet to see all of these 
elements. Overall it's not perfect, but it has been a great tool.

Thanks again Damien (and all those others who posted). Dropping that 
width just 5px (460px) was all it needed.

Cutter

Damien McKenna wrote:
 Its simply a case of your content being too wide.  I made the following
 change and it worked fine:
 
 #primaryContent {
   width:455px;
 }
 
 I suggest adding the following to your main DIVs to see where everything
 is *really* positioning:
 
   border: 1px dashed red;
 

~|
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:218194
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: CSS and Firefox

2005-09-14 Thread Cutter (CF-Talk)
Rick,

Yes, I'm using CSS for all of my design (only using tables for tabular 
data). Irie Radio is my first foray into Mach II, and every page 
contains some dynamic data (much more to come). I've really had to 
rethink some things structurally to leverage CF with a total CSS layout, 
but in the end run I'm finding it to be much more flexible from a design 
standpoint, especially as I modularize my code. Much easier to change 
and maintain.

Cutter



Rick Faircloth wrote:

Hi, Cutter...

Are you using CSS as your primary design approach or tables?
I say primary, because I'm sure you use both, but what do you
use to do your basic page layout?

And if you use CSS, how has it worked with dynamic pages and CF?

Rick


-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED]
Sent: Wednesday, September 14, 2005 9:08 AM
To: CF-Talk
Subject: Re: CSS and Firefox


! Thanks Damien. I had tried adjusting the internal content
block sizes and forgot about my primaryContent container.

The WebDeveloper Toolbar extension for Firefox is great for this as
well. It's got an option in the Outline menu to Outline Block Level
Elements, so I don't have to adjust my stylesheet to see all of these
elements. Overall it's not perfect, but it has been a great tool.

Thanks again Damien (and all those others who posted). Dropping that
width just 5px (460px) was all it needed.

Cutter

Damien McKenna wrote:
  

Its simply a case of your content being too wide.  I made the following
change and it worked fine:

#primaryContent {
  width:455px;
}

I suggest adding the following to your main DIVs to see where everything
is *really* positioning:

  border: 1px dashed red;








~|
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:218283
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


OT: CSS and Firefox

2005-09-13 Thread Cutter (CF-Talk)
OK, I'm working on making all new sites I work on XHTML/CSS compliant, 
one step at a time. Not a heavy learning curve, but I am running into 
some small odd things that I don't understand. For instance, on 
http://i05.irieradio.com, on pages other than the home page and the 
blogs page, my central content area has decided to displace itself to 
below the left nav. This only occurs in Firefox, it displays fine in IE. 
This is a pretty common layout so I'm going nuts trying to figure out 
why it would be doing this. Any suggestions?

Cutter

~|
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:218059
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


SOT: MD CFUG Tonight

2005-08-09 Thread Cutter (CF-Talk)
One last call here. Is there anyone from the Eastern Shore of MD 
planning on attending tonights CFUG at TeraTech? I'd really like to 
attend, but my car just won't make it. I'd be happy to split the 
(incredibly overpriced) gas costs?

Cutter

~|
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:214136
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: Studio 8 announced

2005-08-09 Thread Cutter (CF-Talk)
Connie,

Actually I believe the license did allow for two installations of 
Studio, as long as both installations were not running simultaneously, 
just for your type of situation.

Cutter

Connie DeCinko wrote:
 I have not read the information yet, but wonder if anything has changed in
 regards to licensing?  I find it silly that I must pay for two licenses for
 each developer that happens to work part-time on a notebook and part-time on
 a desktop computer.  I thought the world was moving to a check-out system?
 So you could have say 5 licenses and 5 users working at any given time, even
 if you have dozens of authorized users.
  
  
 Constanty Connie DeCinko III
 Web Architect, Webmaster, Web Developer
 Lone Jet Enterprises
 Glendale, Arizona
 www.LoneJet.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:214139
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: Going to MDCFUG Meeting?

2005-08-08 Thread Cutter (CF-Talk)
6:30pm 'Getting Started with Mach-ii' by Steve Rittler
8:00pm 'Mission-Critical Flash Application Architecture' by Chafic Kazoun

TeraTech, Inc.
405 E. Gude Dr
Suite 207
Rockville, MD 20850
301-424-3903

For a map or for directions: Go to
http://www.cfug-md.org/directions/directions.cfm.

To RSVP, or to offer a ride or request a ride from Shady Grove Metro 
Station: Go
to
http://www.cfug-md.org/rsvp.cfm.


Topic: 'Getting Started with Mach-ii'

Mach-ii is a framework for developing ColdFusion applications that has 
gained
significant attention
in the CF community. What better way to get to know it than get your hands
dirty? In this session
we'll get the Mach framework installed, drop a sample Access database on 
your
machine, and code our
first Mach application together. Experience with CFC development strongly
recommended...if you grok
OOP and MVC, so much the better but don't be discouraged if you don't! We'll
review some of these
core concepts briefly before getting into the code. By the end of the 
session
you'll have just
enough familiarity with OOP and Mach-ii to go back to work in the morning
wanting to clean up many
of your apps.

Bio:

Stephen Rittler is the owner of Countermarch Systems LLC, a consulting firm
specializing in
business process automation and content management solutions using 
Macromedia
technologies. His
company has developed effective solutions for clients in education, 
government,
publishing and
manufacturing. He is a Certified Advanced ColdFusion developer and has
contributed to the CF
community through his writing, leadership of the Philadelphia ColdFusion 
User
Group and
presentations on a variety of topics. Steve is a musician at heart but 
has yet
to figure out how to
play his saxophone and code at the same time. You can read his blog at
http://www.countermarch.com/blog.

Steve Rittler can be reached at [EMAIL PROTECTED]


Topic: 'Mission-Critical Flash Application Architecture'


This discusses an application I worked on and includes some back-end 
ideas that
can be applied to
ColdFusion although its not a strict coding session, more of a here is 
what is
possible and the
overall picture. People have enjoyed this session because they get to 
see how a
commercial product
that uses Flash runs under the hood.

Bio:

Chafic Kazoun is the Founder and CTO at Atellis, where he manages, 
architects,
and develops Flash
applications and components. Some recent projects include a real-time 
clinical
testing system and
commercial Charting Components set. Clients include Georgetown 
University, Ohio
State University,
and the Commercial Vehicle Safety Alliance. Chafic, a Team Macromedia 
Member, is
actively involved
in the Flash community, has presented at numerous conferences, contributed
articles, and technical
edited many books. He also maintains a weblog at http://www.rewindlife.com.


Tim Laureska wrote:
 I'll let you know by tomorrow AM sometime, but I'm leaning towards
 trying to make it... never been to one and am curious... what's on the
 agenda?
 
 -Original Message-
 From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
 Sent: Sunday, August 07, 2005 9:57 PM
 To: CF-Talk
 Subject: Re: Going to MDCFUG Meeting?
 
 6:30pm Tuesday night. I'm looking for a ride. My car could make it to 
 Cambridge, but not to Rockville (got to get this thing into the shop...)
 
 Tim Laureska wrote:
 
Hmmm... I'm on the shore... what time's this mtg?

-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 07, 2005 6:57 PM
To: CF-Talk
Subject: SOT: Going to MDCFUG Meeting?

Is there anyone on the list from the Eastern Shore that is planning on
 
 
attending Tuesday's MDCFUG Meeting in Rockville?




 
 
 
 
 

~|
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:214000
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: Studio 8 announced

2005-08-08 Thread Cutter (CF-Talk)
I wonder if Homesite is included? And, if so, if it's been updated? I 
did notice in the video for DW that the first server side language 
support mentioned was CF...

Kevin Graeme wrote:
 If you haven't seen it, Macromedia has announced Studio 8.
 http://www.macromedia.com/software/studio/
 
 Dreamweaver 8 has some nice new features including better CSS support. It
 also have some support for XSLT development.
 
 Flash 8 is mostly video/graphics updates, but one of the cool things for
 developers is a built-in mobile device emulator.
 
 ---
 Kevin Graeme
 Cooperative Extension Technology Services
 University of Wisconsin-Extension
 
 
 
 

~|
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:214005
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


SOT: Going to MDCFUG Meeting?

2005-08-07 Thread Cutter (CF-Talk)
Is there anyone on the list from the Eastern Shore that is planning on 
attending Tuesday's MDCFUG Meeting in Rockville?

~|
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:213987
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: Going to MDCFUG Meeting?

2005-08-07 Thread Cutter (CF-Talk)
6:30pm Tuesday night. I'm looking for a ride. My car could make it to 
Cambridge, but not to Rockville (got to get this thing into the shop...)

Tim Laureska wrote:
 Hmmm... I'm on the shore... what time's this mtg?
 
 -Original Message-
 From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
 Sent: Sunday, August 07, 2005 6:57 PM
 To: CF-Talk
 Subject: SOT: Going to MDCFUG Meeting?
 
 Is there anyone on the list from the Eastern Shore that is planning on 
 attending Tuesday's MDCFUG Meeting in Rockville?
 
 
 
 

~|
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:213990
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: string length

2005-08-02 Thread Cutter (CF-Talk)
Rick, have you thought about using some sort of regex? Don't know if it 
would work, just a thought...

Cutter

Rick Root wrote:

Hi folks... I have an application that is sort of like a guestbook that 
I threw together, and when people type in long strings without spaces, 
it messes up my template.

What's the best way to prevent that?

I was thinking about looping through a comment as a list with a space 
delimiter, and looking for strings longer than X characters.  That'd 
probably work I'm just wondering if anyone has dealt with this issue and 
had their own solution.

Thanks

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:213520
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: Amazon AWS

2005-07-22 Thread Cutter (CF-Talk)
!--- Build Array for Amazon.com Query ---
cfset variables.keywordrequestARRAY.devtag = [DEVTAG]
cfset variables.keywordrequestARRAY.asin = 0767920686
cfset variables.keywordrequestARRAY.tag = [ASSOCID]
cfset variables.keywordrequestARRAY.type = heavy
   
cftry
cfinvoke 
webservice=http://soap.amazon.com/schemas3/AmazonWebServices.wsdl; 
method=AsinSearchRequest returnvariable=variables.productinfoARRAY
cfinvokeargument name=AsinSearchRequest 
value=#variables.keywordrequestARRAY#/
/cfinvoke

cfoutput
Array length: 
#arraylen(variables.productinfoARRAY.details)#br /
/cfoutput
cfset amazonSELECT = 
QueryNew('ImageURLSmall,ImageURLMedium,ImageURLLarge,ProductName,Authors,Media,Manufacturer,Asin,ReleaseDate')
cfloop index=i from=1 
to=#arraylen(variables.productinfoARRAY.details)# step=1
!--- Add Row To Query ---
cfset QueryAddRow(amazonSELECT)
   
!--- Insert ImageURLSmall ---
cftry
cfset QuerySetCell(amazonSELECT, 'ImageURLSmall', 
variables.productinfoARRAY.details[i].ImageURLSmall)
cfcatch/cfcatch
/cftry
   
!--- Insert ImageURLMedium ---
cftry
cfset QuerySetCell(amazonSELECT, 'ImageURLMedium', 
variables.productinfoARRAY.details[i].ImageURLMedium)
cfcatch/cfcatch
/cftry
   
!--- Insert ImageURLLarge ---
cftry
cfset QuerySetCell(amazonSELECT, 'ImageURLLarge', 
variables.productinfoARRAY.details[i].ImageURLLarge)
cfcatch/cfcatch
/cftry
   
!--- Insert ProductName ---
cftry
cfset QuerySetCell(amazonSELECT, 'ProductName', 
variables.productinfoARRAY.details[i].ProductName)
cfcatch/cfcatch
/cftry
   
!--- Insert Authors ---
cftry
cfset QuerySetCell(amazonSELECT, 'Authors', 
ArrayToList(variables.productinfoARRAY.details[i].authors))
cfcatch/cfcatch
/cftry
   
!--- Insert Artists ---
cftry
cfset QuerySetCell(amazonSELECT, 'Authors', 
ArrayToList(variables.productinfoARRAY.details[i].artists))
cfcatch/cfcatch
/cftry
   
!--- Insert Media ---
cftry
cfset QuerySetCell(amazonSELECT, 'Media', 
variables.productinfoARRAY.details[i].Media)
cfcatch/cfcatch
/cftry
   
!--- Insert Manufacturer ---
cftry
cfset QuerySetCell(amazonSELECT, 'Manufacturer', 
variables.productinfoARRAY.details[i].Manufacturer)
cfcatch/cfcatch
/cftry
   
!--- Insert ReleaseDate ---
cftry
cfset QuerySetCell(amazonSELECT, 'ReleaseDate', 
variables.productinfoARRAY.details[i].ReleaseDate)
cfcatch/cfcatch
/cftry
   
!--- Insert Asin ---
cftry
cfset QuerySetCell(amazonSELECT, 'Asin', 
variables.productinfoARRAY.details[i].Asin)
cfcatch/cfcatch
/cftry
   
cfdump expand=yes var=#amazonSELECT#
   
/cfloop
   
cfcatch type=any
!--- cfset amazonCallError = true ---
cfdump var=#cfcatch#cfabort
!--- cfthrow message=Problem executing Amazon.com web 
service invocation. type=AMAZON:FAILURE ---
/cfcatch
   
/cftry

Brian Kotek wrote:

Cutter, I was trying that code already and I'm still getting the error about 
not being able to create a web services stub. Can you post an example of 
exactly what you are filling in for all the variables (except for your 
developer key obviously) so that I can try to determine what's wrong? 
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:212517
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: Amazon AWS

2005-07-22 Thread Cutter (CF-Talk)
Yeah, that's the associate's ID. I tried it without and it broke. Maybe 
you can't make a 'heavy' request without it?

Cutter

Brian Kotek wrote:

Thanks...I'm wondering if this is the issue:

cfset variables.keywordrequestARRAY.tag = [ASSOCID]

I don't think I have an associd (associates id?)...are you passing this 
in? Just for fun, if you remove that line does it still run for you?

Thanks,

Brian



~|
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:212541
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: Working with OPC (Other People's Code)

2005-07-22 Thread Cutter (CF-Talk)
Yeah, I'm finally getting down to rewriting irieradio.com (new site in 
rev only). At least he didn't know how to do any programming...

Cutter

SStewart wrote:
 Yeah, when I first started in CF, I had to deal with the code of my 
 predecessor, he surrounded very page with a single set of cfoutput tags and 
 left justified everything, no indentation at all. It would take me hours just 
 to read it.
 
 I took his name in vain more than a few times
 
 Scott A. Stewart, 
 Web Application Developer
  
 Engineering Consulting Services, Ltd. (ECS)
 14026 Thunderbolt Place, Suite 300
 Chantilly, VA 20151
 Phone: (703) 995-1737
 Fax: (703) 834-5527
  
 Many thousands of years ago, a blue faced Pict stepped on a bloated sheep 
 carcass... and thus the Pipes were born 
  
  the Scottish Rogues
 
 
 -Original Message-
 From: Rick Root [mailto:[EMAIL PROTECTED] 
 Sent: Friday, July 22, 2005 11:30 am
 To: CF-Talk
 Subject: Working with OPC (Other People's Code)
 Importance: Low
 
 rant
 I took over this job from another guy about almost 3 years ago.  Many of 
 the things he built I have rewritten.  In many cases, I found it easier 
 to rewrite them from scratch than to fix them or enhance them.
 
 For example, here is a snippet of his code that exemplifies that type of 
 programming that he did:
 
 
 CFIF #FindNoCase(http://;, EVENTURL)# OR
   #FindNoCase(https://;, EVENTURL)#
 CFELSEIF #Trim(EVENTURL)# IS 
   CFSET EVENTURL = EVENTURL
 CFELSE
   CFSET EVENTURL = http://;  EVENTURL
 /CFIF
 
 
 Here is my version, rewritten:
 
 
 cfif EVENTURL neq  and reFindNoCase(https?://,EVENTURL) eq 0
   cfset EVENTURL = http://;  EVENTURL
 /cfif
 
 
 Life is grand, ain't it?
 
 /rant
 
 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:212569
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: Working with OPC (Other People's Code)

2005-07-22 Thread Cutter (CF-Talk)
Well, at least they like Douglas Adams...

[EMAIL PROTECTED] wrote:
 No lie - I *just* came across this in the code I'm maintaining:
 
 input type=hidden name=stupid value=42 /
 
 NO LIE!
 
 Okay, I'm done with this thread.  Wow, talk about true to life!
 
 Dave
 
 -Original Message-
 From: Jennifer Larkin [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 22, 2005 2:58 PM
 To: CF-Talk
 Subject: Re: Working with OPC (Other People's Code)
 
 
 Definitely been there. I distributed the first thing I ever wrote on
 CF-Talk and about 3 years later I got a support request. I hadn't even
 looked at it in two years, so I opened the file to look something up
 and OH MY GOD THE POUND SIGNS! Pound signs everywhere.
 
 On 7/22/05, Al Everett [EMAIL PROTECTED] wrote:
 
Been there.

On 7/22/05, Matt Osbun [EMAIL PROTECTED] wrote:

Unless, of course, you're currently updating code you wrote during your
humble beginnings...

I wrote *what*?

~|
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:212650
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


OT: CSS and Firefox

2005-07-21 Thread Cutter (CF-Talk)
I can't get my head around this. Small but significant problem with 
external stylesheets. I've got this page (http://s05.seacrets.com) where 
the flash item in the middle of the page is supposed to be flush on the 
top of the div containing it (#primaryContent). This (oddly) is working 
great in IE 6.x, but isn't working within Firefox 1.0.5.

I have a global.css file loading first, setting initial style properties 
of all base elements of the site (header graphic, nav menu, etc.). I use 
another stylesheet to define styles for elements specific to the page 
being viewed. This file may also be used to override style settings set 
previously by the global stylesheet. In this case I'm overriding the 
padding property of the primaryContent Div (well, I am in IE anyway).

I just can't seem to get this secondary style sheet to take. I've run 
the W3C Validators on the page. CSS validates fine, the XHTML only bombs 
on the embed tag used for the flash element (anyone know how to get 
around that?). Anybody with any ideas I am open to suggestions.

Any and all help greatly appreciated,
Cutter

~|
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:212400
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: Amazon AWS

2005-07-20 Thread Cutter (CF-Talk)
Ok, I removed the timeout and received a response. But, I tried to 
cfdump productinfoArray and received a list of java methods instead. 
How do I properly parse my return? (never really worked a web service 
before that returned more than a basic string)

Cutter


Brian Kotek wrote:

I also can't make it work with this (I don't have an associates id)


!--- Build Array for Amazon.com http://Amazon.com Query ---
cfset keywordrequestARRAY.devtag = 1Z5QCJ06Gand the rest of my amazon 
web service user id.
cfset keywordrequestARRAY.asin = B4T6UZ
cfset keywordrequestARRAY.type = heavy

cftry
cfinvoke webservice=http://soap.amazon.com/schemas3/AmazonWebServices.wsdl; 
method=AsinSearchRequest returnvariable=productinfoARRAY timeout=10
cfinvokeargument name=AsinSearchRequest value=#keywordrequestARRAY#/
/cfinvoke
cfcatch type=any
cfdump var=#cfcatch.message#
/cfcatch

/cftry

On 7/19/05, Cutter (CF-Talk) [EMAIL PROTECTED] wrote:
  

I actually tried it both ways after your initial example didn't work for
me (Brian's had it without the 's'). Same message either way

Jonathan Mauney wrote:



The error message you pasted below has schemas as the directory and not 
  

schemas3 as in my example (which is working in my apps).


Jonathan



  

I am trying the code supplied (with the necessary variables) but I keep
getting the following error:

Detail Name: http://soap.amazon.com/schemas/AmazonWebServices.wsdl.
WSDL: http://soap.amazon.com/schemas/AmazonWebServices.wsdl.
java.io.InterruptedIOException: Connection establishment timed out It is
recommended that you use a web browser to retrieve and examine the
requested WSDL document for correctness. If the requested WSDL document
can't be retrieved or it is dynamically generated, it is likely that the
target web service has programming errors.
Message Could not generate stub objects for web service invocation.

Any suggestions?

Cutter

Jonathan Mauney 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:212294
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: Amazon AWS

2005-07-20 Thread Cutter (CF-Talk)
!--- Build Array for Amazon.com Query ---
cfset keywordrequestARRAY.devtag = DEVTAG
cfset keywordrequestARRAY.asin = ASIN
cfset keywordrequestARRAY.tag = ASSOCID
cfset keywordrequestARRAY.type = heavy
   
cftry
cfinvoke 
webservice=http://soap.amazon.com/schemas3/AmazonWebServices.wsdl; 
method=AsinSearchRequest returnvariable=productinfoARRAY
cfinvokeargument name=AsinSearchRequest 
value=#keywordrequestARRAY#/
/cfinvoke

!--- Call Amazon ASIN Search SOAP Interface. ---
cfinvoke

webservice=http://soap.amazon.com/schemas/AmazonWebServices.wsdl;
method=AsinSearchRequest
returnvariable=ProductInfo
cfinvokeargument name=AsinSearchRequest 
value=#SearchRequest#/
/cfinvoke
   
cfdump expand=yes var=#productinfoARRAY.details# ---
cfoutput
Array length: #arraylen(productinfoARRAY.details)#br /
/cfoutput
cfset amazonSELECT = 
QueryNew('ImageURLSmall,ImageURLMedium,ImageURLLarge,ProductName,Authors,Media,Manufacturer,Asin,ReleaseDate')
cfloop index=i from=1 
to=#arraylen(productinfoARRAY.details)# step=1
!--- Add Row To Query ---
cfset QueryAddRow(amazonSELECT)
   
!--- Insert ImageURLSmall ---
cftry
cfset QuerySetCell(amazonSELECT, 
'ImageURLSmall', productinfoARRAY.details[i].ImageURLSmall)
cfcatch/cfcatch
/cftry
   
!--- Insert ImageURLMedium ---
cftry
cfset QuerySetCell(amazonSELECT, 
'ImageURLMedium', productinfoARRAY.details[i].ImageURLMedium)
cfcatch/cfcatch
/cftry
   
!--- Insert ImageURLLarge ---
cftry
cfset QuerySetCell(amazonSELECT, 
'ImageURLLarge', productinfoARRAY.details[i].ImageURLLarge)
cfcatch/cfcatch
/cftry
   
!--- Insert ProductName ---
cftry
cfset QuerySetCell(amazonSELECT, 'ProductName', 
productinfoARRAY.details[i].ProductName)
cfcatch/cfcatch
/cftry
   
!--- Insert Authors ---
cftry
cfset QuerySetCell(amazonSELECT, 'Authors', 
ArrayToList(productinfoARRAY.details[i].authors))
cfcatch/cfcatch
/cftry
   
!--- Insert Artists ---
cftry
cfset QuerySetCell(amazonSELECT, 'Authors', 
ArrayToList(productinfoARRAY.details[i].artists))
cfcatch/cfcatch
/cftry
   
!--- Insert Media ---
cftry
cfset QuerySetCell(amazonSELECT, 'Media', 
productinfoARRAY.details[i].Media)
cfcatch/cfcatch
/cftry
   
!--- Insert Manufacturer ---
cftry
cfset QuerySetCell(amazonSELECT, 
'Manufacturer', productinfoARRAY.details[i].Manufacturer)
cfcatch/cfcatch
/cftry
   
!--- Insert ReleaseDate ---
cftry
cfset QuerySetCell(amazonSELECT, 'ReleaseDate', 
productinfoARRAY.details[i].ReleaseDate)
cfcatch/cfcatch
/cftry
   
!--- Insert Asin ---
cftry
cfset QuerySetCell(amazonSELECT, 'Asin', 
productinfoARRAY.details[i].Asin)
cfcatch/cfcatch
/cftry
   
cfdump expand=yes var=#amazonSELECT#
   
/cfloop
   
cfcatch type=any
cfdump var=#cfcatch#cfabort
/cfcatch
   
/cftry

Brian Kotek wrote:

Cutter, can you post the code you're using (minus your Amazon developer key 
obviously)? I removed the time out but I'm still getting could not create 
stub for web service invocation). Thanks.

On 7/20/05, Cutter (CF-Talk) [EMAIL PROTECTED] wrote:
  

Ok, I removed the timeout and received a response. But, I tried to
cfdump productinfoArray and received a list of java methods instead.
How do I properly parse my return? (never really worked a web service
before that returned more than a basic string)

Cutter

Re: Amazon AWS

2005-07-20 Thread Cutter (CF-Talk)
Whoops, I missed omitting part of an omission. You can also remove the 
following lines of code from the previous post:

Cutter (CF-Talk) wrote:

!--- Call Amazon ASIN Search SOAP Interface. ---
cfinvoke

webservice=http://soap.amazon.com/schemas/AmazonWebServices.wsdl;
method=AsinSearchRequest
returnvariable=ProductInfo
cfinvokeargument name=AsinSearchRequest 
value=#SearchRequest#/
/cfinvoke
   
cfdump expand=yes var=#productinfoARRAY.details# ---



~|
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:212350
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: Amazon AWS

2005-07-19 Thread Cutter (CF-Talk)
I'm trying to pull book info with a book's ISBN (which, as I understand 
it, amazon uses the same number for it's ASIN). I've done a search on 
amazon to verify that they carry the title I'm testing with, but I can't 
seem to get the Web Service to work. I'm working with a code snippet 
adjusted from Brian Kotek's mach-ii bookstore sample app.

Cutter

Jonathan Mauney wrote:

Yes... some parts of it... what are you looking for exactly?

Jonathan
--
 Jonathan Mauney
 Web Application Developer

 1110 WBT AM
 107.9 the LINK [WLNK]
 PersonalityAC(r) Radio Network
 Jefferson-Pilot Communications Co.
--

  

Anyone have a working cf example of using Amazon's AWS?

Cutter





~|
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:212182
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: Amazon AWS

2005-07-19 Thread Cutter (CF-Talk)
I am trying the code supplied (with the necessary variables) but I keep 
getting the following error:

Detail  Name: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. 
WSDL: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. 
java.io.InterruptedIOException: Connection establishment timed out It is 
recommended that you use a web browser to retrieve and examine the 
requested WSDL document for correctness. If the requested WSDL document 
can't be retrieved or it is dynamically generated, it is likely that the 
target web service has programming errors.
Message Could not generate stub objects for web service invocation.

Any suggestions?

Cutter

Jonathan Mauney wrote:

This is what I'm using... I don't remember where I got it. It returns an array 
with all the product details

!--- Build Array for Amazon.com Query ---
cfset keywordrequestARRAY.devtag = DevToken Here
cfset keywordrequestARRAY.asin = ASIN Here
cfset keywordrequestARRAY.tag = Associates ID Here
cfset keywordrequestARRAY.type = heavy

cftry
cfinvoke 
 webservice=http://soap.amazon.com/schemas3/AmazonWebServices.wsdl; 
 method=AsinSearchRequest returnvariable=productinfoARRAY timeout=10
   cfinvokeargument name=AsinSearchRequest 
 value=#keywordrequestARRAY#/
/cfinvoke

Jonathan

  

I'm trying to pull book info with a book's ISBN (which, as I understand 
it, amazon uses the same number for it's ASIN). I've done a search on 
amazon to verify that they carry the title I'm testing with, but I can't 
seem to get the Web Service to work. I'm working with a code snippet 
adjusted from Brian Kotek's mach-ii bookstore sample app.

Cutter

Jonathan Mauney wrote:






~|
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:212225
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: Amazon AWS

2005-07-19 Thread Cutter (CF-Talk)
I actually tried it both ways after your initial example didn't work for 
me (Brian's had it without the 's'). Same message either way

Jonathan Mauney wrote:

The error message you pasted below has schemas as the directory and not 
schemas3 as in my example (which is working in my apps).

Jonathan

  

I am trying the code supplied (with the necessary variables) but I keep 
getting the following error:

Detail  Name: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. 
WSDL: http://soap.amazon.com/schemas/AmazonWebServices.wsdl. 
java.io.InterruptedIOException: Connection establishment timed out It is 
recommended that you use a web browser to retrieve and examine the 
requested WSDL document for correctness. If the requested WSDL document 
can't be retrieved or it is dynamically generated, it is likely that the 
target web service has programming errors.
Message Could not generate stub objects for web service invocation.

Any suggestions?

Cutter

Jonathan Mauney wrote:






~|
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:212255
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


Amazon AWS

2005-07-18 Thread Cutter (CF-Talk)
Anyone have a working cf example of using Amazon's AWS?

Cutter

~|
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:212126
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: Not to start a flame war.....

2005-07-16 Thread Cutter (CF-Talk)
hhhmmm, sounds like mach-ii, or fusebox, or...

Cutter

Matthew Small wrote:
 You wind up with all this controller code spread through hundreds of pages
 / components
 
 What does that mean? Controller code? You write a page that does one small
 section of your entire application, and you use code-behind to abstract the
 business logic from the presentation. It even makes it nice because you can
 write an entire application and give the presentation to a graphic designer
 to work around and he can't mess with the code.  Allaire was preaching that
 5 years ago.
 
 
 And most regular applications are scary! 
 
 What's so scary about writing an application?  I don't mean to be snide, but
 it sounds like you haven't figured out how to break up the application into
 smaller sub-applications. 
 
 
 A lot of VB apps I've seen are very anti-architecture
 So what?  There's plenty of good ones, and there are plenty of bad ones.
 But one point I'll concede - I've never seen a poorly written CF
 application... wait a second, there was that one... 
 
 (redneck voice: Hey y'all, we'll just stick the logic on this here
 button's OnClick!)
 
 So you don't like event-based architecture?  Go look at Mach-II then ask Mr.
 Corfield what he thinks about it.  How about javascript?  Why not look at
 something like the two-selects-related CF tag and tell me that it's not
 event-based?
 
 
 IMHO, ASP.NET is a great technical achievement that got blemished when
 MS's marketing group realized they could sell it as VB for Web apps,
 
 Gee whiz, some of us don't even use VB to write apps.  Lordy, I use c-Sharp.
 
 
 Matthew Small
 Web Developer
 American City Business Journals
 704-973-1045
 [EMAIL PROTECTED]
  
 
 -Original Message-
 From: Joe Rinehart [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, July 14, 2005 7:55 AM
 To: CF-Talk
 Subject: Re: Not to start a flame war.
 
 
Using code-behind (asp.net class) and web forms (viewstate) are two of the
MAJOR advantages of using ASP.NET. 
 
 
 Code-behind is nice, but I've seen it become a pain in the arse with
 really big applications.  You wind up with all this controller code
 spread through hundreds of pages / components, and when your model
 changes, you have to automagically remember which code behinds deal
 with that portion of the model, and go update them.
 
 I think I just have a personal preference for front controllers over
 page controllers.
 
 
It's a web analogy to a regular application
 
 
 And most regular applications are scary!  A lot of VB apps I've seen
 are very anti-architecture (redneck voice: Hey y'all, we'll just
 stick the logic on this here button's OnClick!), and code-behind is
 now letting the same shlock spread to web apps.  Struts, Rails, and,
 well, almost all of the other MVC frameworks make it nigh impossible
 to do this kind of crap, and ASP.NET all but encourages it.
 
 IMHO, ASP.NET is a great technical achievement that got blemished when
 MS's marketing group realized they could sell it as VB for Web apps,
 perpetuating shitty implementations that'll keep hundreds of MCADs
 employed as maintenance programmers for decades.
 
 

~|
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:212064
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: Oh..my...god!

2005-07-06 Thread Cutter (CF-Talk)
cfif (message neq cfcode) or (message neq cfadvice)
Move thread to cfcommunity (please;)
/cfif

Damien McKenna wrote:
Christmas fruit cake is a bit bloating, alright. 

But remember - there's only ONE fruitcake, it just keeps getting
re-gifted.
 
 
 Relatives of mine used to own a bakery and I can categorically state, on
 the record, that there were *definitely*... two... maybe even three
 fruitcakes made.
 

~|
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:211275
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: Shopping carts hosting

2005-06-29 Thread Cutter (CF-Talk)
CFWebstore - low cost, easily configured, can be hosted by most any cf 
host running mx 6.1 and up (and even bd). Easy to update through the 
back-end editor.

Dirk Sieber wrote:

My apologies  in advance - I know this has been answered before, but of 
course, I didn't need the information then...

Anyway, I'm looking for two things:

1) A shopping cart written in CF - This would be for a fairly low-traffic 
site, at least at this point.  I know I could write one, but at this point, I 
don't think it's worth re-inventing the wheel - I'm sure there's something out 
there that'd work.  Desired features:

-easy to update by people who aren't terribly computer knowledgeable

-simple to feature items, put items or classes of them on sale, etc.

-easy to integrate into an existing site.

-on-line credit card payment acceptance would be a big plus, with validation 
against some on-line processor.

-Free or low cost would be a plus.

2) A good place to host #1. :-)

Any advice, pointers, etc would be appreciated!  

Thanks,

Dirk

 





~|
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:210866
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: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Cutter (CF-Talk)
Actually I've got it blocked on our firewall because of the amount of 
exploits that get installed from there...

Bryan Stevenson wrote:

Wowmyspace.com must be huge.hm...no waitI've never heard of 
it?? ;-)

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:210773
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: shopping cart suggestions

2005-06-27 Thread Cutter (CF-Talk)
CFWebStore (http://www.cfwebstore.com). Works great, Fusebox 3 design, 
fairly easy to customize. You could check mine out, but my hosting 
provider is trying to figure out how they broke the JIA (I use it, 
though it's not standard with the store). There are some good 
implimentations out there...

Russ wrote:

We've been thinking about purchasing 2simplify estore at
http://www.cfmxsolutions.com/us/index.cfm?page=product
http://www.cfmxsolutions.com/us/index.cfm?page=productid=1 id=1.  Has
anyone had any experience with this solution, or can anyone recommend any
other shopping card solutions (that work with MX 6.1, but also would be
interested in something that works with CF 4.5).  

 

Russ





~|
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:210583
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: Man, this is so OT...

2005-05-14 Thread Cutter (CF-Talk)
Black

Will Tomlinson wrote:
 Don't attack me for posting this question. Just trust me. 
 
 What color teeshirts do most of you like to wear? 
 
 And if you had a choice of black or white, which would you prefer? 
 
 Thanks!
 
 Will
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it 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:206709
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: Style problems

2005-05-14 Thread Cutter (CF-Talk)
Sorry for the OT, but I've never seen this one before.

In all of my pages I generally call two style sheets, one with site wide 
global style properties (background color, font attributes, menu block 
location, etc.) and one with page specific element style specs. I've 
been developing a new site. Yesterday I moved it from my development 
server to my testing server. Here's where the fun begins...

On my development server everything worked great. Now, on the testing 
server, the first style sheet loads but the second does not? Neither do 
the several .js files which follow it? Anyone ever seen anything like 
this? Here's the URL to show you what I mean:

http://s05.seacrets.com

Any help is greatly appreciated. TIA

Cutter

~|
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:206715
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: Good Miva Merchant Store replacement

2005-05-05 Thread Cutter (CF-Talk)
The online boutique at seacrets.com is a customized cfwebstore. Yes, the 
FB3 code took me a while to figure (and to think I'm trying to learn 
mach-ii now;), but I was able to put together a custom layout in a 
fairly short period of time. I've seen several code updates come out in 
the few months I've had it, including one major upgrade, so Mary Jo 
seems to be constantly working to improve the code and integrate 
suggested features. A few quirks here and there in my dev process, like 
no built in MySQL support, but the dev forum for the product is pretty 
responsive so I cleared this hurdle with little difficulty. I'd say it's 
worth the price...

Cutter

Ray Champagne wrote:

Will do!

Connie DeCinko wrote:
  

Let us know when you get your site up and running with it.  The demo store
on the web site is confusing as it shows too many layout options at once.
I'm curious to see it running with a real store.
 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 04, 2005 12:28 PM
To: CF-Talk
Subject: Re: Good Miva Merchant Store replacement

Well, I haven't been using it that long...as in I just started on it 
this week.  It is written using FuseBox, and it seems to be pretty well 
written if you ask me.  But, so far, I am impressed with both the price 
and the functionality.










~|
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:205637
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: DW error msgs

2005-05-03 Thread Cutter (CF-Talk)
Can anyone tell me why I'm suddenly getting errors in DW anytime I try 
to paste something?

While executine onLoad in PaseFireworksHTML.htm, the following 
JavaScript error(s) occurred:

In file PasteFireworksHTML;
ReferenceError: initialize is not defined

I get that error twice every time I try to paste something into a 
document. I also get the following error anytime I shut down the program:

While executing onLoad in TeamAdminTempDelete.html, the following 
JavaScript error(s) occurred:

In file :TeamAdminTempDelete;
ReferenceError: delTempFile is not defined

Anybody have any ideas?

Cutter

~|
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:205359
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


DW error box

2005-04-29 Thread Cutter (CF-Talk)
Can anyone tell me why I'm suddenly getting errors in DW anytime I try 
to paste something?

While executine onLoad in PaseFireworksHTML.htm, the following 
JavaScript error(s) occurred:

In file PasteFireworksHTML;
ReferenceError: initialize is not defined

I get that error twice every time I try to paste something into a 
document. I also get the following error anytime I shut down the program:

While executing onLoad in TeamAdminTempDelete.html, the following 
JavaScript error(s) occurred:

In file :TeamAdminTempDelete;
ReferenceError: delTempFile is not defined

Anybody have any ideas?

Cutter

~|
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:205101
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: MM + Adobe info

2005-04-21 Thread Cutter (CF-Talk)
I'm not trying to start a long, runaway thread here. I just thought that 
this information from my latest Software Developer magazine 
e-newsletter was pertinent to many here. This excerpt is from an 
interview with Kevin Lynch, MM's chief software architect:

He called ColdFusion and J2EE “the core DNA of our company,” and 
indicated the upcoming takeover will not change anything for developers 
using those technologies. Noting that he could not discuss much due to 
the quiet period mandated by federal rules governing corporate 
acquisitions, Lynch said Macromedia’s recently released update to 
ColdFusion “was the best in at least five years, and that community is 
quite strong.”

Cutter

~|
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:203802
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: MM - Adobe discussions

2005-04-19 Thread Cutter (CF-Talk)
While I admit that the initial news is important to all of us, and the 
various predictions and debates have been enlightening and/or amusing, 
isn't it now time for much of this talk to move over to cf-community?

Matt Woodward wrote:

I agree when you are talking about RIA for the desktop, but even then,
where do you draw the line between a RIA or a common Windows
application? I believe there is too much going about the term RIA. Can
we call a P2P application a RIA since it has internet connectivity? Or
can we only call it a RIA when technologies like Flex, XAML come in
place. What defines a RIA? Internet connectivity? Used technologies?
Amount of interactivity? Type of application?



That was my point I suppose--the line is getting so blurred that the 
distinctions become a bit irrelevant.  If I had to make a distinction I'd say 
it really falls to the delivery and update mechanism.  With a browser-based 
app you (potentially) get a new version of the app every time you open the 
browser.  With a desktop app you have to explicitly download the new version 
and install it.  Tools like Sash, Rebol, and Central put this process 
somewhere in-between--you get notified a new version is available, hit update 
and you're done.  This is what's so interesting to me about this space right 
now, the fact that it's being defined while we watch.  Whatever comes out of 
it it's going to change the way we think about these traditional distinctions 
in my opinion.

Matt



~|
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:203501
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: streaming media comparison

2005-04-14 Thread Cutter (CF-Talk)
Contact Bill Grywalski at SurferNetwork 973-691-7420 to ask about the 
pros and cons of using various media streaming options (he may be quick 
to tell you how cost prohibitive he believes the licensing can be for 
FlashComm, but his opinion may have changed...).

Cutter

Phill B wrote:
 We are going to start streaming video from one of our sites. I want to
 use the communication server but my boss needs me to show him the pros
 and cons for all the choices out there. Can some one point me in the
 right direction?
 
 I've tried the Macromedia site but I couldn't find any comparisons to
 windows media, real video or quick time. I've searched google but all
 i can find are comparison between the players and not the streaming
 aspects of the players. Did that make sense? :-\
 
 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:202867
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: streaming media comparison

2005-04-14 Thread Cutter (CF-Talk)
SurferNetwork has been in the media broadcast business since 1999. They 
deal heavily in multiple streaming options (WM, Real, etc.) I had a 
conversation about FlashComm with him several months ago, and it was 
something he was already researching for another client. He can 
definitely give you some metrics info. I personally use WM9 for the many 
streams we have (seacrets.com/irieradio.com), which we encode here and 
SurferNetwork broadcasts from their vast datacenters.

Cutter

Phill B wrote:
 For now we are going to outsource to a company like Mirror image or
 Vital Stream. That way we can determine the what kind of impact to
 expect on our in house servers. Plus the only investment is a monthly
 hosting fee.
 
 I guess he doesn't use Communication server? i couldn't tel exactly
 what his company uses for streaming.
 
 On 4/14/05, Cutter (CF-Talk) [EMAIL PROTECTED] wrote:
 
Contact Bill Grywalski at SurferNetwork 973-691-7420 to ask about the
pros and cons of using various media streaming options (he may be quick
to tell you how cost prohibitive he believes the licensing can be for
FlashComm, but his opinion may have changed...).

Cutter

 
 
 

~|
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:202875
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: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Cutter (CF-Talk)
Jeff,

You'll have to test this, but you should be able to assign the graphic 
an idea and then, using CSS, set your clip region to clip off the 
excess pixels. Better option may be to place the image in a div (a) 
within another div (b) and set the clip region to div b while setting 
the width and height to div a. You would also want to set the overflow 
CSS attribute to hidden.

Cutter

Jeff Waris wrote:
 Here is what I need to do, hopefully someone out there has done something
 close. I need to remove (or not display) the bottom 30 or so pixels of a
 JPEG file and then display it to the user. Can this be done on the fly?
 Using what? I am running CFMX6.1, so a solution would need to be compatible.
 
 
 Thanks!
 Jeff
 
 
 

~|
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:200773
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: Graphic Manipulation in Coldfusion question.

2005-03-30 Thread Cutter (CF-Talk)
Jeff,

Well, that does change things a little. You could always layer a 
transparent spacer gif over your image. Then if they try the right 
click save option they are actually saving the transparent gif. Or you 
could have a custom right click menu associated with the image that 
doesn't give them the option at all. Unless you want them to be able to 
save your finalized image (cropped), at which point I would suggest 
using the JAI, maybe through the alagad image component or one of the 
other ones that are out there...

Cutter

Jeff Waris wrote:
 Cutter,
 
 Correct me if I am wrong, but you could still right click and save the
 graphic and retain the entire image once saved. I don't want them to be able
 to do that. That's why I was thinking of actually manipulating the image so
 that the image displayed to the user does not contain that part of the
 cropped part of the image.
 
 Jeff
 
 
 
-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 2:28 PM
To: CF-Talk
Subject: Re: Graphic Manipulation in Coldfusion question.


Jeff,

You'll have to test this, but you should be able to assign 
the graphic 
an idea and then, using CSS, set your clip region to clip off the 
excess pixels. Better option may be to place the image in a div (a) 
within another div (b) and set the clip region to div b while setting 
the width and height to div a. You would also want to set the 
overflow 
CSS attribute to hidden.

Cutter
 
 
 
 

~|
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:200783
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: Process CF Page Then Cancel Response

2005-03-24 Thread Cutter (CF-Talk)
Would you be willing to share your vCal code? Was just looking for this 
solution for a side project...

Cutter

Dawson, Michael wrote:
 I built a Click to add this event to your calendar link on our
 intranet site.
 
 The page emails a vCalendar message to the person who is logged in. 
 
 This really isn't a mission-critical feature.  Even if I put a
 confirmation page, that doesn't really mean the email actually got all
 the way to their inbox.
 
 Thanks!
 
 -Original Message-
 From: Spike [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, March 23, 2005 4:07 PM
 To: CF-Talk
 Subject: Re: Process CF Page Then Cancel Response
 
 Use a hidden iframe.
 
 I'd have to wonder why you would want that though.
 
 Surely if you click a link you want to at least know if the operation
 completed successfully?
 
 Spike
 
 

~|
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:199918
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: MySQL 4.1 reliability?

2004-08-09 Thread Cutter (CF-Talk)
I use 4.1.2 on my development system (which I beat the *%$# out of 
everyday) and I have no problems. I think a basic bug tracker would 
probably go fine...

Cutter

Damien McKenna wrote:
 How reliable is MySQL 4.1?I know its flagged as beta but would it be
 safe to use for a small task, e.g. a bug tracker?
 -- 
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 Nothing endures but change. - Heraclitus

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: BLACKSTONE Sneak Preview Posted

2004-08-08 Thread Cutter (CF-Talk)
An example of this sort of application.cfm/property.xml mix is 
documented a little at http://www.benorama.com

Cutter

Jim Davis wrote:
 This kind of deployment is common in the J2EE world - there's rarely any
 source.
 
 In most applications many of the things that you'd normally find in
 Application.cfm are kept in property files (usually XML) - that way changes
 can be made to application without recompiling.
 
 It does take a little effort to train yourself to think this way, but it's
 not really that hard.
 
 Jim Davis
 
 On Sat, 07 Aug 2004 23:01:11 -0400, Chunshen (Don) Li
 [EMAIL PROTECTED] wrote:
 Question, for the Sourceless Deployment, is it possible to have mixed
 mode, that is, say, 99% code are compiled while leaving one or two
 templates like application.cfm source code editable?TIA.

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Flash Remoting

2004-08-04 Thread Cutter (CF-Talk)
Is Flash Remoting automatically loaded with CFMX 6.1? If so, why don't I 
have a flashservices/gateway folder anywhere?

Cutter
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: Password protect a webservice

2004-08-03 Thread Cutter (CF-Talk)
Mark,

I haven't dived into it too deeply yet, but there is the roles 
attribute of cffunction. This is specifically for securing webservices, 
and though I haven't looked at it thoroughly yet I would imagine that it 
is tied into roles set through cflogin...

Cutter

Mark W. Breneman wrote:
 Any one?
 
 
 Mark W. Breneman
 -Cold Fusion Developer
 -Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com http://www.vividmedia.com/
608.270.9770
 
_
 
 From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
 Sent: Monday, August 02, 2004 4:33 PM
 To: CF-Talk
 Subject: Password protect a webservice
 
 Is there a standard way to secure a web service? I have a client that wants
 to download user data through a web service. I know that we can use SSL to
 secure the transfer but is there a way to password protect the web serice.
 
 Oh, and the client plans on accessing this data from MS access. I need to
 make sure that access can deal with what ever security I use.
 
 Mark W. Breneman
 -Cold Fusion Developer
 -Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com http://www.vividmedia.com/
608.270.9770
_

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: [CFCDev] CFC webservice issues - round two

2004-08-03 Thread Cutter (CF-Talk)
Ok, that explains a few things. The CategoryServices.cfc is a facade for 
the category.cfc (which is a catagory object). Man, this stuff is too 
confusing. I wonder if I'm even on the right track now. I have a 
subcategory complex datatype object which has complex datatypes within 
it's own properties. I just read a technote that said I wouldn't be able 
to use CF webservices for Flash connection with these types of objects 
(although it wouldn't have a problem with .Net webservices? I hope that 
technote was out of date...), that I would have to use Flash Remoting.

My biggest problem is finding a solid example of this kind/type of CF 
programming. I am writing a custom e-comm application. Currently I have 
several custom objects written (size, color, design, category, 
subcategory, subsubcategory, itementity, apparelitem, shirtitem, 
appcolor, appsize). Several of these objects are extensions of their 
super object types. Most have been tested, but new requirement has been 
the need for a Flash (MX 2004 Pro) front end (oh fun...) Moving to a 
(somewhat) OO architecture has been interesting enough (though a 
terrific time saver in the end run), but this is placing some whole new 
twists in the equation (with a quickly shortening deadline). If I can 
just get around the first object I think I can get this. Any and all 
help is greatly appreciated, and I will gladly share some solutions when 
I come to them.

Cutter

Nathan Dintenfass wrote:

 I'm jumping into this thread late (been out of town for 5 weeks), so
 hopefully I'm not repeating stuff you've already heard.
 
 The issue is that the web service client (in your example, CF itself) is not
 holding onto the session identifiers (either CFID/CFTOKEN or JSESSIONID,
 depending on whether you are using J2EE sessions on your CF server).Each
 request would need to contain that information for session variables to
 work.
 
 What's worse, it's not that the CF server is not keeping the session
 variables, it's that CF is actually creating a NEW session every time you
 call a method via web services (in the way you have it set up).
 
 You could make part of your API a session identifier that needs to be passed
 with each request, where you would have your clients call some kind of
 getSession method, then use the identifier as one of the arguments each
 time -- you would have to semi-manually set the session identifiers for the
 request then.
 
 More generally, statefulness and web services don't often mix well.If you
 do go down that road, it's usually recommended that you create a separate
 facade that handles the web service interface and session stuff and calls
 back into a separate component that deals with the actual logic -- that
 creates cleaner encapsulation and makes the logic code much more reusable
 in other contexts.
 
 
 
 
 
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Cutter (CF-Talk)
Sent: Tuesday, August 03, 2004 11:04 AM
To: [EMAIL PROTECTED]
Subject: Re: [CFCDev] CFC webservice issues - round two


Thanks to all who have been assisting here. After reading all of the
various replies, as well as a lot of time reading over two tons of
articles, I appear to be (slowly) making some progress.

Currently I am using a CategoryServices.cfc to access the category
object created by my category.cfc. I am able to initialize the object
using the following init() method:

	cffunction name=getCategory access=remote returnType=struct
output=false
		cfargument name=ID type=numeric

		cfscript
			variables.returnStruct = StructNew();
			variables.returnStruct.ID = 0;
			variables.returnStruct.catName = ;
			variables.returnStruct.status = 1;

			if (arguments.ID neq 0)
session.newCat =
CreateObject('component','category5').init(arguments.ID);
			else
session.newCat =
CreateObject('component','category5').init();

			variables.returnStruct.ID = session.newCat.getID();
			variables.returnStruct.catName =
session.newCat.getCategoryName();
			variables.returnStruct.status =
session.newCat.getStatus();
		/cfscript

		cfreturn variables.returnStruct
	/cffunction

I thought that be instantiating the object within a session variable
that it would perpetuate for further method calls along these lines:

cffunction name=deleteCat access=remote returntype=void
output=false
		cfargument name=ID type=numeric

		cfif arguments.ID neq 0
			cfset session.newCat.delete(arguments.ID)
		/cfif
	/cffunction

	cffunction name=setCatName access=remote returntype=void
output=false
		cfargument name=catName type=string
		cfset
session.newCat.setCategoryName(#arguments.catName#)
	/cffunction

	cffunction name=setCatStatus access=remote returntype=void
output=false
		cfargument name=status type=boolean
		cfset session.newCat.setStatus(arguments.status)
	/cffunction

	cffunction name=createCat access=remote returntype=numeric
output=false
		cfscript
			session.newCat.create();
			returnID = session.newCat.getID();
		/cfscript
		cfreturn

Re: (OT) Firewall

2004-08-02 Thread Cutter (CF-Talk)
I use a Watchguard Firebox X500 (scalable hardware solution, very 
reasonable, with lots of add ons). The new NetGear Gigabit switches are 
extremely reasonable. Still using a Cisco router...

Cutter

Michael Dinowitz wrote:
 Anyone know of a god network firewall system? Zonealarm is good for a
 single machine, but I think that mothernature.com needs a system wide
 firewall. What do you use, what do you suggest?
 Thanks
 
 -- 
 Michael Dinowitz
 http://www.houseoffusion.com
 For all your ColdFusion needs

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CFC webservice issues - round two

2004-07-31 Thread Cutter (CF-Talk)
Thank you all again for your assistance. Yeah, it was doing it for both 
create and update, I didn't realize which error I had up at the time 
(looking at this too long.)

Ok, I think I'm beginning to understand a little bit. So, when I called 
my init method I created an object (aCat). Calling update or create is 
effectively creating a new object, not really updating or creating (sql 
calls) from the changes I've made to the object (aCat) through the set 
methods I had called to change the object's properties (which, from what 
it seems you are telling me, aren't really changing the 'aCat' object at 
all, unless the get/set methods CF automatically creates when you define 
cfproperties are 'public' rather than 'remote'.)

I've never really tried to do webservices, and wouldn't normally mess 
with it in this instance except we're experimenting with a Flash 7 front 
end interface.

So, how should I go about this? Should my init() method be 'remote' 
while my other methods are 'public'? What about instances where a 
'property' of my object is another custom object?

Is it just me, or is there really a lack of material out there on how to 
do this sort of thing effectively? I recently got a CD with 450+ 
articles from CFDJ over the last 4 years, and none of this seems to be 
covered very well...

Cutter

Too much SysAd work, and not enough Code, makes my hair fall out as I 
fall further behind the power curve... - Anonymous
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFC webservice objects

2004-07-30 Thread Cutter (CF-Talk)
Sorry for cross posting this to more than one list, I'm sure some of you 
will see this twice.

OK, maybe I'm just going crazy. I still can't get a CFC object to work 
correctly. I've seen 75 examples, and each one is different in even it's 
most basic form (many from the same authors). I even resorted to using 
DWMX 2004 to create a CFC, and create the call for it in another page 
(shiver). What's going on? I created a cfc to use as a webservice with 3 
properties and a single init() method. I know that CF automatically 
creates get() and set() methods for each of the properties. Not rocket 
science (at least I didn't think so) but I'm just not getting anything. 
Here's the code:

//** Here's the category5.cfc **//

cfcomponent displayName=category5
	cfproperty name=ID type=numeric
	cfproperty name=categoryName type=string
	cfproperty name=status type=boolean
	
	cffunction name=init access=remote returnType=category5
		cfargument name=ID type=numeric default=0
		
		cfif arguments.ID neq 0
			cfquery name=cat datasource=#application.config.DSN#
select	txtBoutCat as category,
		blActive as status
from	tblboutcat2
where	intBoutCatID = cfqueryparam cfsqltype=cf_sql_integer 
value=#arguments.ID#
			/cfquery
			
			cfif cat.recordcount eq 1
cfscript
	this.ID = arguments.ID;
	this.category = cat.category;
	this.status = cat.status;
/cfscript
			/cfif
		/cfif
		
		cfreturn this
	/cffunction
/cfcomponent

//** Here's a call to the init **//

cfinvoke
webservice=#[the path]#/category5.cfc?wsdl
method=init
returnvariable=aCat
	cfinvokeargument name=ID value=1/
/cfinvoke

//** And here's the cfdump of #aCat#. Notice the lack of properties **//

object of #[heres_that_path_again]#.Category5_Type

Methods hashCode (returns int)
equals (returns boolean)
getStatus (returns java.lang.Boolean)
setStatus (returns void)
getID (returns java.lang.Double)
setID (returns void)
getSerializer (returns interface org.apache.axis.encoding.Serializer)
getDeserializer (returns interface org.apache.axis.encoding.Deserializer)
getTypeDesc (returns org.apache.axis.description.TypeDesc)
getCategoryName (returns java.lang.String)
setCategoryName (returns void)
getClass (returns java.lang.Class)
wait (returns void)
wait (returns void)
wait (returns void)
notify (returns void)
notifyAll (returns void)
toString (returns java.lang.String)

Any assistance is greatly appreciated. (Just one solid reference...)

Cutter
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: CFC webservice objects

2004-07-30 Thread Cutter (CF-Talk)
Yes, It looks like it. The methods are there for the accompanying 
properties. But I passed an invoke argument of id=1 and see nothing.
I also tried #aCat.getCategoryName#, which returned nothing at all (the 
init should have set all of these details...) Anybody?...

Cutter

Barney Boisvert wrote:

 It sure looks like the properties are there.get/setID,
 get/setCategroyName, get/setStatus.
 
 cheers,
 barneyb
 
 On Fri, 30 Jul 2004 17:37:39 -0400, Cutter (CF-Talk)
 [EMAIL PROTECTED] wrote:
 Sorry for cross posting this to more than one list, I'm sure some of you
 will see this twice.

 OK, maybe I'm just going crazy. I still can't get a CFC object to work
 correctly. I've seen 75 examples, and each one is different in even it's
 most basic form (many from the same authors). I even resorted to using
 DWMX 2004 to create a CFC, and create the call for it in another page
 (shiver). What's going on? I created a cfc to use as a webservice with 3
 properties and a single init() method. I know that CF automatically
 creates get() and set() methods for each of the properties. Not rocket
 science (at least I didn't think so) but I'm just not getting anything.
 Here's the code:

 //** Here's the category5.cfc **//

 cfcomponent displayName=category5
cfproperty name=ID type=numeric
cfproperty name=categoryName type=string
cfproperty name=status type=boolean

cffunction name=init access=remote returnType=category5
 cfargument name=ID type=numeric default=0

 cfif arguments.ID neq 0
cfquery name=cat 
 datasource=#application.config.DSN#
selecttxtBoutCat as category,
blActive as status
from tblboutcat2
whereintBoutCatID = cfqueryparam 
 cfsqltype=cf_sql_integer
 value=#arguments.ID#
/cfquery

cfif cat.recordcount eq 1
cfscript
 this.ID = arguments.ID;
 this.category = cat.category;
 this.status = cat.status;
/cfscript
/cfif
 /cfif

 cfreturn this
/cffunction
 /cfcomponent

 //** Here's a call to the init **//

 cfinvoke
webservice=#[the path]#/category5.cfc?wsdl
method=init
returnvariable=aCat
cfinvokeargument name=ID value=1/
 /cfinvoke

 //** And here's the cfdump of #aCat#. Notice the lack of properties **//

 object of #[heres_that_path_again]#.Category5_Type

 Methods hashCode (returns int)
 equals (returns boolean)
 getStatus (returns java.lang.Boolean)
 setStatus (returns void)
 getID (returns java.lang.Double)
 setID (returns void)
 getSerializer (returns interface org.apache.axis.encoding.Serializer)
 getDeserializer (returns interface org.apache.axis.encoding.Deserializer)
 getTypeDesc (returns org.apache.axis.description.TypeDesc)
 getCategoryName (returns java.lang.String)
 setCategoryName (returns void)
 getClass (returns java.lang.Class)
 wait (returns void)
 wait (returns void)
 wait (returns void)
 notify (returns void)
 notifyAll (returns void)
 toString (returns java.lang.String)

 Any assistance is greatly appreciated. (Just one solid reference...)

 Cutter



 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: SQL Help Please?

2004-07-30 Thread Cutter (CF-Talk)
Maybe I'm misunderstanding what you are trying to do, but try this

Select count(Referer) as refcount
 From myTable
Where Referer = #myUserID#

Cutter

Dave Phillips wrote:

 Hi guys,
 
 I hope this isn't too far off topic, but I'm stuck on an SQL issue and 
 really need some help.
 
 I have a table with these two fields:
 
 UserID(int)
 Referer (int)
 
 UserID is obviously my user's ID number.Referer refers to the UserID 
 of the person who referred them.
 
 I need to run an SQL Query that returns to me the total number of 
 records in which a UserID is in the Referer.
 
 For example, Ted is UserID 1 and John is UserID 2
 
 Ted Refers, Jan, Jerry and Jack
 
 John Refers Mary and Bill
 
 I now have 7 records, all unique UserID's but the referer for Jan, Jerry 
 and Jack is 1 and the referer for Mary and Bill is 2
 
 I want to run an SQL Query that returns the following results:
 
 UserIDNumReferred
 13
 22
 
 I know it's GOT to be possible to do it all in SQl.I know I can do it 
 in CF with no problem by looping over my userid list, but that takes way 
 too long.
 
 Any ideas?
 
 Thanks!
 
 Dave

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFC webservice issues - round two

2004-07-30 Thread Cutter (CF-Talk)
OK, I finally have my init() method working, as well as learning some of 
the bugs (like the cfargument required=...now that's annoying). Here's a 
new one. I have a create method to write to the db. In the DWMX 
WebServices panel I can see the method (this applies to my update method 
as well). But when I call the method [aCat.create()] I get the following 
error on the page:

Error Occurred While Processing Request
The selected method update was not found.
Either there are no methods with the specified method name and argument 
types, or the method update is overloaded with arguments types that 
ColdFusion can't decipher reliably. If this is a Java object and you 
verified that the method exists, you may need to use the javacast 
function to reduce ambiguity.

Here is the code of the method:

cffunction name=create access=remote returntype=void 
hint=Requires that you have already called the setCategoryName() and 
setStatus() methods of this object
			
		cftransaction
			cfquery name=qCat datasource=#application.config.DSN#
insert into tblboutcat2 (
	txtBoutCat,
	blActive )
values (
	cfqueryparam cfsqltype=cf_sql_varchar 
value=#this.categoryName# null=#YesNoFormat(NOT 
Len(Trim(this.categoryName)))#,
	cfqueryparam cfsqltype=cf_sql_tinyint value=#this.status# 
null=#YesNoFormat(NOT Len(Trim(this.status)))# )
			/cfquery
		
			cfquery name=qID datasource=#application.config.DSN#
select 	max(intBoutCatID) as ID
from	tblboutcat2
			/cfquery
			
			cfset this.ID = qID.ID
		/cftransaction
	/cffunction

And here's the lines of the wsdl document that make me wonder:

- wsdl:operation name=create
wsdl:input name=createRequest message=impl:createRequest /
wsdl:output name=createResponse message=impl:createResponse /
wsdl:fault name=CFCInvocationException 
message=impl:CFCInvocationException /
/wsdl:operation

Once again, any suggestions are appreciated.

Cutter
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: OT: iframe and mozilla

2004-07-28 Thread Cutter (CF-Talk)
I'm using Mozilla 1.7.1 and iframes work fine for me. Don't know how 
much of a difference Firefox is...

Cutter

CFDEV wrote:
 Hi there,
 
 
 I have an ifram for a wysiwyg editor I made that is only working with IE..
 i'm looking at having it working with mozilla firefox.. does anyone know a
 site or somehtingfor good information on ifram in mozilla... i looked at
 google but did'nt quite found what i'm looking for..
 
 
 Thanks
 
 
 Patrick

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Hotel scheduling

2004-07-28 Thread Cutter (CF-Talk)
I may have asked this some time way back, but requirements changed to 
make it unnecessary at the time. I am looking for a prebuilt package to 
handle hotel reservation scheduling and management. Any body know of 
anything?

Cutter
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: MediaPlayer

2004-07-20 Thread Cutter (CF-Talk)
Rick,

I would look into using WM9 as opposed to WM7 (fairly wide distribution, 
so it shouldn't be much of a stretch.) MS has full documentation for 
control in the SDK, and an active forum on their developer's site, which 
may give you the information you need. If I had a little more time I 
would try to research this for you, but I can tell you from experience 
that the WM9 codec is much better than the WM7 codec, with better 
compression and less loss.

Cutter

cfhelp wrote:
 I have built a simple JukeBox for the CF_Nuke Portal that embeds MediaPlayer
 and plays files from directories on your site.
 
 
 Here is the script that embeds the Mediaplayer does anyone know how I can
 reload the page when a song ends?
 
 var WMP7;
 
 
 if ( navigator.appName != Netscape ){
WMP7 = new ActiveXObject('WMPlayer.OCX');
 }
 
 
 if ( WMP7 )
 {
document.write ('OBJECT ID=MediaPlayer ');
document.write (' CLASSID="">
document.write (' standby=Loading Microsoft Windows Media Player
 components...');
document.write (' TYPE=application/x-oleobject width=140
 height=40');
document.write ('PARAM NAME=url
 VALUE=cfoutput#URL_Path#/cfoutput');
document.write ('PARAM NAME=AutoStart VALUE=true');
document.write ('PARAM NAME=ShowControls VALUE=1');
document.write ('PARAM NAME=uiMode VALUE=mini');
document.write ('/OBJECT');
 }
 
 
 else
 {
//IE Code
document.write ('OBJECT ID=MediaPlayer ');
document.write ('CLASSID="" ');
document.write
 ('CODEBASE="">
 .cab#Version=6,4,5,715 ');
document.write ('standby=Loading Microsoft Windows Media Player
 components... ');
document.write ('TYPE=application/x-oleobject width=140
 height=40');
document.write ('PARAM NAME=FileName
 VALUE=cfoutput#URL_Path#/cfoutput');
document.write ('PARAM NAME=AutoStart VALUE=true');
document.write ('PARAM NAME=ShowControls VALUE=1');
 
 
//Netscape code
document.write (' Embed type=application/x-mplayer2');
document.write ('
 pluginspage=http://www.microsoft.com/windows/windowsmedia/');
document.write ('filename=cfoutput#URL_Path#/cfoutput');
document.write ('src="">
document.write ('Name=MediaPlayer');
document.write ('ShowControls=1');
document.write ('ShowDisplay=0');
document.write ('ShowStatusBar=1');
document.write ('width=290');
document.write ('height=40');
document.write (' /embed');
 
 
document.write ('/OBJECT');
 }
 
 Rick Eidson
 Partner  CTO
 ArcRiver Technology, LLC
 ASP, PHP, PERL, Cold Fusion Hosting Kansas City
 http://www.arcriver.com/ http://www.arcriver.com/
 
 
 Kansas City Musicians
 http://www.kcjukebox.com/

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Init() method

2004-07-18 Thread Cutter (CF-Talk)
So, I have the CFC of which I am trying to start on some webservices 
stuff. Here is a basic object CFC with it's init function (and nothing 
else.) Following the code is a copy of wsdl I'm getting back.

cfcomponent displayname=Category
	cfproperty name=ID type=numeric default=0
	cfproperty name=category type=string
	cfproperty name=status type=boolean

	cffunction name=init access=remote output=true returntype=struct
		cfargument name=ID type=numeric default=0
		cfoutput
			script
alert('we are here');
			/script
		/cfoutput
		cfscript
			instance = structNew();
			instance.ID = 0;
			instance.category = ;
			instance.status = 1;
		/cfscript
		
		cfif arguments.ID neq 0
			cfquery name=cat datasource=#application.config.DSN#
select	txtBoutCat as category,
		blActive as status
from	tblboutcat2
where	intBoutCatID = cfqueryparam cfsqltype=cf_sql_integer 
value=#arguments.ID#
			/cfquery
			
			cfif cat.recordcount eq 1
cfscript
	instance.ID = arguments.ID;
	instance.category = cat.category;
	instance.status = cat.status;
/cfscript
			/cfif
		/cfif
		cfreturn this
	/cffunction
/cfcomponent

***Error Msg In WSDL***

?xml version=1.0 encoding=UTF-8?
wsdl:definitions 
targetNamespace=http://test.seacrets.com.cfcomponents.system.seacrets 
xmlns:impl=http://test.seacrets.com.cfcomponents.system.seacrets 
xmlns:intf=http://test.seacrets.com.cfcomponents.system.seacrets 
xmlns:apachesoap=http://xml.apache.org/xml-soap 
xmlns:wsdlsoap=http://schemas.xmlsoap.org/wsdl/soap/ 
xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/ 
xmlns:xsd=http://www.w3.org/2001/XMLSchema 
xmlns:tns1=http://rpc.xml.coldfusion 
xmlns:wsdl=http://schemas.xmlsoap.org/wsdl/ 
xmlns=http://schemas.xmlsoap.org/wsdl/wsdl:typesschema 
xmlns=http://www.w3.org/2001/XMLSchema 
targetNamespace=http://xml.apache.org/xml-soapimport 
namespace=http://schemas.xmlsoap.org/soap/encoding//complexType 
name=mapItemsequenceelement name=key nillable=true 
type=xsd:string/element name=value nillable=true 
type=xsd:string//sequence/complexTypecomplexType 
name=Mapsequenceelement name=item minOccurs=0 
maxOccurs=unbounded 
type=apachesoap:mapItem//sequence/complexType/schemaschema 
xmlns=http://www.w3.org/2001/XMLSchema 
targetNamespace=http://rpc.xml.coldfusionimport 
namespace=http://schemas.xmlsoap.org/soap/encoding//complexType 
name=CFCInvocationExceptionsequence//complexType/schema/wsdl:types
wsdl:message name=CFCInvocationException
wsdl:part name=fault type=tns1:CFCInvocationException/
/wsdl:message
wsdl:message name=initRequest
wsdl:part name=ID type=xsd:double/
/wsdl:message
wsdl:message name=initResponse
wsdl:part name=initReturn type=apachesoap:Map/
/wsdl:message
wsdl:portType name=testthis
wsdl:operation name=init parameterOrder=ID
 wsdl:input name=initRequest message=impl:initRequest/
 wsdl:output name=initResponse message=impl:initResponse/
 wsdl:fault name=CFCInvocationException 
message=impl:CFCInvocationException/
/wsdl:operation
/wsdl:portType
wsdl:binding name=testthis.cfcSoapBinding type=impl:testthis
wsdlsoap:binding style=rpc 
transport=http://schemas.xmlsoap.org/soap/http/
wsdl:operation name=init
 wsdlsoap:operation soapAction=/
 wsdl:input name=initRequest
wsdlsoap:body use=encoded 
encodingStyle=http://schemas.xmlsoap.org/soap/encoding/ 
namespace=http://test.seacrets.com.cfcomponents.system.seacrets/
 /wsdl:input
 wsdl:output name=initResponse
wsdlsoap:body use=encoded 
encodingStyle=http://schemas.xmlsoap.org/soap/encoding/ 
namespace=http://test.seacrets.com.cfcomponents.system.seacrets/
 /wsdl:output
 wsdl:fault name=CFCInvocationException
wsdlsoap:fault use=encoded 
encodingStyle=http://schemas.xmlsoap.org/soap/encoding/ 
namespace=http://test.seacrets.com.cfcomponents.system.seacrets/
 /wsdl:fault
/wsdl:operation
/wsdl:binding
wsdl:service name=testthisService
wsdl:port name=testthis.cfc binding=impl:testthis.cfcSoapBinding
 wsdlsoap:address 
location=http://192.168.44.45/seacrets/system/cfcomponents/com/seacrets/test/testthis.cfc/
/wsdl:port
/wsdl:service
/wsdl:definitions

Why can't I get this to work?

Cutter
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




  1   2   3   >