Re: Problems working with ASMX web services

2002-11-01 Thread jeff tapper
Well, the first problem seems to be that you arent referencing the WSDL 
file in the URL, so You will need to append the ?wsdl to the end of 
it.  Beyond that, I'm still having problems accessing that particular web 
service, which i suspect has to do with this line from the WSDL file:
 soap:binding transport=http://schemas.xmlsoap.org/soap/http; 
style=document /

I'm not sure if CFMX knows how to process this.  When i try to run it like 
this:
   cfinvoke 
webservice=http://www.interpressfact.net/webservices/getAds.asmx?wsdl; 
search=#FORM.search# method=adSearch returnvariable=jobs

I get the following error:
Could not generate stub objects for web service invocation.
Name: http://www.interpressfact.net/webservices/getAds.asmx?wsdl.
WSDL: http://www.interpressfact.net/webservices/getAds.asmx?wsdl.
java.io.IOException: Type http://www.w3.org/2001/XMLSchema:schema is 
referenced but not defined.

I know that AXIS in CFMX likes to consume web services which use a Binding 
Style=RPC

So far as I know, CFMX is unable to consume web services using a different 
style of binding.


At 11:35 AM 11/1/2002 -0500, Pete Ruckelshaus wrote:
I'm trying to do a proof of concept for a project that I'm working on; my 
employer is headed towards going .NET, probably in the 18-24 month 
timeframe.  I want to build a content management system that uses web 
services to exchange data so that when the .NET upgrade occurs, we won't 
have to rewrite everything from Cold Fusion.  Anyway, I found some 
services on xmethods.net that I want to try out but I can't figure out how 
to get it to work properly.

For example, in trying to connect to this service 
http://www.xmethods.net/ve2/ViewListing.po?serviceid=151707 (WSDL 
definition is here 
http://www.interpressfact.net/webservices/getAds.asmx?wsdl).  I am using 
this code:

cfparam name=form.action default=
cfswitch expression=#FORM.action#
  cfcase value=submit
   cfinvoke 
 webservice=http://www.interpressfact.net/webservices/getAds.asmx; 
 search=#FORM.search# method=adSearch returnvariable=jobs
   cfoutput
   Title: #jobs.title#br
   adText: #jobs.adText#br
   website: #jobs.website#br
   adUrl: #jobs.adUrl#br
   category: #jobs.category#br
   email: #jobs.email#br
   postdate: #jobs.postdate#
   /cfoutput
  /cfcase
  cfdefaultcase
   form action=cfoutput#CGI.script_name#/cfoutput method=post
Search: input type=text name=search input type=submit 
 name=action value=submit
   /form
  /cfdefaultcase
/cfswitch

which, to me, seems like it should be correct.  However, I get an error 
message:

   Could not generate stub objects for web service invocation.
   Name: http://www.interpressfact.net/webservices/getAds.asmx. WSDL: 
 http://www.interpressfact.net/webservices/getAds.asmx. 
 java.lang.NullPointerException 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.


I have Ben's Advanced CFMX and have gone over it, but the section on 
using .ASMX resources is pretty brief and I feel like I'm missing 
something.  What am I doing wrong?

Thanks

Pete


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



Re: Question About Macromedia Docs Naming Conventions

2002-11-01 Thread jeff tapper
In the advanced CF class, there are a list of Recommended prefixes.  The 
ones which come to mind are:
a - array
st - structure
b - boolean
w - wddx
x - xml


At 02:06 PM 11/1/2002 -0600, you wrote:
Howdy,

Am working thru Ben Forta's Certification Study Guide and have a
question. He makes reference in a couple of places to MM's documentation
and training materials that recommend prefixing complex data (arrays,
structures, etc) with lowercase letters (ex: a for arrays, st for
structures). I don't have access to any formalized training materials,
but I am curious as to what MM documentation he is referring to. Anyone
know?

Thanks.

Chris Montgomerymonty  airtightweb.com

--
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603


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



Re: Cfqueryparam and IN

2002-11-01 Thread jeff tapper
if memory serves, you'll want a query param for each of the values in the 
in statement, something like:

cfset list = 203,1967
SELECT *
FROM table
WHERE VALUE IN (
cfloop index=i list=#theList#
 cfqueryparam value=i cfsqltype=CF_SQL_INTEGER,
/cfloop
)


At 03:15 PM 11/1/2002 -0500, you wrote:
I have a query that I had been just comparing one value so I could use a
cfqueryparam of varchar, now that same variables may be passing something
like 203,197 meaning that a sales rep belongs to each of those groups. So I
need to change my query to something IN ('203','197') , but cfqueryparam
doesn't let me do this. Do I need to use something else besides cfqueryparam
or is there a setting I am not seeing that will allow me to use cfqueryparam
and this?

Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Company
http://www.dixonusa.com

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



Re: Create table

2002-10-23 Thread jeff tapper
If I'm not mistaken it would be:
cfquery datasource=#DataSourceName#
 CREATE TABLE

