Is anyone aware of any issues with running CFMX Server on a box that already
has BEA WebLogic server.  The servers will not be interacting with each
other, rather just coexisting on the same machine.  Any issues with the CF
install?  Any input would be greatly appreciated.

Dan Spindler
MJMI
----- Original Message -----
From: "CF-Talk" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 24, 2002 6:34 AM
Subject: CF-Talk-list V1 #147


> CF-Talk-list                   Wed, 24 Jul 2002          Volume 1 : Number
147
>
> In this issue:
>
>         RE: Output Help
>         Re: Output Help
>         Re: Stupid number format problem
>         Image manipulation with CFMX and JAI
>         RE: cfmx and browser cache issue
>         RE: OT: Charting Software
>         CFGrid / CFGridColumn - display 1 long row as 2+ rows?
>         RE: OT: Charting Software
>         RE: Email regex
>         Unicode drives me crazy - need help
>         Re: Unicode drives me crazy - need help
>         RE: Unicode drives me crazy - need help
>
>
> ----------------------------------------------------------------------
>
> Date: Tue, 23 Jul 2002 22:31:32 -0400
> From: "Joshua Tipton" <[EMAIL PROTECTED]>
> Subject: RE: Output Help
> Message-ID: <000501c232ba$3cccdd40$0f00a8c0@laptop>
>
> Output one record then bombed with this error
>
> The Error Occurred in
> C:\Inetpub\wwwroot\captek\apps\LabList\showlablist.cfm: line 46
>
> 44 : <cfoutput query="qr_states" group="CaptekLab.state">
> 45 :     #qr_states.state#<br>
> 46 :     <cfoutput>#qr_states.lab_name#</cfoutput>  THIS LINE WAS BOLD
> 47 : </cfoutput>
> 48 : </body>
>
>
>
> -----Original Message-----
> From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 23, 2002 10:17 PM
> To: CF-Talk
> Subject: Re: Output Help
>
> Try this... I didn't do the caps thing like you are doing but you should
> get
> the jist!
>
> <cfquery name="qr_states" datasource="CaptekLab">
>     SELECT s.state, l.lab_name
>     FROM tblstate s, tbllabs l
>     WHERE s.pk_tblSTATEID = l.fk_tblSTATEID
>     GROUP BY s.state, l.lab_name
> </cfquery>
>
> <cfoutput query="qr_states" group="CaptekLab.state">
>     #qr_states.state#<br>
>     <cfoutput>#qr_states.lab_name#</cfoutput>
> </cfoutput>
>
> Good Luck
> Paul Giesenhagen
> QuillDesign
>
>
>
> ----- Original Message -----
> From: "Joshua Tipton" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 23, 2002 9:10 PM
> Subject: Output Help
>
>
> > Okay I fell stupid asking this because I have accomplished this many
> > times I just cant rememeber tonight.
> >
> >
> >
> >
> >
> > <cfquery name="qry_STATES" datasource="CaptekLab">
> >
> > SELECT      PK_tblSTATEID, State
> >
> > FROM         dbo.tblSTATE
> >
> > </cfquery>
> >
> > <table>
> >
> > <cfloop query="qry_states">
> >
> > <cfquery name="qry_labs" datasource="CaptekLab">
> >
> > SELECT     FK_tblSTATEID, Lab_Name, Lab_City, Lap_Phone
> >
> > FROM         tblLABS
> >
> > where                fk_tblSTATEID = '#qry_states.pk_tblSTATEID#'
> >
> > </cfquery>
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > <cfoutput query="qry_labs">
> >
> >             <tr>
> >
> >                         <td>#qry_states.state#</td>
> >
> >                         <td>#Lab_name#</td>
> >
> >             </tr>
> >
> > </cfoutput>
> >
> > </cfloop>
> >
> > </table>
> >
> >
> >
> >
> >
> > I want the state name output once and then a list of all the labs for
> > that state
> >
> >
> >
> > IE
> >
> >
> >
> >
> >
> > Alaska  Lab1
> >
> >             Lab2
> >
> >             Lab3
> >
> >
> >
> > Alabama Lab1
> >
> >               Lab2
> >
> >               Lab3
> >
> >
> >
> >
>
> ______________________________________________________________________
> 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
>
> ------------------------------
>
> Date: Tue, 23 Jul 2002 21:42:51 -0500
> From: "Paul Giesenhagen" <[EMAIL PROTECTED]>
> Subject: Re: Output Help
> Message-ID: <00a101c232bb$cf192540$03fea8c0@quilldesign1>
>
> OOPs, change the cfoutput line
> from: <cfoutput query="qr_states" group="CaptekLab.state">
> to: <cfoutput query="qr_states" group="state">
>
> Paul Giesenhagen
> QuillDesign
>
> ----- Original Message -----
> From: "Joshua Tipton" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 23, 2002 9:31 PM
> Subject: RE: Output Help
>
>
> > Output one record then bombed with this error
> >
> > The Error Occurred in
> > C:\Inetpub\wwwroot\captek\apps\LabList\showlablist.cfm: line 46
> >
> > 44 : <cfoutput query="qr_states" group="CaptekLab.state">
> > 45 :     #qr_states.state#<br>
> > 46 :     <cfoutput>#qr_states.lab_name#</cfoutput>  THIS LINE WAS BOLD
> > 47 : </cfoutput>
> > 48 : </body>
> >
> >
> >
> > -----Original Message-----
> > From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 23, 2002 10:17 PM
> > To: CF-Talk
> > Subject: Re: Output Help
> >
> > Try this... I didn't do the caps thing like you are doing but you should
> > get
> > the jist!
> >
> > <cfquery name="qr_states" datasource="CaptekLab">
> >     SELECT s.state, l.lab_name
> >     FROM tblstate s, tbllabs l
> >     WHERE s.pk_tblSTATEID = l.fk_tblSTATEID
> >     GROUP BY s.state, l.lab_name
> > </cfquery>
> >
> > <cfoutput query="qr_states" group="CaptekLab.state">
> >     #qr_states.state#<br>
> >     <cfoutput>#qr_states.lab_name#</cfoutput>
> > </cfoutput>
> >
> > Good Luck
> > Paul Giesenhagen
> > QuillDesign
> >
> >
> >
> > ----- Original Message -----
> > From: "Joshua Tipton" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 23, 2002 9:10 PM
> > Subject: Output Help
> >
> >
> > > Okay I fell stupid asking this because I have accomplished this many
> > > times I just cant rememeber tonight.
> > >
> > >
> > >
> > >
> > >
> > > <cfquery name="qry_STATES" datasource="CaptekLab">
> > >
> > > SELECT      PK_tblSTATEID, State
> > >
> > > FROM         dbo.tblSTATE
> > >
> > > </cfquery>
> > >
> > > <table>
> > >
> > > <cfloop query="qry_states">
> > >
> > > <cfquery name="qry_labs" datasource="CaptekLab">
> > >
> > > SELECT     FK_tblSTATEID, Lab_Name, Lab_City, Lap_Phone
> > >
> > > FROM         tblLABS
> > >
> > > where                fk_tblSTATEID = '#qry_states.pk_tblSTATEID#'
> > >
> > > </cfquery>
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > <cfoutput query="qry_labs">
> > >
> > >             <tr>
> > >
> > >                         <td>#qry_states.state#</td>
> > >
> > >                         <td>#Lab_name#</td>
> > >
> > >             </tr>
> > >
> > > </cfoutput>
> > >
> > > </cfloop>
> > >
> > > </table>
> > >
> > >
> > >
> > >
> > >
> > > I want the state name output once and then a list of all the labs for
> > > that state
> > >
> > >
> > >
> > > IE
> > >
> > >
> > >
> > >
> > >
> > > Alaska  Lab1
> > >
> > >             Lab2
> > >
> > >             Lab3
> > >
> > >
> > >
> > > Alabama Lab1
> > >
> > >               Lab2
> > >
> > >               Lab3
> > >
> > >
> > >
> > >
> >
> >
> ______________________________________________________________________
> Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Tue, 23 Jul 2002 22:03:53 -0500
> From: "Phillip B" <[EMAIL PROTECTED]>
> Subject: Re: Stupid number format problem
> Message-ID: <009f01c232be$beeea0c0$1452160a@Web>
>
> I thought of that but there aren't any functions that I can find that will
> handle all the variants I could have. I just need to make sure all the
extra
> zero's wont be displayed.
>
> Phillip Broussard
> Tracker Marine Group
> 417-873-5957
>
> ----- Original Message -----
> From: "Brian J. LeRoux" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 23, 2002 9:13 PM
> Subject: RE: Stupid number format problem
>
>
> > Check out the functions: numberFormat() and decimalFormat() in
> > http://localhost/CFDOCS/CFML_Reference/Functions2.html or the machine
> where
> > you have cf installed.
> >
> > When all else fails, type in your question at
> > http://localhost/CFDOCS/search.cfm and inevidably cf has a function to
> > answer.
> >
> > -----Original Message-----
> > From: Phillip B [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 23, 2002 7:07 PM
> > To: CF-Talk
> > Subject: Stupid number format problem
> >
> >
> > I need to store numbers in a SQL 2000 database and output them on a web
> > page. The numbers will range from being .012345 - 999,999 I set up the
> > datatype to be numeric with a precision of 16 and scale of 6. When I
> output
> > the values to a web page I get numbers like 96.000000, 96.200000,
> > 1234.000000.
> >
> > I am still new to SQL 2000 and I have never had this problem before. Can
> > some one help me out? I am sure this is soooo basic but I just can't see
> the
> > problem.
> >
> >
> > Phillip Broussard
> > Tracker Marine Group
> > 417-873-5957
> >
> >
> >
> >
> >
> ______________________________________________________________________
> 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
>
> ------------------------------
>
> Date: Tue, 23 Jul 2002 22:11:12 -0700
> From: "Matt Liotta" <[EMAIL PROTECTED]>
> Subject: Image manipulation with CFMX and JAI
> Message-ID: <02bd01c232d0$87d53b00$6401a8c0@FREEWILL>
>
> As promised, here is the article.
>
> http://www.evolt.org/article/Image_Manipulation_with_CFMX_and_JAI/18/339
> 07/index.html
>
> Matt Liotta
> President & CEO
> Montara Software, Inc.
> http://www.montarasoftware.com/
> V: 415-577-8070
> F: 415-341-8906
> P: [EMAIL PROTECTED]
>
>
> ______________________________________________________________________
> This list and all House of Fusion resources hosted by CFHosting.com. The
place for dependable ColdFusion Hosting.
>
> ------------------------------
>
> Date: Tue, 23 Jul 2002 23:24:03 -0700
> From: Brian Scandale <[EMAIL PROTECTED]>
> Subject: RE: cfmx and browser cache issue
> Message-ID: <[EMAIL PROTECTED]>
>
> Nope, just scoured the source again... not a one... nothing.
>
> At 06:58 PM 7/23/02, you wrote:
> >Are you using any of the below cache control tags?
> >
> ><META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
> ><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
> ><META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
> >
> ><META HTTP-EQUIV="Cache-Control" CONTENT="0">
> >
> ><CFHEADER NAME="Expires" VALUE="Mon, 06 Jan 1990 00:00:01 GMT">
> ><CFHEADER NAME="Pragma" VALUE="no-cache">
> ><CFHEADER NAME="cache-control" VALUE="no-cache">
> >
> >Joe
> >Certified Advanced ColdFusion Developer
> >[EMAIL PROTECTED]
> >
> >-----Original Message-----
> >From: Brian Scandale [mailto:[EMAIL PROTECTED]]
> >Sent: Tuesday, July 23, 2002 8:49 PM
> >To: CF-Talk
> >Subject: cfmx and browser cache issue
> >
> >
> >I've been working a problem for about 3 weeks now... with no luck. I am
> >having a hard time believing I am the only one affected by this. At first
> >that is what I thought...
> >
> >I am open to any and all ideas. I now think it is a problem with CFMX. I
can
> >open access to the application for those who want to see for themselves
what
> >I will describe below.
> >
> >I have an application with more than 300 of this tag embedded in it:
> ><input type="Button" value="GoBack" onclick="javascript:history.back();">
> >
> >Using CF5 and deployed on (Redhat/apache 1.3) and (Win2K/IIS) I have
never
> >had a problem backing up across previously posted results. Just click on
the
> >GoBack Button and away we go... back.
> >
> >Now I upgrade to CFMX and I get this on both the linux and the win
> >platforms: This document resulted from a POST operation and has expired
from
> >the cache. If you wish you can repost... blah blah blah.
> >
> >It happens in IE5,IE5.5,IE6.0,Netscape4.07.
> >
> >I can either rewrite the application to never goBack or try and fix this.
> >
> >Can I be the only one who experienced this on the CFMX upgrade???
> >
> >Anyone want to look where I have been looking for weeks now?
> >
> >Thanks,
> >Brian
> >
> >
> >
> ______________________________________________________________________
> Get the mailserver that powers this list at http://www.coolfusion.com
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 08:55:53 +0200
> From: Hugo Ahlenius <[EMAIL PROTECTED]>
> Subject: RE: OT: Charting Software
> Message-ID: <[EMAIL PROTECTED]>
>
> Is anyone using OWC to create graphs? (Microsoft Office Web Components)
>
> I did some experimentation with OWC and CF5 some time ago, but I gave
up...
>
>
>
>
> -------------------------------------------------------------
> Hugo Ahlenius                       E-Mail:     [EMAIL PROTECTED]
> Project Officer                     Phone:      +46 8 7410451
> UNEP GRID-Arendal                   Fax:       +46 733 403285
> Stockholm Office                    Mobile:    +46 733 467111
>                                     WWW:  http://www.grida.no
> -------------------------------------------------------------
>
>
>
> | -----Original Message-----
> | From: Stacy Young [mailto:[EMAIL PROTECTED]]
> | Sent: Wednesday, July 24, 2002 02:50
> | To: CF-Talk
> | Subject: RE: OT: Charting Software
> |
> |
> | Ah ok nevermind...I see the generator
> |
> |
> | -----Original Message-----
> | From: Stacy Young [mailto:[EMAIL PROTECTED]]
> | Sent: Tuesday, July 23, 2002 8:46 PM
> | To: CF-Talk
> | Subject: RE: OT: Charting Software
> |
> | How is it with real-time data? From the looks of it I thought it only
> | functioned off text files??
> |
> |
> | -----Original Message-----
> | From: Jeff Garza [mailto:[EMAIL PROTECTED]]
> | Sent: Tuesday, July 23, 2002 8:02 PM
> | To: CF-Talk
> | Subject: Re: OT: Charting Software
> |
> | We are actually using that some where I work.
> |
> | Very slick product!
> |
> | Jeff Garza
> ###########################################
>
> This message has been scanned by F-Secure Anti-Virus for Microsoft
Exchange.
> For more information, connect to http://www.F-Secure.com/
> ______________________________________________________________________
> 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
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 01:56:52 -0500
> From: "Ryan Hartwich" <[EMAIL PROTECTED]>
> Subject: CFGrid / CFGridColumn - display 1 long row as 2+ rows?
> Message-ID: <001101c232df$4d0d7aa0$057ba8c0@workstation>
>
> Does CFGrid, in 4.5, 5, or MX have the ability to display text fields as
> a row that is taller than 1 row high?
>
> I.e., I have a table with a really wide text field (500+ characters) and
> want the line to wrap onto a 2nd or 3rd physical row on the grid so that
> massive scrolling is not required.
>
> I can get the grid to make rows taller, but the text doesn't wrap when
> it is displayed or selected for editing.  This makes using the grid for
> viewing/changing wide tables and columns almost impossible.  I have
> looked through books and MM's site & forums and have seen no direct
> answer to this problem.
>
> Thanks,
> Ryan
>
>
> ______________________________________________________________________
> 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
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 08:48:37 +0100
> From: John McCosker <[EMAIL PROTECTED]>
> Subject: RE: OT: Charting Software
> Message-ID: <2953DDE3A7BED311BD8B00508B63B4AA04D44018@NTSERVER1>
>
> >>Serious charting still requires something outside of coldfusion. Guess
not
> many of us using charting else would be different.
>
> Agreed,
> we use tee-chart, its one of the most powerful tools we,ve seen out there,
> hooks into ASP VBscript and ends up as an embedded ActiveX component in
the
> browser.
>
> We use CF and ASP together, its extemely useful with WDDX which ASP can
also
> de-serialise,
>
> We have web based apps for Reservoir monitoring in CF showing current
views,
> alarms, customised
> reports, reports can be graphed, we serialise the recordset pass it to asp
> and returns back the
> chart in a frameset, its very nice,
>
> http://www.steema.com/products/teechart/version5/SomePictures.htm
>
> J
> ______________________________________________________________________
> 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
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 10:39:16 +0200
> From: Hugo Ahlenius <[EMAIL PROTECTED]>
> Subject: RE: Email regex
> Message-ID: <[EMAIL PROTECTED]>
>
> Jeff,
>
> that regexp works for me.
>
> I would be interested in seeing something similar for URL's -- I have been
> experimenting but got stuck.
>
> Something like:
>
REREPLACE(String,"((http:\/\/|www\.|WWW\.)[^[:space:]]+)([[:space:]]|\.)","<
> A HREF=\1>\1</A>\3","ALL")
>
> (Two problems with the above one: it doesn't add http:// in front of links
> that miss that, and it includes trailing dots (like a link at the end of a
> sentence)).
>
>
> -------------------------------------------------------------
> Hugo Ahlenius                       E-Mail:     [EMAIL PROTECTED]
> Project Officer                     Phone:      +46 8 7410451
> UNEP GRID-Arendal                   Fax:       +46 733 403285
> Stockholm Office                    Mobile:    +46 733 467111
>                                     WWW:  http://www.grida.no
> -------------------------------------------------------------
>
>
>
> | -----Original Message-----
> | From: Jeff Green [mailto:[EMAIL PROTECTED]]
> | Sent: Wednesday, July 24, 2002 03:36
> | To: CF-Talk
> | Subject: Email regex
> |
> |
> | Hi all,
> |
> | Im working on a regular expression for matching an email.
> |
> | So far I have this:
> | [-A-Za-z0-9_\.]+[@][-A-Za-z0-9_]+([\.][-A-Za-z0-9]+)+
> |
> | used like this:
> | <CFSET EmailPos =
> | REFindNoCase("[-A-Za-z0-9_\.]+[@][-A-Za-z0-9_]+([\.][-A-Za-z0-
> | 9]+)+",From,1,
> | "True")>
> |
> | I swear ive used this before and it worked, although now only
> | the .com or
> | the .net is matching.
> |
> | Any ideas,
> | Jeff
> |
> ______________________________________________________________________
> Get the mailserver that powers this list at http://www.coolfusion.com
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 17:00:37 +0800
> From: "Rudy Rustam" <[EMAIL PROTECTED]>
> Subject: Unicode drives me crazy - need help
> Message-ID: <[EMAIL PROTECTED]>
>
> Hi,
>
> I'm trying to convert some Chinese character to Hex code.
> Example: 三 (Three) = 4E09
>
> I am using ColdFusion MX, How am I supposed to do that?
>
> Thanks in advance
>
> - Rudy
>
> ______________________________________________________________________
> Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 16:33:49 +0700
> From: [EMAIL PROTECTED] (Paul Hastings)
> Subject: Re: Unicode drives me crazy - need help
> Message-ID: <01b801c232f5$381594f0$[EMAIL PROTECTED]>
>
> > I'm trying to convert some Chinese character to Hex code.
> > Example: 三 (Three) = 4E09
>
> what was the original encoding? what do you mean by HEX, some unicode
> transform?
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.375 / Virus Database: 210 - Release Date: 10/7/2545
>
> ______________________________________________________________________
> Get the mailserver that powers this list at http://www.coolfusion.com
>
> ------------------------------
>
> Date: Wed, 24 Jul 2002 17:42:11 +0800
> From: "Rudy Rustam" <[EMAIL PROTECTED]>
> Subject: RE: Unicode drives me crazy - need help
> Message-ID: <[EMAIL PROTECTED]>
>
> >From Form post, take input of Chinese character (GB2312 or Big5)
>
> And then convert them to UTF-16
>
>
>
> -----Original Message-----
> From: Paul Hastings [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 24, 2002 5:34 PM
> To: CF-Talk
> Subject: Re: Unicode drives me crazy - need help
>
> > I'm trying to convert some Chinese character to Hex code.
> > Example: 三 (Three) = 4E09
>
> what was the original encoding? what do you mean by HEX, some unicode
> transform?
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.375 / Virus Database: 210 - Release Date: 10/7/2545
>
>
> ______________________________________________________________________
> This list and all House of Fusion resources hosted by CFHosting.com. The
place for dependable ColdFusion Hosting.
>
> ------------------------------
>
> End of CF-Talk-list V1 #147
> ***************************
> FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
> Archives: http://www.mail-archive.com/[email protected]/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
>

FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to