RE: [KCFusion] CF MX and ODBC datasource with decode stmt

2003-10-01 Thread jabrown
We use decode on ORACLE quite often and haven't had any problems since
moving to MX.  Can you post an example query?  What version of ORACLE?

Jeff

-Original Message-
From: Minor, Beth [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 01, 2003 3:52 PM
To: [EMAIL PROTECTED]
Cc: Hagemeyer, David A.
Subject: [KCFusion] CF MX and ODBC datasource with decode stmt


We are currently using CF 5 and are in the process of upgrading to CF MX.
We use ORACLE databases and ODBC data sources.  While testing with CF MX  I
am finding that our cfqueries that use decode statements in the sql, error
out with a SQLSTATE 01S01 message.  Has anyone encountered this or have any
ideas?   

Thanks,
Beth Minor
DB Programmer Analyst
University of Missouri
Columbia, MO


 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc. List
Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED] To
Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


***
* This message and any attached documents are confidential and*
* intended solely for the use of the individual or entity to whom *
* they are addressed.  If this message and any attached documents *
* were received in error, notify [EMAIL PROTECTED] and *
* erase all copies of this message and any attached documents.*
***

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


RE: [KCFusion] Help please

2003-08-22 Thread jabrown
Title: Message



We 
figured it out. The issue was with the flash services and using 2 host 
names for the same server. It seems to be working better now. 


Thanks,
Jeff 
Brown

  
  -Original Message-From: Justin Hansen 
  [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2003 11:35 
  AMTo: [EMAIL PROTECTED]Subject: RE: [KCFusion] Help 
  please
  can 
  you be more specific? where on the serverdid you store the CFCs? 
  
  if 
  you used a cf mapped directory make sure you add the mapping to the testing 
  server.
  
  justin
  
-Original Message-From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]Sent: Friday, August 15, 2003 
10:56 AMTo: [EMAIL PROTECTED]Subject: [KCFusion] 
Help please

We have just moved our first CFC 
application to the test server and for some reason, the application doesn't 
seem to be able to get to the CFCs, does anyone know what we might be living 
out here?

Thanks

Betty N. Nwabuonwu 
Business Systems 
Design/ImplementationState Street - 
Kansas 
City 
 
This message and any attached documents are confidential and ** intended 
solely for the use of the individual or entity to whom ** they are 
addressed. If this message and any attached documents ** were received 
in error, notify [EMAIL PROTECTED] and ** erase all copies of 
this message and any attached documents. 



RE: [KCFusion] Updater 3

2003-07-23 Thread jabrown
Thanks.  Its not looking like a problem with the Oracle setup.  The same
thing is occurring in Java.

Jeff

-Original Message-
From: Ryan Hartwich [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 22, 2003 4:35 PM
To: [EMAIL PROTECTED]
Subject: RE: [KCFusion] Updater 3


Jeff,

I was unsuccessful at installing Updater 3 on one machine, but I think it
was a windows problem.  I had no problems on 2 other machines, but these
were running MS SQL 2000 and not Oracle.  I have not heard of any
significant problems with U3 and Oracle, though I haven't been watching for
them either.

If you can survive this problem, Redsky (free upgrade) may fix it when it is
available shortly.  If not, see if you can uninstall U3 and move back to U2.

Ryan


 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc. List
Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED] To
Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


***
* This message and any attached documents are confidential and*
* intended solely for the use of the individual or entity to whom *
* they are addressed.  If this message and any attached documents *
* were received in error, notify [EMAIL PROTECTED] and *
* erase all copies of this message and any attached documents.*
***

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


RE: [KCFusion] ColdFusion Query Times Out

2003-07-23 Thread jabrown
Title: Message