#Form.UserFirstName#_#Form.UserMiddleName#_#Form.UserLastName#
 (
 BookmarkID IDENTITY NOT NULL PRIMARY KEY,
 BookmarkName VARCHAR(255),
 BookmarkCategory VARCHAR(255),
 BookmarkURL VARCHAR(255),
 BookmarkDescription TEXT,
 BookmarkAdded DATETIME,
 BookmarkVisits INT,
 BookmarkRating VARCHAR(50),
 BookmarkLastVisit DATETIME
 );
/cfquery

At 11:56 AM 10/24/2002 +1000, you wrote:
What would be the SQL Server equivalent of the following code (particularly
the COUNTER attribute)?:

cfquery datasource=#DataSourceName#
 CREATE TABLE

#Form.UserFirstName#_#Form.UserMiddleName#_#Form.UserLastName#
 (
 BookmarkID COUNTER NOT NULL PRIMARY KEY,
 BookmarkName TEXT(255),
 BookmarkCategory TEXT(255),
 BookmarkURL TEXT(255),
 BookmarkDescription MEMO,
 BookmarkAdded DATETIME,
 BookmarkVisits NUMBER,
 BookmarkRating TEXT(50),
 BookmarkLastVisit DATETIME
 );
/cfquery

Cheers!

Peter Tilbrook
Project Officer
Strategic Development
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2600

Telephone: (02) 6213 6731
Facsimile: (02) 6213 7287



**
The information contained in this e-mail, and any attachments to it, is
intended for the use of addressee and is confidential.  If you are not
the intended recipient, you must not use, disclose, read, forward, copy or
retain any of the information.  If you have received this e-mail in
error, please delete it and notify the sender by return e-mail or telephone.
The Commonwealth does not warrant that any attachments are free from
viruses or any other defects.  You assume all liability for any loss, 
damage, or
other consequences which may arise from opening or using the attachments.

**

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



Re: Weather WDDX

2002-09-06 Thread jeff tapper

I dont know about a WDDX version, but there is a weather webservice you can 
easily call from CFMX.  Heres the code to call it:

!--- /weatherclient.cfm
created 4/25/02 by Jeff Tapper
Remotesite Technologies
[EMAIL PROTECTED]

Change History:

Usage:
A web service client which leverages the vbws weather service
---
cftry
cfparam name=form.zipcode default=
cfoutputform 
action=http://#cgi.server_name#:#cgi.SERVER_PORT##cgi.script_name#?#cgi.query_string#;
 
method=post
table
tr
td colspan=2Enter a zipcode below to retrive the current weather./td/tr
trtdZipcode/tdtdinput type=text name=zipcode 
value=#form.zipcode#/td/tr
td colspan=2input type=submit name=submit value=Get 
Weather/td/tr
/table
/form/cfoutput
cfif not structisEmpty(form)
  cfinvoke 
webservice=http://www.vbws.com/services/weatherretriever.asmx?WSDL; 
method=GetWeather returnVariable=stWeather zipcode=#form.zipcode#/

 cfoutput
 h1Current Weather For #form.zipcode#/h1
 table cellspacing=2 cellpadding=2 border=0
 tr
 tdLast Updated/td
 td#stWeather.LastUpdated#/td
 /tr
 tr
 tdCurrent Temp/td
 td#stWeather.CurrentTemp#/td
 /tr
 tr
 tdCurrent Conditions/td
 td#stWeather.Conditions#/td
 /tr
 tr
 td colspan=2img src=#stWeather.IconUrl# 
alt=#stWeather.conditions# border=1/td
 /tr
 tr
 tdBarometer/td
 td#stWeather.Barometer# #stWeather.BarometerDirection#/td
 /tr

 tr
 tdHumidity/td
 td#stWeather.Humidity#/td
 /tr

 /table
 /cfoutput
/cfif
cfcatch
cfdump var=#cfcatch#
/cfcatch
/cftry
At 05:17 PM 9/6/2002 +0100, you wrote:
Any link (reference) to get WDDX packet to view Weather (London) in our
company's Intranet home page?

Shahzad Butt (Development Engineer)

JJ FastFood Distribution Ltd.
Office:  +44 (0) 1992 701 722
Mobile: +44 (0) 7803 584 873
Fax: +44 (0) 1992 701 604

7 Solar Way, Innova Park, Enfield, London, EN3 7XY



**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**



__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Weather Web Service (Re: Weather WDDX)

2002-09-06 Thread jeff tapper

Not off the top of my head.  Have you tried submitting a non-us postal code 
to this web service?  im not sure if its gonna work or not, as I havent 
tried, but there is no harm in trying...

At 04:24 PM 9/6/2002 -0400, you wrote:
Do you know of one for Canadian or International weather?