Not an actual 
solution but you might try trimming down the query until you can get it to run, 
i.e. remove the order by and maybe some joins. Once its running add things 
back and see what seems to cause the timeout. Also, have you ran the query 
outside of CF to get an estimate of the time needed?

  
  -Original Message-From: Bruce Phillips 
  [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:13   PMTo: [EMAIL PROTECTED]Subject: RE: [KCFusion]   ColdFusion Query Times Out
  TIMEOUT attribute in MX is now in seconds and not 
  milliseconds as in CF 5. Also applies to each part of query, not the whole 
  operation. Please refer to 
  http://livedocs.macromedia.com/cf6docs/CFML_Reference/Tags-pt218.jsp 
  
  
  
  Bruce PhillipsSociety of Teachers of Family Medicine913-906-6000 
  ext 5405[EMAIL PROTECTED] 
  [EMAIL PROTECTED] 07/23/03 01:12PM 
  The timeout parameter of the 
  cfquery tag is in milliseconds in the help docs, so you've set it to timeout 
  in 0.26 seconds.
  
-Original Message-From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of Bruce 
PhillipsSent: Wednesday, July 23, 2003 10:59 AMTo: 
[EMAIL PROTECTED]Subject: Re: [KCFusion] ColdFusion Query Times Out
Here is the query. I'm able to run this successfully 
on my ColdFusion Development Server, just not on my web host's ColdFusion 
Server.

cfquery datasource="#dsn#" name="GetSubmissions" 
timeout="260"select submissions.*, presenters.*, 
categories.catname_display, 
conferences.confName_display,conferences.confid,Submissions2Presenters.mainpresenterfrom 
submissions JOIN conferences on submissions.confid = 
conferences.confidJOIN categories on submissions.catid = 
categories.catidJOIN Submissions2Presenters on 
Submissions2Presenters.Submissionid = Submissions.submissionidJOIN 
presenters ON Submissions2Presenters.presenterID = presenters.presenterid 
where submissions.confid = cfqueryparam cfsqltype="CF_SQL_INTEGER" 
value="#url.confid#"AND submissions.cancelled= cfqueryparam 
cfsqltype="CF_SQL_BIT" value="0"AND submissions.rejected= cfqueryparam cfsqltype="CF_SQL_BIT" value="0"order by categories.catname_display, submissions.submissionID, assigned_session, 
Submissions2Presenters.MainPresenter DESC, lastname 
,firstname/cfquery


Bruce PhillipsSociety of Teachers of Family 
Medicine913-906-6000 ext 5405[EMAIL PROTECTED] 
[EMAIL PROTECTED] 07/23/03 12:01PM 
Mind if we see the query?
A.

  - Original Message - 
  From: 
  Bruce   Phillips 
  To:  
  Sent: Wednesday, July 23, 2003 11:25 
  AM
  Subject: [KCFusion] ColdFusion Query 
  Times Out
  
  I have a complex query on a template that times out 
  every time after about 25 seconds. I've tried setting the timeout 
  attribute in the CFQUERY tab, but that attribute appears to be 
  ignored. 
  
  This is the error message I get:
  
  Error Causing Template: 
  /sTFMPresenter/Admin/ReportReviewConf.cfm URL Variables Provided:   confid=121RequestTimeOut=10 Error Message: The request has 
  exceeded the allowable time limit Tag: CFQUERY 
  I don't have access to the ColdFusion Administrator 
  since we have a separate web hosting company.
  
  Any advice on how I can get long complex queries to work 
  would be appreciated.
  
  Thank You,
  
  Bruce
  
  
  
  Bruce PhillipsSociety of Teachers of Family   Medicine913-906-6000 ext 5405[EMAIL PROTECTED]

***
* This message and any attached documents are confidential and*
* intended solely for the use of the individual or entity to whom *
* they are addressed.  If this message and any attached documents *
* were received in error, notify [EMAIL PROTECTED] and *
* erase all copies of this message and any attached documents.*
***




[KCFusion] dynamic code

2003-03-07 Thread jabrown
I'm trying to run a query that is passed from the form page with embedded CF
variables in it.  It doesn't sound that tough but for some reason I can't
get it to work.  This in under MX and must work in 5, too.  I've tried
various uses of Evaluate and can't get it to resolve the inner variable.
jeff.descr is a form variable and is a local var in the action code.  

Form page contains:
input name=insert_qry type=hidden value=INSERT INTO CUSIPGROUP (DESCR,
CHANGEUSER) VALUES ('#jeff.descr[loopcount]#', 'jabrown')

Action code contains:
cfquery name=qInsert datasource=scooby
#FORM.Insert_qry#
/cfquery


Does anyone know anything that might work?  We are trying to solve our
cfgridupdate problems quickly without rewriting everything and get some
code-reuse, too.

Thanks for the help.

Jeff Brown
State Street - Kansas City
816-871-9441
[EMAIL PROTECTED]



*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


RE: [KCFusion] dynamic code

2003-03-07 Thread jabrown
That's true.  This is probably a pretty bad idea.  I'll go back to putting
the query in the action code.  Thanks for the help and quick reply.

-Original Message-
From: Matt Jones [mailto:[EMAIL PROTECTED]
Sent: Friday, March 07, 2003 3:46 PM
To: [EMAIL PROTECTED]
Subject: RE: [KCFusion] dynamic code


btw you are gonna want to be real careful about doing something like this,
this is a bad thing, and hidden formfields can be modified by anyone

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, March 07, 2003 3:43 PM
To: [EMAIL PROTECTED]
Subject: [KCFusion] dynamic code


I'm trying to run a query that is passed from the form page with embedded CF
variables in it.  It doesn't sound that tough but for some reason I can't
get it to work.  This in under MX and must work in 5, too.  I've tried
various uses of Evaluate and can't get it to resolve the inner variable.
jeff.descr is a form variable and is a local var in the action code.  

Form page contains:
input name=insert_qry type=hidden value=INSERT INTO CUSIPGROUP (DESCR,
CHANGEUSER) VALUES ('#jeff.descr[loopcount]#', 'jabrown')

Action code contains:
cfquery name=qInsert datasource=scooby
#FORM.Insert_qry#
/cfquery


Does anyone know anything that might work?  We are trying to solve our
cfgridupdate problems quickly without rewriting everything and get some
code-reuse, too.

Thanks for the help.

Jeff Brown
State Street - Kansas City
816-871-9441
[EMAIL PROTECTED]



*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


RE: [KCFusion] dynamic code

2003-03-07 Thread jabrown
Title: RE: [KCFusion] dynamic code



Thanks. I definitely see the error of my ways.

  -Original Message-From: Dunwiddie, Bruce 
  [mailto:[EMAIL PROTECTED]Sent: Friday, March 07, 2003 3:59 
  PMTo: '[EMAIL PROTECTED]'Subject: RE: [KCFusion] 
  dynamic code
  form action=""http://www.statestreetkc.com/somepage.cfm" 
  target=_blank>http://www.statestreetkc.com/somepage.cfm" 
  method="post"  input type="hidden" name="insert_qty" value="truncate 
  master"  input type="button" value="Click me to make someone have a REALLY 
  bad day!!" /form 
  -Original Message- From: Matt 
  Jones [mailto:[EMAIL PROTECTED]] 
  Sent: Friday, March 07, 2003 3:46 PM To: [EMAIL PROTECTED] Subject: RE: 
  [KCFusion] dynamic code 
  btw you are gonna want to be real careful about doing 
  something like this, this is a bad thing, and hidden formfields can be 
  modified by anyone
  -Original Message- From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
  Sent: Friday, March 07, 2003 3:43 PM To: [EMAIL PROTECTED] Subject: [KCFusion] 
  dynamic code 
  I'm trying to run a query that is passed from the form page 
  with embedded CF variables in it. It doesn't 
  sound that tough but for some reason I can't get it to 
  work. This in under MX and must work in 5, too. I've tried 
  various uses of Evaluate and can't get it to resolve the 
  inner variable. jeff.descr is a form variable and is a 
  local var in the action code. 
  Form page contains: input 
  name="insert_qry" type="hidden" value="INSERT INTO CUSIPGROUP (DESCR, 
  CHANGEUSER) VALUES ('#jeff.descr[loopcount]#', 
  'jabrown')" 
  Action code contains: cfquery 
  name="qInsert" datasource="scooby" #FORM.Insert_qry# /cfquery 
  
  Does anyone know anything that might work? We are trying 
  to solve our cfgridupdate problems quickly without 
  rewriting everything and get some code-reuse, 
  too. 
  Thanks for the help. 
  Jeff Brown State Street - Kansas 
  City 816-871-9441 [EMAIL PROTECTED] 
  * 
  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 
  [EMAIL PROTECTED] * 
  
__ 
  The KCFusion.org list and website is hosted by Humankind 
  Systems, Inc. List Archives http://www.mail-archive.com/[EMAIL PROTECTED] 
  Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED] 
  To Subscribe mailto:[EMAIL PROTECTED] 
  To Unsubscribe mailto:[EMAIL PROTECTED] 
 __ 
  The KCFusion.org list and website is hosted by Humankind 
  Systems, Inc. List Archives http://www.mail-archive.com/[EMAIL PROTECTED] 
  Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED] 
  To Subscribe mailto:[EMAIL PROTECTED] 
  To Unsubscribe mailto:[EMAIL PROTECTED] 
   


[KCFusion] MX Updater 2

2003-03-03 Thread jabrown
We are having trouble getting the updater 2 for CFMX to work on windows.  It
looks like it installs fine but then some of the class file can't be created
due to files with the same names but different case, i.e.
CFusionMX\europa\cfusionMXwwwroot\WEB-INF\cfclasses\cfselect2ecfm313770878.c
lass and CFSELECT2ecfm313770878.class.  We just removed the older file and
its working.  This doesn't seem like a very clean install for an update.
Has anyone else heard of this happening?  Is Macromedia fixing this?

Thanks for the reponses to our various questions in the last week while
trying to get the MX upgrade running.

Jeff Brown
State Street - Kansas City
816-871-9441
[EMAIL PROTECTED]



*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/[EMAIL PROTECTED]
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


RE: [KCFusion] NY User Group info

2003-02-12 Thread jabrown
Ryan, great meeting. Thanks!  Could you send us the demos you did last
night?  If you don't want to send to the whole group I'd sure appreciate a
copy of the code.

Thanks,
Jeff Brown
[EMAIL PROTECTED]

-Original Message-
From: Ryan Hartwich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 10:34 PM
To: [EMAIL PROTECTED]
Subject: [KCFusion] NY User Group info



I mentioned at tonight's meeting that the NY CF User group was now
broadcasting their meetings on the web.  Tonight's meeting was CFMX on J2EE
and they don't yet have a copy of the broadcast on their site.