- Original Message -
From: jeff tapper [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, September 06, 2002 4:10 PM
Subject: Re: Weather WDDX


  I dont know about a WDDX version, but there is a weather webservice you
can
  easily call from CFMX.  Heres the code to call it:
 
  !--- /weatherclient.cfm
  created 4/25/02 by Jeff Tapper
  Remotesite Technologies
  [EMAIL PROTECTED]
 
  Change History:
 
  Usage:
  A web service client which leverages the vbws weather service
  ---
  cftry
  cfparam name=form.zipcode default=
  cfoutputform
 
action=http://#cgi.server_name#:#cgi.SERVER_PORT##cgi.script_name#?#cgi.que
ry_string#
  method=post
  table
  tr
  td colspan=2Enter a zipcode below to retrive the current
weather./td/tr
  trtdZipcode/tdtdinput type=text name=zipcode
  value=#form.zipcode#/td/tr
  td colspan=2input type=submit name=submit value=Get
  Weather/td/tr
  /table
  /form/cfoutput
  cfif not structisEmpty(form)
cfinvoke
  webservice=http://www.vbws.com/services/weatherretriever.asmx?WSDL;
  method=GetWeather returnVariable=stWeather zipcode=#form.zipcode#/
 
   cfoutput
   h1Current Weather For #form.zipcode#/h1
   table cellspacing=2 cellpadding=2 border=0
   tr
   tdLast Updated/td
   td#stWeather.LastUpdated#/td
   /tr
   tr
   tdCurrent Temp/td
   td#stWeather.CurrentTemp#/td
   /tr
   tr
   tdCurrent Conditions/td
   td#stWeather.Conditions#/td
   /tr
   tr
   td colspan=2img src=#stWeather.IconUrl#
  alt=#stWeather.conditions# border=1/td
   /tr
   tr
   tdBarometer/td
   td#stWeather.Barometer# #stWeather.BarometerDirection#/td
   /tr
 
   tr
   tdHumidity/td
   td#stWeather.Humidity#/td
   /tr
 
   /table
   /cfoutput
  /cfif
  cfcatch
  cfdump var=#cfcatch#
  /cfcatch
  /cftry
  At 05:17 PM 9/6/2002 +0100, you wrote:
  Any link (reference) to get WDDX packet to view Weather (London) in our
  company's Intranet home page?
  
  Shahzad Butt (Development Engineer)
  
  JJ FastFood Distribution Ltd.
  Office:  +44 (0) 1992 701 722
  Mobile: +44 (0) 7803 584 873
  Fax: +44 (0) 1992 701 604
  
  7 Solar Way, Innova Park, Enfield, London, EN3 7XY
  
  
  
  **
  This email and any files transmitted with it are confidential and
  intended solely for the use of the individual or entity to whom they
  are addressed. If you have received this email in error please notify
  the system manager.
  
  This footnote also confirms that this email message has been swept by
  MIMEsweeper for the presence of computer viruses.
  
  www.mimesweeper.com
  **
  
  
  
 

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weather WDDX

2002-09-06 Thread jeff tapper

nevermind, just tried it with a canadian zipcode and it didnt work

At 04:24 PM 9/6/2002 -0400, you wrote:
Do you know of one for Canadian or International weather?

- Original Message -
From: jeff tapper [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, September 06, 2002 4:10 PM
Subject: Re: Weather WDDX


  I dont know about a WDDX version, but there is a weather webservice you
can
  easily call from CFMX.  Heres the code to call it:
 
  !--- /weatherclient.cfm
  created 4/25/02 by Jeff Tapper
  Remotesite Technologies
  [EMAIL PROTECTED]
 
  Change History:
 
  Usage:
  A web service client which leverages the vbws weather service
  ---
  cftry
  cfparam name=form.zipcode default=
  cfoutputform
 
action=http://#cgi.server_name#:#cgi.SERVER_PORT##cgi.script_name#?#cgi.que
ry_string#
  method=post
  table
  tr
  td colspan=2Enter a zipcode below to retrive the current
weather./td/tr
  trtdZipcode/tdtdinput type=text name=zipcode
  value=#form.zipcode#/td/tr
  td colspan=2input type=submit name=submit value=Get
  Weather/td/tr
  /table
  /form/cfoutput
  cfif not structisEmpty(form)
cfinvoke
  webservice=http://www.vbws.com/services/weatherretriever.asmx?WSDL;
  method=GetWeather returnVariable=stWeather zipcode=#form.zipcode#/
 
   cfoutput
   h1Current Weather For #form.zipcode#/h1
   table cellspacing=2 cellpadding=2 border=0
   tr
   tdLast Updated/td
   td#stWeather.LastUpdated#/td
   /tr
   tr
   tdCurrent Temp/td
   td#stWeather.CurrentTemp#/td
   /tr
   tr
   tdCurrent Conditions/td
   td#stWeather.Conditions#/td
   /tr
   tr
   td colspan=2img src=#stWeather.IconUrl#
  alt=#stWeather.conditions# border=1/td
   /tr
   tr
   tdBarometer/td
   td#stWeather.Barometer# #stWeather.BarometerDirection#/td
   /tr
 
   tr
   tdHumidity/td
   td#stWeather.Humidity#/td
   /tr
 
   /table
   /cfoutput
  /cfif
  cfcatch
  cfdump var=#cfcatch#
  /cfcatch
  /cftry
  At 05:17 PM 9/6/2002 +0100, you wrote:
  Any link (reference) to get WDDX packet to view Weather (London) in our
  company's Intranet home page?
  
  Shahzad Butt (Development Engineer)
  
  JJ FastFood Distribution Ltd.
  Office:  +44 (0) 1992 701 722
  Mobile: +44 (0) 7803 584 873
  Fax: +44 (0) 1992 701 604
  
  7 Solar Way, Innova Park, Enfield, London, EN3 7XY
  
  
  
  **
  This email and any files transmitted with it are confidential and
  intended solely for the use of the individual or entity to whom they
  are addressed. If you have received this email in error please notify
  the system manager.
  
  This footnote also confirms that this email message has been swept by
  MIMEsweeper for the presence of computer viruses.
  
  www.mimesweeper.com
  **
  
  
  
 

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Certification

2002-08-15 Thread jeff tapper

not to mention, its a required step before becoming a certified 
instructor.  At least thats why i went through the process

At 12:47 PM 8/15/2002 -0400, you wrote:
Managers and hiring types might be impressed.

On Thu, 15 Aug 2002, Bryan F. Hogan wrote:

  For those CF Certified Devs, what are the benefits. Also is it best to wait
  to take the CF6 cert or get CF5 cert than get CF6 cert.
 
 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IsDefined and Form[testvar] question

2002-05-01 Thread jeff tapper

dont forget, you can also use

isdefined(form.question  questionnumber)

as in this example:
cfparam name=form.question4 default=why did the chicken cross the road

cfloop from=1 to=10 index=i
 cfoutput#i#:/cfoutput
 cfif isDefined(form.question  i)
 cfoutputit existsbr#form[question  i]#br/cfoutput
 cfelse
 cfoutputno existbr/cfoutput
 /cfif
/cfloop

At 10:45 AM 5/1/2002 -0300, you wrote:
At 09:44 AM 01/05/02 -0400, Raymond Camden wrote:
 You can either do:
 
 isDefined(form.question#questionnumber#)
 
 or
 
 structKeyExists(form,question#questionnumber#)
 
 I prefer the first method.

Thanks Raymond.  You are saving me from using evaluate again.  I really
appreciate all your help.

T


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IsDefined and Form[testvar] question

2002-05-01 Thread jeff tapper

the cfparam was just a quick add in, so that the form element existed for 
the test, but would still exist if a real form element were sent

At 04:40 PM 5/1/2002 +0100, you wrote:
  cfparam name=form.question4 default=why did the chicken
  cross the road
 
  cfloop from=1 to=10 index=i
   cfoutput#i#:/cfoutput
   cfif isDefined(form.question  i)
   cfoutputit existsbr#form[question 
  i]#br/cfoutput
   cfelse
   cfoutputno existbr/cfoutput
   /cfif
  /cfloop

Seems funny that you're using the form[] to speed things up, but then
using CFParam to slow it down again...

Much quicker to make a UDF for CFParam and then cfset
CFParam(form.question4, why did the chicken cross the road)

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
Switchboard: +44 (0)20 8680 8099
Fax: +44 (0)20 8686 7911

www.aspmedia.co.uk
www.aspevents.net

An ISO9001 registered company.

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: variable not being cleared in a loop?

2002-04-30 Thread jeff tapper

Aimee -

Seems like a variable scoping issue.  do u have a variable earlier on the 
page (or cfincluded earlier) which had the name notes?

even inside a cfoutput query=myQuery  its still a good practice to 
scope all variables from that query as #myQuery.myfield#

At 07:31 PM 4/30/2002 -0600, you wrote:
I have something odd happening with a variable not being cleared.  The
trouble is with the notes field.  I query it and get the value from the
database.  The notes field is almost always filled in, however there are a
few times where it is not.  If the notes field is blank, it will get filled
in by the data from the last note field that was filled in.  How (and why)
can this be???

Here is my query:

CFQUERY name=news datasource=newsData
 select Notices.noticeID, Notices.title, Notices.reldate,
Notices.expiryDate, Notices.url, Notices.notes, Notices.release,
DT1.FullsizeIconAssoc, DT1.smallIconAssoc,supportDocs.title as
supportTitle, supportDocs.url as Surl, noticeType as NT
 from notices, docTypes DT1, supportDocs
 WHERE Notices.relDate = '#todayis#'
 cfif #noticeType# not equal 1
 AND Notices.relDate  '#minus60#'
 /cfif
 AND ((Notices.expiryDate = '#todayis#') or ((Notices.expiryDate) 
 Is Null))
 AND Notices.docTypeID = DT1.docTypeID
 and Notices.NoticeID = supportDocs.noticeID(+)
 cfif #noticeType# equal 1 OR #noticeType# equal 2
 AND  noticeType = #noticeType#
 cfelse
 AND Notices.whatsNew = 1
 /cfif
 ORDER BY Notices.reldate DESC, Notices.NoticeID
/CFQUERY


Then I have the output:

cfoutput query=news  group=title
 !--- check to see if we have already printed the big date ---
 cfif #lastDate# not equal #relDate#
 trtd valign=top bgcolor=c6d6bd colspan=2font
size=+1b#dateFormat(relDate,  dd, )#/b/font/td/tr

 cfset lastDate=#relDate#
 /cfif
 tr
 td valign=topimg src=#FullsizeIconAssoc#/td
 !--- Turn back on for debugging ---
 !--- td#noticeID#/tdtd#relDate#/td ---
 td
 cfif #url# equal http://; and #release# not equal 
 cfif (isdefined(WN)) and (#NT# equal 2)News 
 Release: /cfifa
href=newsRelease.cfm?NR=#NoticeID#type=#NT##title# /a
 !--- br#release# br ---
 cfelse
 a href=#url##Title#/a
 /cfiffont color=White 
 size=-2NoticeID:#NoticeID#/fontbr
 cfif #NT# equal  1
 font size=-1brOpen for public 
 comment through
#DateFormat(expiryDate,  DD, )#/font
 /cfif
 font size=-1#notes#/font
 !---  ^-- HERE IS WHERE 
 THE TROUBLE IS  ---
 br
 /td
 /tr

 cfif #supportTitle# not equal 
 cfoutput
 trtd/tdtdimg src=#smallIconAssoc# a
href=#Surl##supportTitle#/a/td/tr
 /cfoutput
 /cfif
 trtdnbsp;/td/tr
/cfoutput


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Flash MX and CF5

2002-03-19 Thread jeff tapper

did u wrap the cfml page with a cfsetting enablecfoutputonly=yes

whitespace makes flash unhappy

At 09:27 AM 3/19/2002 -0800, you wrote:
I have Flash MX I am just confused


Success is a journey, not a destination!!



Doug Brown
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, March 19, 2002 9:26 AM
Subject: Re: Flash MX and CF5


  Doug,
 
  Flash MX will make that process WAY easier ;-)
 
  Bryan Stevenson
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  p. 250.920.8830
  e. [EMAIL PROTECTED]
  -
  Macromedia Associate Partner
  www.macromedia.com
  -
  Vancouver Island ColdFusion Users Group
  Founder  Director
  www.cfug-vancouverisland.com
 
  - Original Message -
  From: Douglas Brown [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Tuesday, March 19, 2002 9:20 AM
  Subject: Flash MX and CF5
 
 
   We prob need a CF-flashTalk list, but in the meantime I am just now 
 beginning my journey into
  dynamic content in flash, and was wondering if someone had an idea of 
 how to populate a combo box
  from a query...
  
  
   I have this so far, please help.
  
   Query
  
   CFQUERY DATASOURCE=carnivore NAME=mfg_list
   SELECT  *
   FROM  mfg
   /CFQUERY
   CFSET myList = ValueList(mfg_list.mfgid,,)
   CFOUTPUTmfg=#myList#/CFOUTPUT
  
  
   Flash
  
  
   Button action
   on (release) {
   
 loadVariablesNum(http://www.carnivorepc.com/console/qry/qry_mfg_list.cfm; 
 , 0, GET);
mfgList.addItem(mfg);
   }
  
  
  
  
  
   Success is a journey, not a destination!!
  
  
  
   Doug Brown
  
  
 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: oracle LOB query problem

2001-05-11 Thread jeff tapper

I just worked through an issue like this.  When using the CLOB in a select 
or where clause, you will need to use the oracle function:dbms_lob.instr()

For example, on one of our Spectra sites running in oracle, the 
longcharfield of the properties table is a CLOB.  To match a particular 
record from that table, we use the following:

CFQUERY name=qry_test datasource=#REQUEST.CFA.OBJECTSTORE.DSN#
 select
 objectID
 from
 properties
 WHERE
  dbms_lob.instr(longchardata, '#HEADLINE#')0
 and
 propertyname='HEADLINE'
/CFQUERY

Hope this helps.

At 09:30 AM 5/11/01 -0700, you wrote:
I have defined a column as CLOB in an oracle 8i table and when CF
return Unknown Data Access Error when i do an query on this table.

If i remove the CLOB column from the table the query works fine.

Anyone has suggestions to resolve this problem.

thanks




--
Global Internet phone calls, voicemail, fax, e-mail and instant messaging.
Sign-up today at http://www.hotvoice.com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: New Cold Fusion book, O'riely Press

2001-05-11 Thread jeff tapper

There is currently a CF5.0 book in the works from Ben Forta et. al.

At 10:11 AM 5/11/01 -0700, you wrote:
Is BEn Forta going to update his 4.0 version books to 4.5 or 5?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 10, 2001 1:24 PM
To: CF-Talk
Subject: Re: New Cold Fusion book, O'riely Press


* Team Allaire *
Knowing all the work Rob is doing on UDF, I'm betting it's a 5.0 book.


  Isn't the O'Reilly book over CF 4.5 and going to be released after CF 5.0
  is released?
 
  On Thu, 10 May 2001, DeVoil, Nick wrote:
 
   Jeff,
  
   I agree that O'Reilly books are usually excellent.
   I don't know anything about this one.
  
   But you might like to know that Wrox are also
   bringing out a CF5 book.
  
   http://www.wrox.com/Books/Book_Details.asp?section=1_2isbn=1861004540
  
   Nick
  
   -Original Message-
   From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
   Sent: Wednesday, May 09, 2001 1:24 PM
   To: CF-Talk
   Subject: New Cold Fusion book, O'riely Press
  
  
   Hello cf-talk,
  
 I just saw a not yet available book by Rob Brooks-Bilson on Amazon
 called Programming Cold Fusion. I generally like what O'Rielly Press
 puts out.
  
 Any one know anything about this book? Any reviews from anywhere
 yet?
  
  
   Best regards,
Jeff Fongemie  mailto:[EMAIL PROTECTED]
   
   Internet Guns For Hire
   (603) 356-0768
  
  
  
   **
   Information in this email is confidential and may be privileged.
   It is intended for the addressee only. If you have received it in error,
   please notify the sender immediately and delete it from your system.
   You should not otherwise copy it, retransmit it or use or disclose its
   contents to anyone.
   Thank you for your co-operation.
   **
  
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Arrays and Structures storing query values

2001-04-30 Thread jeff tapper

sure they can, i do it all the time.

cfset astAuthors = arrayNew(1)
cfset astAuthors[1] = structNew()
cfset astAuthors[1].firstname = 'jeff'
cfset astAuthors[1].lastname = 'tapper'
cfset astAuthors[2] = structNew()
cfset astAuthors[2].firstname = 'ben'
cfset astAuthors[2].lastname = 'forta'

works fine for me.

At 04:09 PM 4/30/01 +0100, you wrote:
I think you need to do it the other wat around - Structures can hold arrays,
I dont think arrays can store structures.

N

!-
Neil Clark
Senior Web Applications Engineer
XML / Cerebro
MCB Digital
Macromedia Alliance Member
Tel: 020 8941 3232
Fax: 020 8941 4333
e-mail: [EMAIL PROTECTED]





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: get the directory a file is in.

2001-04-24 Thread jeff tapper

try GetCurrentTemplatePath() and / or GetBaseTemplatePath()
depending on customtag usage.

At 02:55 PM 4/24/01 -0400, you wrote:
Is there a way to get the name of the directory a file that is being
processed is in?
Let's say, in a file

C:\wwwroot\1234\index.cfm

is there a way to retrieve C:\wwwroot\1234\ part in the index.cfm file?

Thanks for any help.




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Server...

2001-03-06 Thread jeff tapper

hit f5 to refresh.  go after the high priorities first.

At 12:59 AM 3/2/01 -0500, you wrote:
i've never had the defaults/identity stuff transfer successfully, either.
even between SQL installs, selecting "Transfer Objects".  i've resorted to
scripting the tables, sticking the defaults in myself (scripting will
capture the identities) and running the scripts on the target system.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 01, 2001 9:02 PM
To: CF-Talk
Subject: RE: SQL Server...


  I used the SQL Server export function (Data Transformation
  Service) to move data (and table structure) from one SQL Server
  database to a blank SQL Server database. Everything looked fine
  initially, however I have realized that it did not copy over
  default value. Nor did it copy over seed information.
 
  Is this common? Is there a better way to do this (Other than
  detaching / attaching the database)? Although I haven't verified
  it yet, I do suspect that I exported the data from a SQL Server
  2000 DB into a SQL Server 7 DB. Would I experience the same
  results if this occurred between to SQL Server 2000 DBs?

Typically, when transferring between two SQL 7 servers, you have an option
to transfer "objects and data". This gets not only the tables and their
data, but everything else as well.

In addition, you can do a backup to file from one, then restore from file on
the other. I've had better luck with that, with pre-SP versions of SQL 7.
This is better than detaching and attaching, since you don't have to stop
operation of the database on the source server, and you don't have problems
with "phantom logins" that might exist in one server but not the other.
(Although there is a way to address that, if necessary.)

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Server...

2001-03-06 Thread jeff tapper

sorry about that everyone, I was responding to the wrong email.


At 12:59 AM 3/2/01 -0500, you wrote:
i've never had the defaults/identity stuff transfer successfully, either.
even between SQL installs, selecting "Transfer Objects".  i've resorted to
scripting the tables, sticking the defaults in myself (scripting will
capture the identities) and running the scripts on the target system.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 01, 2001 9:02 PM
To: CF-Talk
Subject: RE: SQL Server...


  I used the SQL Server export function (Data Transformation
  Service) to move data (and table structure) from one SQL Server
  database to a blank SQL Server database. Everything looked fine
  initially, however I have realized that it did not copy over
  default value. Nor did it copy over seed information.
 
  Is this common? Is there a better way to do this (Other than
  detaching / attaching the database)? Although I haven't verified
  it yet, I do suspect that I exported the data from a SQL Server
  2000 DB into a SQL Server 7 DB. Would I experience the same
  results if this occurred between to SQL Server 2000 DBs?

Typically, when transferring between two SQL 7 servers, you have an option
to transfer "objects and data". This gets not only the tables and their
data, but everything else as well.

In addition, you can do a backup to file from one, then restore from file on
the other. I've had better luck with that, with pre-SP versions of SQL 7.
This is better than detaching and attaching, since you don't have to stop
operation of the database on the source server, and you don't have problems
with "phantom logins" that might exist in one server but not the other.
(Although there is a way to address that, if necessary.)

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFStudio RegEx Question

2000-09-08 Thread jeff tapper

Hey all -

I'm looking for a quick RegEx to check some of my developers code.  I'm 
trying to find any instances of CFIF inside of a CFQUERY tag.

I'm running cfquery .*.*CFIF .*/cfquery as a REGEX search, although, 
its not doing what i want, as it is returning records which look like
cfquery 
yadda yadda
/cfquery
cfif yadda
/cfif
cfquery
yadda yadda
/cfquery

I only want it to return CFIFs between the opening and closing CFQUERY tags.

Can anyone lend a hand?

thanks
==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



two-task conversion routine: integer overflow

2000-08-18 Thread jeff tapper
\WEBTOP\STYLESWITCH.CFM
0 ms D:\INETPUB\WWWROOT\ALLAIRE\SPECTRA\WEBTOP\APPLICATION.CFM
16 ms
D:\INETPUB\WWWROOT\ALLAIRE\SPECTRA\WEBTOP\SYSTEMDESIGN\PLPDESIGNER\PLPCREATE
.CFM
0 ms STARTUP, PARSING,  SHUTDOWN
*
Error 2
*
Error Diagnostic Information
XML parsing error: no element found (error code 3, line 1, column 0, buffer
offset -1)

The error occurred while processing an element with a general identifier of
(CFWDDX), occupying document position (221:3) to (221:75) in the template
file C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\OBJECTSTORE\CFA_OBJECTTYPEGETM
ULTIPLE.CFM.

Date/Time: 08/18/00 13:04:51
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT)
Remote Address: myserver
HTTP Referer: /allaire/spectra/webtop/" 
EUDORA="AUTOURL"http://myserver/allaire/spectra/webtop/


Execution Time
3875 milliseconds
16 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\OBJECTSTORE\CFA_OBJECTTYPEGET.
CFM
141 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\OBJECTSTORE\CFA_OBJECTTYPEGETM
ULTIPLE.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_DEEPCOPY.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_ENTITYCONSTANTS.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_HANDLER.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_RECORDSELECT.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_SERVERSETTINGSGET.CF
M
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\CFA_STRUCTGET.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\_DBTABLEDICTIONARY.CFM
2421 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\COAPI\UTILS\_RECORDSELECT_BP.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\OBJECTSTORE\CFA_CONTENTOBJECT.
CFM
31 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\OBJECTSTORE\CFA_CONTENTOBJECTG
ET.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\OBJECTSTORE\CFA_CONTENTOBJECTI
NVOKEMETHOD.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_AUTHENTICATE.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_SECURE.CFM
78 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_USERDIRECTORYGET.
CFM
203 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_USERDIRECTORYGETM
ULTIPLE.CFM
391 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_USERGET.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SECURITY\CFA_USERPROFILEGET.CF
M
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SESSIONMGMT\CFA_SESSION.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SESSIONMGMT\CFA_SESSIONCREATE.
CFM
16 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER0\SESSIONMGMT\CFA_SESSIONISDEFIN
ED.CFM
15 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER1\APPLICATION\CFA_APPLICATIONINI
TIALIZE.CFM
188 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER1\SITEMODELING\CFA_REFRESHPAGEMO
DEL.CFM
172 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER1\SITEMODELING\CFA_REFRESHSECTIO
NMODEL.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER1\SITEMODELING\CFA_REFRESHSITEMO
DEL.CFM
203 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\CUSTOMTAGS\SYSTEM\TIER1\UTILS\CFA_GLOBALSETTINGS.CFM
0 ms C:\PROGRAM
FILES\ALLAIRE\SPECTRA\HANDLERS\SYSTEM\APPLICATION\INITIALIZE.CFM
0 ms D:\INETPUB\WWWROOT\ALLAIRE\SPECTRA\WEBTOP\APPLICATION.CFM
0 ms STARTUP, PARSING,  SHUTDOWN

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Tab Pages

2000-08-08 Thread jeff tapper

Spectra has a custom tag to handle these natively.  Its certainly possible 
to create one in straight CFML, although I've not seen it.

At 02:38 PM 8/7/00 -0400, you wrote:
Does anybody know if I can create Tab Pages with CF and if there are any
code snippets for that puprose?

Natalie

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Advanced Security user directory issue...

2000-08-02 Thread jeff tapper

Ray --

we had this problem when we converted our userDirectory to Oracle.  For us, 
we solved it by going into the CFAdmin, and setting the userDirectory 
password under the advanced secutiry section.

hope this helps.

At 08:19 AM 8/2/00 -0400, you wrote:
I'm trying to help a coworker over the phone so I don't have access to the
files in question, but her problem seems to be this. We have a userdirectory
set up in SQL Server. The ODBC control panel can correctly connect to it
with no problems. We even setup the DSN in ColdFusion Admin and had no
problems talking to it.

However, when we try to authenticate, we get a failure. Looking at the log
files, it appears as if Netegrity tries to connect to the DSN w/o passing in
a username and password. Has anyone seen this before? On my local machine, I
had no problems with Netegrity speaking to SQL Server.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Functions in Cold Fusion

2000-08-01 Thread jeff tapper

Many others have addressed creating CF functions, so I'll just bite off the 
part of calling java classes.

In CF 4.5, allaire introduced the ability to call java classes directly 
with the CFOBJECT tag.  The biggest trick, is getting the correct jvm path 
into the CFAdministrator, which involves referencing the jvm.dll directly, 
rather than referencing the directory in which it resides.



At 10:39 AM 8/1/00 -0700, you wrote:
Can I make calls to a Java class or something like that?

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Functions in Cold Fusion

2000-08-01 Thread jeff tapper

I'm not sure i get your point.  how would you make lemonade without lemons?

I was merely pointing out that it is possible to call java classes 
directly, and giving a tip into the most common error encountered when 
doing it.

At 02:36 PM 8/1/00 -0700, you wrote:
That technique sounds like trying to make lemonade from lemons to me.  Why
not just use something else

Brandon Behrens
The Internet Design Firm
512.451.5225
[EMAIL PROTECTED]
http://www.theidf.com

-Original Message-
From: jeff tapper [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 01, 2000 12:17 PM
To: [EMAIL PROTECTED]
Subject: Re: Functions in Cold Fusion

Many others have addressed creating CF functions, so I'll just bite off the
part of calling java classes.

In CF 4.5, allaire introduced the ability to call java classes directly
with the CFOBJECT tag.  The biggest trick, is getting the correct jvm path
into the CFAdministrator, which involves referencing the jvm.dll directly,
rather than referencing the directory in which it resides.



At 10:39 AM 8/1/00 -0700, you wrote:
 Can I make calls to a Java class or something like that?

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
Jeff Tapper
[EMAIL PROTECTED]
Team Manager / Lead Applications Architect
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Authenticating a user using NT Authentication

2000-06-23 Thread jeff tapper

It may be as simple as a variable scoping problem.  a CFPARAM tag is being 
used to set a default value of Categories (no scope) to a blank 
string.  The cfa_contentObjectProperty tag is also referencing the the 
variable without a scope.  Its possible the two unscoped variables are 
actually referring to a variables.categories, and not the form.categories 
which they really mean.  I would try changing cfa_contentObjectProperty 
name="categories" value="#categories#" to cfa_contentObjectProperty 
name="categories" value="#form.categories#" and see if that helps.

At 12:04 PM 6/22/00 -0400, you wrote:


Hi Again,

Is there anyway to automatically authenticate a user (giving them access to
a CF application without having to login) using NT Authentication?

TIA,

Debbie

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

======
Jeff Tapper
[EMAIL PROTECTED]
Senior Allaire Platform Technologist
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Newbie Forta Question

2000-05-18 Thread jeff tapper

Last I heard the book should be on the shelves in the next week or so.

At 03:22 PM 5/18/00 +0100, you wrote:
ps If you're out there Ben, how's the spectra bible coming along?

==
Jeff Tapper
[EMAIL PROTECTED]
Senior Allaire Platform Technologist
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Text Editors vs Site Editors

2000-04-12 Thread jeff tapper

I was coding CF for over a year before I discovered homesite, (this was a 
year or so prior to allaire buying homesite.)  In that time, I was using 
everything from notepad to hotdog to code my CF.

At 06:00 PM 4/12/00 -0400, you wrote:


I cannot imagine trying to code Cold Fusion apps using anything but CF
Studio.  Kinda like trying to build a house without a hammer or nails.


Judith Campbell
Chief Technical Officer
Digital Positions, Inc.
[EMAIL PROTECTED]
404-351-9366

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
The difficult we do now.
The impossible may take a few days.
==
Jeff Tapper
[EMAIL PROTECTED]
Senior Allaire Platform Technologist
http://www.gtriad.com
G. Triad Operating Unit
Computer Horizons/ebSolutions Division
==

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.