However...their January presentation is online and available for download.
It is 44mb in size (non streaming), saved in .mov format (runs in Quicktime,
possibly others) and is titled Abstract Data Types in ColdFusion and
presented by Jeffry Houser.  The recording is 1 hour long, and appears to be
a 320x240 camera facing the speaker and overhead powerpoint and code screen.

You can download it and find out about their meetings at
http://www.nycfug.org

Hope the free training is helpful,

Ryan

P.s.  We had 20 people at our meeting tonight!


 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] file property

2003-01-24 Thread jabrown
Title: RE: [KCFusion] file property



UNIX 
and MSDOS used to have an issue with the order within a given byte. One 
would have 12 (hex) and the other 21. I haven't worked with either at the 
byte level in a while so I'm not sure its still an issue.

  -Original Message-From: Dunwiddie, Bruce 
  [mailto:[EMAIL PROTECTED]]Sent: Friday, January 24, 2003 
  3:56 PMTo: '[EMAIL PROTECTED]'Subject: RE: [KCFusion] 
  file property
  It's being sent to us from another company. It is being   exported from their db which could be any db on any os. 
  -Original Message- From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
  Sent: Friday, January 24, 2003 3:45 PM To: [EMAIL PROTECTED] Subject: RE:   [KCFusion] file property 
  How is the data file being created? Is is being exported from 
  another DBMS? Is it getting generated through a   program? 
   
   
  "Dunwiddie, 
   
  Bruce" 
  To: "'[EMAIL PROTECTED]'" 
  [EMAIL PROTECTED] 
   
  BDunwiddie@henry 
  cc: 
   
  wurst.com 
  Subject: RE: [KCFusion] file 
  property 
   
  Sent 
  by: 
   
  CF-List-owner@kcf 
   
  usion.org 
   
   
   
  01/24/03 03:42 
  PM 
   
  Please respond 
  to 
   
  CF-List 
   
   
  
  There's got to be something else, something akin to file 
  attributes. 
  -Original Message- From: Keith 
  Purtell [mailto:[EMAIL PROTECTED]] 
  Sent: Friday, January 24, 2003 3:37 PM To: [EMAIL PROTECTED] Subject: RE:   [KCFusion] file property 
  If there is no special header, then the only way Windows knows 
  how to handle a file is by looking at the file name extension (doc, html, pdf, cfm, etc.). Of course that 
  can vary from one machine to another. 
  Keith Purtell, Web/Network Administrator VantageMed Operations (Kansas City) Email: [EMAIL PROTECTED] 
  CONFIDENTIALITY NOTICE: This email message, including any 
  attachments, is for the sole use of the   intended recipient(s) and may contain confidential and 
  privileged information. Any unauthorized   review, use, disclosure or distribution is prohibited. If you 
  are not the intended recipient, please   contact the sender by reply email and destroy all copies of 
  the original message. 
   -Original Message-  
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On 
   Behalf Of Dunwiddie, Bruce  
  Sent: Friday, January 24, 2003 1:50 PM  To:   '[EMAIL PROTECTED]'  Subject: RE: [KCFusion] 
  file property   
   In hex edit mode, the files are the exact same as far as 
  I  can see, but I  
  still need to spend some more time comparing, but definitely  no headers at  the beginning of the 
  data. That's why I'm assuming it's  something more 
  low  level.  
   -Original Message-  
  From: Keith Purtell [mailto:[EMAIL PROTECTED]] 
   Sent: Friday, January 24, 2003 1:12 PM  To: [EMAIL PROTECTED]  Subject: RE: 
  [KCFusion] file propertyIs there a section near the top that 
  might be a header  containing that kind 
   of information?  
   Keith Purtell, Web/Network AdministratorVantageMed Operations (Kansas City)  Email: [EMAIL PROTECTED]   CONFIDENTIALITY NOTICE: This email 
  message, including any  attachments, is 
   for the sole use of the  
  intended recipient(s) and may contain confidential and privilegedinformation. Any unauthorized  review, use, disclosure or distribution is prohibited. If   you  are not the  
  intended recipient, please  contact the sender by 
  reply email and destroy all copies of  the   original  message. 
  -Original Message-   From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On 
   Behalf Of Dunwiddie, Bruce  
  Sent: Friday, January 24, 2003 12:13 PM  To: 
  '[EMAIL PROTECTED]'  Subject: [KCFusion] file 
  property   
   I've got a problem that is currently just beyond my 
  knowledge of file  properties and encoding types 
  and all that fun. I've got a  data file 
  that  needs to be imported into sql server and sql 
  server doesn't  like it for some  odd reason. After playing around with it a bit, we've found 
   that if we open  it up in a 
  plain text editor and copy/paste the contents over  to another  plain text file and save 
  that file, it works just fine. Also, if the  
  original file is opened in UltraEdit, it's by default being  opening in hex  edit mode as opposed 
  to plain text mode which is how the  second file 
  gets  opened and how most plain text files get 
  opened in UltraEdit.  What is it  about this file that is causing this? Is it some form of file 
  property  specifying the encoding type? Is this a 
  property I can change  using code?Any help or suggestions would be appreciated. 
  
  --- [This E-mail scanned for viruses 
  by Declude Virus] 
  __ 
  The KCFusion.org list and website is hosted by Humankind 
  Systems, Inc. List Archives http://www.mail-archive.com/cf-list@kcfusion.org 
  Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED] 
  To 

[KCFusion] MX and Oracle connection

2003-01-21 Thread jabrown
We are getting ready to upgrade to MX so I've been using the single server
on my local PC to start getting used to Dreamweaver MX.  I created a DSN to
Oracle in the CF admin and got it to verify with my username and password.
(In CF 5 we would remove the username and password and have each application
use its own and this worked fine.)  I removed the username and password in
the setup.  I then tried to access it in Dreamweaver and it of course asked
for my login.  I tried various logins that should work but it wouldn't let
me in.  I went back to the Admin and added the username and password.  Then
in Dreamweaver I was able to access the database.  Are we required to
specify the login information in the DSN setup for MX?  In our shop we don't
have a shared login between developers or applications.  When we go to
developing on 1 server this would be a problem.  Does anyone know of a work
around or could this be an issue with the single user server version?

Thanks for any information on this.

Jeff Brown
State Street - Kansas City
816-871-9441
[EMAIL PROTECTED]


*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] CFGRID problems under CF 5

2002-04-04 Thread jabrown

Here is an update.

I created a simple cfgrid page to try to figure things out.  I got the
cfgrid to update using the Java plug-in 1.3.0_02.  Macromedia says we need
1.3.1_02 and we have seen a problem on some PCs with the older version.  But
the newer version gives a CF error saying it cfgrid contol doesn't exist.
Has anyone seen any of these problems or gotten the cfgrid to work
regularly?

Jeff

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 03, 2002 9:10 AM
To: [EMAIL PROTECTED]
Subject: [KCFusion] CFGRID problems under CF 5


We are trying to move to CF 5.  Many of our pages are using CFGRID.  Under
4.5 there were no problems.  We worked out the issue with the version of the
Java plug-in to get the applet to load.  But the inserts and updates do not
work.  No errors are being thrown.  We installed the patch from Macromedia
that was supposed to solve problems with the control.  Is anyone else using
CFGRID and CF 5?  Any help would be appreciated.  

Thanks,
Jeff Brown


*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



[KCFusion] CFGRID problems under CF 5

2002-04-03 Thread jabrown

We are trying to move to CF 5.  Many of our pages are using CFGRID.  Under
4.5 there were no problems.  We worked out the issue with the version of the
Java plug-in to get the applet to load.  But the inserts and updates do not
work.  No errors are being thrown.  We installed the patch from Macromedia
that was supposed to solve problems with the control.  Is anyone else using
CFGRID and CF 5?  Any help would be appreciated.  

Thanks,
Jeff Brown


*
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 [EMAIL PROTECTED]
*

 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



RE: [KCFusion] Jobs in your neck of the woods

2001-09-19 Thread jabrown

Nathan, I moved from Ft. Worth about 6 years ago to KCMO.  I found it pretty
close to the same cost of living.  Some things are cheaper, others are
higher.  I don't really have much info on local jobs.

Jeff Brown
State Street KC

-Original Message-
From: Nathan Stanford [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 23, 2001 4:50 PM
To: [EMAIL PROTECTED]
Subject: Re: [KCFusion] Jobs in your neck of the woods


I am married with two boys 12 BD(11/3) and 6 BD(6/7) and I would be looking
for
a home.  I will be selling my home in Mansfield, Texas just south of
Dallas/Fort
Worth, TX.

Thanks a lot,
Nathan

Keith Purtell wrote:

 Regarding cost of living, do you have a family? Looking for home or
 apartment (buy/rent)?

 Keith Purtell, Web/Network Administrator
 VantageMed Operations (Kansas City)
 Email:  [EMAIL PROTECTED]

 CONFIDENTIALITY NOTICE: This email message, including any attachments, is
 for the sole use of the intended recipient(s) and may contain confidential
 and privileged information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the intended recipient, please
 contact the sender by reply email and destroy all copies of the original
 message.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
 Behalf Of Nathan Stanford
 Sent: Thursday, August 23, 2001 4:40 PM
 To: [EMAIL PROTECTED]
 Subject: [KCFusion] Jobs in your neck of the woods

 I am looking at a job in your neck of the woods.  I would like to know
what
 the
 cost of living is like and what other CF jobs are in your area.  If you
know
 of
 companies using CF that I can contact please let me know.

 Thanks,
 Nathan Stanford

 Check out my sites as well...
 http://www.ColdFusionMonthly.com
 http://www.cftipsplus.com

 __
 The KCFusion.org list and website is hosted by Humankind Systems, Inc.
 List Archives http://www.mail-archive.com/cf-list@kcfusion.org
 Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
 To Subscribe mailto:[EMAIL PROTECTED]
 To Unsubscribe mailto:[EMAIL PROTECTED]



 __
 The KCFusion.org list and website is hosted by Humankind Systems, Inc.
 List Archives http://www.mail-archive.com/cf-list@kcfusion.org
 Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
 To Subscribe mailto:[EMAIL PROTECTED]
 To Unsubscribe mailto:[EMAIL PROTECTED]


--

Nathan Stanford
.CFM The ColdFusionMonthly
http://www.ColdFusionMonthly.com


 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 


**
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
[EMAIL PROTECTED]

**
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]
 



[KCFusion] Crystal Reports

2001-01-11 Thread jabrown

We have a limited exposure to Crystal but are using it for a few reports
which we call from the cfm file.  We specify the user and password to the DB
in the URL.  We are finally getting ready to move things to production and
realized when we change ODBC datasource names we have to recompile the
report setting the location to the new DSN.  Does anyone know of a way to
either get around this problem?  Is there a way to specify the DSN at
runtime along with the user and password?  I saw something in Seagate's
knowledge base about setting it when using VB but wasn't sure if it could be
done without VB.  Any help would be greatly appreciated.

Thanks,

Jeff Brown
State Street KC
[EMAIL PROTECTED]


**
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
[EMAIL PROTECTED]

**
 
 
__
The KCFusion.org list and website is hosted by Humankind Systems, Inc.
List Archives http://www.mail-archive.com/cf-list@kcfusion.org
Questions, Comments or Glowing Praise.. mailto:[EMAIL PROTECTED]
To Subscribe mailto:[EMAIL PROTECTED]
To Unsubscribe mailto:[EMAIL PROTECTED]