Re: CFServer Log File Rotation

2007-04-24 Thread Duncan
Are you referring to the cfserver-out.log file? If so there is a hot
fix for this issue:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8698aeb8



On 4/24/07, Jon Clausen [EMAIL PROTECTED] wrote:
 I've got a client server that has been having intermittent problems
 with the cfserver.log file rotating correctly.  Once that happens,
 the file size grows (the biggest so far is around 500 MB), starts a
 downward spiral and eventually the server locks up with
 Java.Lang.outOfMemory errors.

 The number of exceptions also grows with the size of the server log
 since it seems to be causing overflow problems in other areas (Broken
 Pipe's, outOfMemory, permission issues with the log file itself).

 This does not seem to be a problem with any other log files -just the
 cfserver.log itself.

 Has anyone experienced an issue like this before, and if so is there
 a solution other than manual rotation?

 Thanks in advance,

 Jon



 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276090
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Scorpio Usergroup tour

2007-04-24 Thread srinivas ganta
Hi Guys,

  Can you please post Scorpio new features and positives of the new
version here,
 who attended Scorpio Usergroup Meeting

Thanks
Regards
Srinivas


~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276091
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: JReport anyone?

2007-04-24 Thread Andrew Scott
There is

Coldfusion reports is based off the Jasper Reports engine, and the Report
Designer iReports is open source, as well as the server version.

For more info http://www.jasperforge.org/





Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273



-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 24 April 2007 7:32 AM
To: CF-Talk
Subject: RE: JReport anyone?

Considering it have a server component, a designer component, etc = $$$.
I wish there were such a tool better than CFReport but not bank
breaking.






Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4101
mob: 651.245.2717
Adobe Solutions Partner
Microsoft Certified Partner



This message contains confidential information and is intended only for
[EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you
should not disseminate, distribute or copy this e-mail. Please notify
[EMAIL PROTECTED] immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed, arrive late or incomplete,
or contain viruses. Eric J. Hoffman therefore does not accept liability for
any errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.


-Original Message-

From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Monday, April 23, 2007 3:59 PM
To: CF-Talk
Subject: JReport anyone?

Anyone using JReport (www.JInfonet.com) for ColdFusion reporting?  It
looks like a nice product that can be easily integrated into CF apps.  I
downloaded an eval copy 3 weeks ago, and have yet to get anyone at
Jinfonet to return my call to give me the license key (and pricing
information).  Should I be worried about that?!  I'd love to know what
this beastie costs (I usually figure that if a company doesn't post
pricing info on their website, then it's too expensive for me).

Any comments on this product, or good alternatives (more capable than
CFReport) for a nice reporting tool that provides ad-hoc ability, would
be really helpful.  

Thanks all,
Reed





~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276092
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Bulk Insert

2007-04-24 Thread Robert Rawlins - Think Blue
Chaps,

On the final piece of the stored proc puzzle now, I've got a set of queries
that achieves exactly what I want them too, I'm now just looking to make
that into a proc and make a couple of variables dynamic.

CREATE PROCEDURE usp_devicelog @tankid int, @filename varchar(100) AS

TRUNCATE TABLE DeviceStaging

BULK INSERT DeviceStaging
FROM @filename
WITH (FIELDTERMINATOR = ',')

INSERT INTO MacAddress
SELECT DISTINCT MacAddress, Port
FROM DeviceStaging
WHERE MacAddress NOT IN (SELECT MacAddress FROM MacAddress)

INSERT INTO MacLog (MacAddress_ID, LogClass_ID, ThinkTank_ID, DateTime)
SELECT MacAddress.MacAddress_ID, DeviceStaging.LogClass_ID, @tankid,
DeviceStaging.DateTime
FROM DeviceStaging
JOIN MacAddress ON DeviceStaging.MacAddress = MacAddress.MacAddress

That's the final code which should work fine, however trying to make both
the filepath and the tankid as dynamic variables that I pass in is proving
tricky.

When I run that code in the query analyzer I get the following error.

Msg 102, Level 15, State 1, Procedure usp_devicelog, Line 6
Incorrect syntax near '@filename'.
Msg 319, Level 15, State 1, Procedure usp_devicelog, Line 7
Incorrect syntax near the keyword 'with'. If this statement is a common
table expression or an xmlnamespaces clause, the previous statement must be
terminated with a semicolon.

Which would suggest it doesn't like me using a variable for the file path.

Any ideas?

Thanks,

Rob

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: 23 April 2007 16:55
To: CF-Talk
Subject: RE: Bulk Insert

Thanks for that chaps,

Neither seem to work and still chuck back the same error in query analyser.

Thanks,

Rawlins

-Original Message-
From: AJ Mercer [mailto:[EMAIL PROTECTED] 
Sent: 23 April 2007 16:43
To: CF-Talk
Subject: Re: Bulk Insert

try puttind an alias on the sub-select in the where clause
eg WHERE DeviceStaging.MacAddress NOT IN (
SELECT ma2.MacAddress
FROM MacAddress ma2)

On 4/23/07, Robert Rawlins - Think Blue
[EMAIL PROTECTED]
wrote:

 Thanks AJ, That's all sorted now. :-D

 Next part of my query is now causing problems (again with no CF error,
 Doh!)
 I'm trying to move all mac address's that don't currently exists in the
 MacAddress table from the DeviceStaging table.

 INSERT INTO MacAddresses (MacAddress, Port)
 SELECT DeviceStaging.MacAddress, DeviceStaging.Port
 FROM DeviceStaging
 WHERE DeviceStaging.MacAddress NOT IN (SELECT MacAddress
 FROM MacAddress)

 Any ideas why this won't run? When placing it through query analyzer it
 tells me:

 Msg 208, Level 16, State 1, Line 1
 Invalid object name 'DeviceStaging'.

 But I defiantly have a table called DeviceStaging as that's where the
 import
 happens.

 Thanks,

 Rob






~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276093
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex remove everything but this string

2007-04-24 Thread James Holmes
How about using REFind() to return subexpressions?

h2([^]*)/h2

On 4/24/07, Mark Flewellen [EMAIL PROTECTED] wrote:
 I am having trouble with regex, to be honest I am not the greatest at it to 
 start with.

 I am trying to strip out everything except the content between h2 tags and 
 end up with a comma delimitered list.

 I can strip everything between the h2 tags with this

 h2[^]*/h2

 but I am trying to do the reverse of this.

 MF

 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276094
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Coldfusion Integration with .net,java

2007-04-24 Thread srinivas ganta
Hi,

  Any guys had gone thru the coldfusion integration with .net or Java?
i have few questions regarding it.
1.what can u achive with integrating coldfusion with .net or java?
2.which combinatation works good(coldfusion with java   OR coldfusion with
..net)
3. what kind of projects u suggest CF with .net?
4. what kind of projects u suggest CF with java?

Thanks in Advance,
Regards
Srinivas


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276095
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread James Holmes
CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
..NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276096
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SPRY record count

2007-04-24 Thread Chad McCue
I am using spry to display subcategories based on a selected category in
a drop down. I need a way to display this div divThere were no
subcategories found for the selected category/div when there was no
subcategories found and then if there were to display the div below. So
far it works fine when there are subcategories found.
 
div id=scats spry:region=dsSubcats style=margin-left:10px;
height:100px; width:200px; overflow:auto; border:1px solid ##00;
float:left; background-color:##efefef;
strongSelect Subcategories:/strong
ul class=createAccountForm
 li style=line-height:18px;  spry:repeat=dsSubcats
 input type=checkbox name=Subcategory value={CATEGORYID}
{CHECKED}  /{ds_RowNumber} {CATEGORYNAME}
 /li
/ul
/div


~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276097
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread Andrew Scott
Or Blue Dragon:-)

but to answer the question, it is more upto your needs and imagination more
than anything else. The only thing both Blue Dragon and Coldfusion 8 do,
whether it be java or .Net is open up more tools or packages to leverage
off.

For example, with .Net and IIS7.0 there is more tools and API's to utilise
within CF the ability to manipulate the IIS server in ways that required
complex code in the past. Or for example with SVN, there is packages out
there that allow for integration into SVN via java. So you can levergae of
that library rather than write your own.

As I said its your needs and imagination that is open to more, libraries
than ever before.


On 4/24/07, James Holmes [EMAIL PROTECTED] wrote:

 CF 7 is built on Java. If you want to integrate natively with .NET
 you'll have to wait for CF8. Otherwise webservices work well with
 ..NET.

 On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
  Hi,
 
Any guys had gone thru the coldfusion integration with .net or Java?
  i have few questions regarding it.
  1.what can u achive with integrating coldfusion with .net or java?
  2.which combinatation works good(coldfusion with java   OR coldfusion
 with
  ..net)
  3. what kind of projects u suggest CF with .net?
  4. what kind of projects u suggest CF with java?


 --
 mxAjax / CFAjax docs and other useful articles:
 http://www.bifrost.com.au/blog/

 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276098
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Convincing a client

2007-04-24 Thread Peterson, Chris
I would like some advice on how to approach a client regarding changes
to their system.  Before they were my customer, they purchased a
software package that could do X.   Then they spent years having a
company develop it into Y, with many different methodologies and
extremely bad database practices (when you have to join on a LIKE
'%blah%' just to associate 2 things that obviously MUST be associated,
and you have one column for each category an item is in, the database is
bad).  They bolted on an accounting package that does not tie payments
to items, so tracking is a mess and allocation of payments to items is
impossible.  Here is the problem:  the customer wants to have a product
they can re-sell or host for other companies.  I need to tell them, in a
way that makes sense to business people (which I am not), that trying to
build more software on a shaky base is folly, and will cost them far
more in the long run. I don't want them to have to pay for modifications
to this code, and then when it comes time to try and re-sell it, have to
re-code from scratch because they have no rights to re-sell their base
package or derivative works!

Any angle to take, or insight into conversations you have had, would be
appreciated.  I don't want to tell the customer 'your current package
you spent years on isn't very good', but I don't want them to hold on to
it either!  Ugh.

Chris

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276099
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPRY record count

2007-04-24 Thread Massimo Foti
You should be able to do that using a spry:if condition

  
Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com
  


- Original Message - 
From: Chad McCue [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, April 24, 2007 1:40 PM
Subject: SPRY record count


I am using spry to display subcategories based on a selected category in
 a drop down. I need a way to display this div divThere were no
 subcategories found for the selected category/div when there was no
 subcategories found and then if there were to display the div below. So
 far it works fine when there are subcategories found.
 
 div id=scats spry:region=dsSubcats style=margin-left:10px;
 height:100px; width:200px; overflow:auto; border:1px solid ##00;
 float:left; background-color:##efefef;
 strongSelect Subcategories:/strong
 ul class=createAccountForm
 li style=line-height:18px;  spry:repeat=dsSubcats
 input type=checkbox name=Subcategory value={CATEGORYID}
 {CHECKED}  /{ds_RowNumber} {CATEGORYNAME}
 /li
 /ul
 /div


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276100
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: SPRY record count

2007-04-24 Thread Chad McCue
Do you have an example of this. 



-Original Message-
From: Massimo Foti [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 7:56 AM
To: CF-Talk
Subject: Re: SPRY record count

You should be able to do that using a spry:if condition


Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com
  


- Original Message -
From: Chad McCue [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Tuesday, April 24, 2007 1:40 PM
Subject: SPRY record count


I am using spry to display subcategories based on a selected category
in
 a drop down. I need a way to display this div divThere were no
 subcategories found for the selected category/div when there was no
 subcategories found and then if there were to display the div below.
So
 far it works fine when there are subcategories found.
 
 div id=scats spry:region=dsSubcats style=margin-left:10px;
 height:100px; width:200px; overflow:auto; border:1px solid ##00;
 float:left; background-color:##efefef;
 strongSelect Subcategories:/strong
 ul class=createAccountForm
 li style=line-height:18px;  spry:repeat=dsSubcats
 input type=checkbox name=Subcategory value={CATEGORYID}
 {CHECKED}  /{ds_RowNumber} {CATEGORYNAME}
 /li
 /ul
 /div




~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276101
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex remove everything but this string

2007-04-24 Thread Peter Boughton
Heading = REReplace(Content, '^.*h2([^]*)/h2.*$' , '\1')

 I am having trouble with regex, to be honest I am not the greatest at 
 it to start with.
 
 I am trying to strip out everything except the content between h2 tags 
 and end up with a comma delimitered list. 
 
 I can strip everything between the h2 tags with this
 
 h2[^]*/h2
 
 but I am trying to do the reverse of this.
 
MF

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276102
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Convincing a client

2007-04-24 Thread Dave Francis
 -Original Message-
I would like some advice on how to approach a client regarding changes
to their system.  Before they were my customer, they purchased a

Hi Chris,
I, too, have been through this, and all I can say is Good Luck. The 
problem
is twofold: While the software might be [EMAIL PROTECTED] from a technical 
basis, it
might still be fine from a business point of view. The other problem is if
the person responsible for the original purchase/decision is still around
you've got vested interest and egos to contend with.


~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276103
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


sorting a table by the last_name from another table

2007-04-24 Thread Daniel Kessler
I have a Publications table (see tables below for all tables).  It  
has a publications_authors table that has a many-to-one relationship  
to publications because a publication may have many authors.  In  
addition, in Authors, either id can be filled with a number that  
relates to the People table, or with fname, lname if the person isn't  
in the People table.

I've been asked to sort the publications by the last name of the  
author.  Since these are separate tables, I don't see how to do  
that.  It doesn't seem like it can be an ORDERED BY.  I also don't  
see a realistic way to join these tables since authors is a many-to- 
one.  Clearly I'm a bit out of my league here.

I do have a method to make this work and I'm not sure if it's a good  
method.  I can get my list of publications.  Query the authors for  
that publication.  If the author is an id, then I'd have to query the  
People table for the fname, lname of the author.  Make the list of  
authors into a string, #lname#,#fname#.  Then use CF to make a  
column in the publications table query and add that string to the  
column.  Then I can query the query  with an ORDERED BY on that  
column.  Sounds convoluted but I think it'd work.

hmm, maybe I could query authors and join Publications and People  
since it would seem that any publication would have to have an author.

Any thoughts?  I suppose that I don't know how to work with the many- 
to-one relationships well.


create table publications (
publication_id NUMBER Primary Key,
id NUMBER REFERENCES people(id),
date_added DATE,
date_modified DATE,
published_day NUMBER,
published_month NUMBER,
published_year NUMBER,
publication_name VARCHAR2(300), // designates the name of the book/ 
journal that the publication may be in
title VARCHAR2(300),
 upload_path VARCHAR2(200)
)


create table publications_authors (
publicationa_id NUMBER Primary Key,
publication_id NUMBER REFERENCES publications(publication_id) ON  
DELETE CASCADE,
id NUMBER REFERENCES people(id),
a_fname VARCHAR2(100),
a_mname VARCHAR2(20),
a_lname VARCHAR2(100)
)

create table PEOPLE (
 id NUMBER Primary Key,
 dateModified date,
 type VARCHAR2(50),
 fname VARCHAR2(100),
 mname VARCHAR2(100),
 lname VARCHAR2(100),
  status VARCHAR2(20)
)



-- 

Daniel Kessler

College of Health and Human Performance
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
Phone: 301-405-2545
http://hhp.umd.edu




~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276104
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sorting a table by the last_name from another table

2007-04-24 Thread Deanna Schneider
Try this.

SELECT  p.publication_name,
  CASE WHEN o.lname is not null then o.lname ELSE
a.a_lname END as lastname,
  CASE WHEN o.fname is not null THEN o.fname ELSE
a.a_fname END as firstname

FROMpublications p INNER JOIN publications_authors a ON
p.publication_id = a.publication_id
 LEFT JOIN people o ON a.id = o.id
ORDER BY 2, 3

I'm not really sure what your foreign key in publications for the
people table is supposed to be doing. I'm assuming it references
something other than authors.

On 4/24/07, Daniel Kessler [EMAIL PROTECTED] wrote:
 I have a Publications table (see tables below for all tables).  It
 has a publications_authors table that has a many-to-one relationship
 to publications because a publication may have many authors.  In
 addition, in Authors, either id can be filled with a number that
 relates to the People table, or with fname, lname if the person isn't
 in the People table.

 I've been asked to sort the publications by the last name of the
 author.  Since these are separate tables, I don't see how to do
 that.  It doesn't seem like it can be an ORDERED BY.  I also don't
 see a realistic way to join these tables since authors is a many-to-
 one.  Clearly I'm a bit out of my league here.

 I do have a method to make this work and I'm not sure if it's a good
 method.  I can get my list of publications.  Query the authors for
 that publication.  If the author is an id, then I'd have to query the
 People table for the fname, lname of the author.  Make the list of
 authors into a string, #lname#,#fname#.  Then use CF to make a
 column in the publications table query and add that string to the
 column.  Then I can query the query  with an ORDERED BY on that
 column.  Sounds convoluted but I think it'd work.

 hmm, maybe I could query authors and join Publications and People
 since it would seem that any publication would have to have an author.

 Any thoughts?  I suppose that I don't know how to work with the many-
 to-one relationships well.


 create table publications (
 publication_id NUMBER Primary Key,
 id NUMBER REFERENCES people(id),
 date_added DATE,
 date_modified DATE,
 published_day NUMBER,
 published_month NUMBER,
 published_year NUMBER,
 publication_name VARCHAR2(300), // designates the name of the book/
 journal that the publication may be in
 title VARCHAR2(300),
  upload_path VARCHAR2(200)
 )


 create table publications_authors (
 publicationa_id NUMBER Primary Key,
 publication_id NUMBER REFERENCES publications(publication_id) ON
 DELETE CASCADE,
 id NUMBER REFERENCES people(id),
 a_fname VARCHAR2(100),
 a_mname VARCHAR2(20),
 a_lname VARCHAR2(100)
 )

 create table PEOPLE (
  id NUMBER Primary Key,
  dateModified date,
  type VARCHAR2(50),
  fname VARCHAR2(100),
  mname VARCHAR2(100),
  lname VARCHAR2(100),
   status VARCHAR2(20)
 )



 --

 Daniel Kessler

 College of Health and Human Performance
 University of Maryland
 Suite 2387 Valley Drive
 College Park, MD  20742-2611
 Phone: 301-405-2545
 http://hhp.umd.edu




 

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276105
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SPRY record count

2007-04-24 Thread Massimo Foti
 Do you have an example of this.

The doc below is a fundamental reading if you want to use Spry's datasets:
http://labs.adobe.com/technologies/spry/articles/data_set_overview/

The part on conditional processing:
http://labs.adobe.com/technologies/spry/articles/data_set_overview/#ConditionalConstructsSection



Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276106
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Not Sure if it Can be Done

2007-04-24 Thread Steve LaBadie
Is ColdFusion capable of pushing random content to another page? 

 

If for instance I have a press release page, can I some how push random
sets of teaser text to the home page to read all about it?

 

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
http://www.esu.edu http://www3.esu.edu 

 



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276107
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Convincing a client

2007-04-24 Thread Peterson, Chris
Yea, they have been dealing with so many daily / weekly problems, I
might be able to convince of the necessity =)

Chris 

-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:36 AM
To: CF-Talk
Subject: RE: Convincing a client

 -Original Message-
I would like some advice on how to approach a client regarding changes 
to their system.  Before they were my customer, they purchased a

Hi Chris,
I, too, have been through this, and all I can say is Good Luck.
The problem is twofold: While the software might be [EMAIL PROTECTED] from a
technical basis, it might still be fine from a business point of view.
The other problem is if the person responsible for the original
purchase/decision is still around you've got vested interest and egos to
contend with.




~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276108
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Not Sure if it Can be Done

2007-04-24 Thread Brad Wood
If your press release content is stored in a database, I can't see why
your home page couldn't have a simple query which would randomly pull a
few headlines from that table and display them as teasers with links to
the press release page.

That seems too obvious though... was that what you wanted?

~Brad

-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 8:33 AM
To: CF-Talk
Subject: Not Sure if it Can be Done

Is ColdFusion capable of pushing random content to another page? 

 

If for instance I have a press release page, can I some how push random
sets of teaser text to the home page to read all about it?

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276109
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Not Sure if it Can be Done

2007-04-24 Thread Steve LaBadie
For some reason, I thought if would be more complicated.  I guess I was
comparing what RSS does.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
[EMAIL PROTECTED]
http://www.esu.edu
-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:50 AM
To: CF-Talk
Subject: RE: Not Sure if it Can be Done

If your press release content is stored in a database, I can't see why
your home page couldn't have a simple query which would randomly pull a
few headlines from that table and display them as teasers with links to
the press release page.

That seems too obvious though... was that what you wanted?

~Brad

-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 8:33 AM
To: CF-Talk
Subject: Not Sure if it Can be Done

Is ColdFusion capable of pushing random content to another page? 

 

If for instance I have a press release page, can I some how push random
sets of teaser text to the home page to read all about it?



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276110
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Not Sure if it Can be Done

2007-04-24 Thread Billy Cox
Depending on your database backend, you should be able to get a fixed number
of random records.

This is a rough example from SQL Server:

SELECT TOP 5 *
FROM press_releases
ORDER BY NEWID()

The next question is how often you want to randomize your result set. You
could accomplish that by using a cached query that expires daily (or hourly,
or whatever).

Brad probably knows 50 other ways to skin this cat. Hi Brad.  :)



-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 8:50 AM
To: CF-Talk
Subject: RE: Not Sure if it Can be Done


If your press release content is stored in a database, I can't see why
your home page couldn't have a simple query which would randomly pull a
few headlines from that table and display them as teasers with links to
the press release page.

That seems too obvious though... was that what you wanted?

~Brad

-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 8:33 AM
To: CF-Talk
Subject: Not Sure if it Can be Done

Is ColdFusion capable of pushing random content to another page?



If for instance I have a press release page, can I some how push random
sets of teaser text to the home page to read all about it?



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276111
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Not Sure if it Can be Done

2007-04-24 Thread Sean Corfield
On 4/24/07, Steve LaBadie [EMAIL PROTECTED] wrote:
 For some reason, I thought if would be more complicated.  I guess I was
 comparing what RSS does.

Even RSS - Really Simple Syndication - is just another data source
that ColdFusion would query (although in that case it would fetch the
RSS feed via cfhttp, call xmlParse() and then extract the
headlines). Still not very complicated.
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

If you're not annoying somebody, you're not really alive.
-- Margaret Atwood

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276112
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Not Sure if it Can be Done

2007-04-24 Thread Brad Wood
Hi Billy.

Yeah, I was just thinking you could put a JavaScript time out on your
home page which would make an Ajax call to a web service to get the
newest news feeds and dynamically change the teasers every five minutes
as long as the page was left open.   Of course, in this case CF isn't
really pushing the data-- the client is really pulling it, but it's
all semantics I guess.

Heck, if you want something streaming like RSS, you could build a little
Flex app which keeps an open TCP connection and streams XML news to the
page.  Basically like the real-time SeeFusion server monitoring software
does.  This may fall more in the category of pushing.  :)

~Brad


-Original Message-
From: Billy Cox [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:08 AM
To: CF-Talk
Subject: RE: Not Sure if it Can be Done

Depending on your database backend, you should be able to get a fixed
number
of random records.

This is a rough example from SQL Server:

SELECT TOP 5 *
FROM press_releases
ORDER BY NEWID()

The next question is how often you want to randomize your result set.
You
could accomplish that by using a cached query that expires daily (or
hourly,
or whatever).

Brad probably knows 50 other ways to skin this cat. Hi Brad.  :)

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276113
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Regex remove everything but this string

2007-04-24 Thread Claude Schneegans
 I am trying to strip out everything except the content between h2 
tags and end up with a comma delimitered list.

You could do this very easily with CF_REextract.
This tag can return all your H2.../H2 strings in one list or one query.
See http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm

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


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276114
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JReport anyone?

2007-04-24 Thread dcooper
Or better yet: upgrade to CF7 with integrated reporting?

Damon


There is

Coldfusion reports is based off the Jasper Reports engine, and the Report
Designer iReports is open source, as well as the server version.

For more info http://www.jasperforge.org/





Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273



-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 24 April 2007 7:32 AM
To: CF-Talk
Subject: RE: JReport anyone?

Considering it have a server component, a designer component, etc = $$$.
I wish there were such a tool better than CFReport but not bank
breaking.






Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4101
mob: 651.245.2717
Adobe Solutions Partner
Microsoft Certified Partner



This message contains confidential information and is intended only for
[EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you
should not disseminate, distribute or copy this e-mail. Please notify
[EMAIL PROTECTED] immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed, arrive late or incomplete,
or contain viruses. Eric J. Hoffman therefore does not accept liability for
any errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.


-Original Message-

From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Monday, April 23, 2007 3:59 PM
To: CF-Talk
Subject: JReport anyone?

Anyone using JReport (www.JInfonet.com) for ColdFusion reporting?  It
looks like a nice product that can be easily integrated into CF apps.  I
downloaded an eval copy 3 weeks ago, and have yet to get anyone at
Jinfonet to return my call to give me the license key (and pricing
information).  Should I be worried about that?!  I'd love to know what
this beastie costs (I usually figure that if a company doesn't post
pricing info on their website, then it's too expensive for me).

Any comments on this product, or good alternatives (more capable than
CFReport) for a nice reporting tool that provides ad-hoc ability, would
be really helpful.  

Thanks all,
Reed

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276115
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Not Sure if it Can be Done

2007-04-24 Thread Ian Skinner
Of course, in this case CF isn't really 'pushing' the data-- the client
is really 'pulling' it, but it's all semantics I guess.

It's much more then semantics.  But the spirit is correct, a great deal
of the time a scheduled, recurring pull can fulfill one's data streaming
requirements.

you could build a little Flex app which keeps an open TCP connection
and streams XML news to the page.

This would be easy to do, but again the Flex app is going to pull the
data unless one has the Flex Data Services (FDS) piece.  Now this piece
can do a true push, but it is the costly piece of Flex.  (There is a
free version of FDS, but it does have strict limits).

But when one HAS to push the data, pulling may not be sufficient.  But I
suspect this is fairly rare and, as stated above, pulling can be used to
great effect.

Confidentiality Notice:  This 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 and
delete any copies of this message.



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276116
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Convincing a client

2007-04-24 Thread Rick Faircloth
Just be honest, understanding, yet frank in your assessment.
Let them know you can go either way on the project, but your
recommendation is to start from scratch.

Business people, like most of us, like frank discussions, even
if we don't like what we're hearing initially.  Just be as gentle
as possible so as to not make them look foolish for their previous
decisions.  Make it  a pro and con discussion, instead of let's
see who can win this discussion.

Getting people to discuss difficult matters in pro and con manner
has always helped me avoid a me vs them situation and basically
puts me on their side in helping solve their dilemma.

..02...

HTH,

Rick

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:45 AM
To: CF-Talk
Subject: RE: Convincing a client

Yea, they have been dealing with so many daily / weekly problems, I
might be able to convince of the necessity =)

Chris 

-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:36 AM
To: CF-Talk
Subject: RE: Convincing a client

 -Original Message-
I would like some advice on how to approach a client regarding changes 
to their system.  Before they were my customer, they purchased a

Hi Chris,
I, too, have been through this, and all I can say is Good Luck.
The problem is twofold: While the software might be [EMAIL PROTECTED] from a
technical basis, it might still be fine from a business point of view.
The other problem is if the person responsible for the original
purchase/decision is still around you've got vested interest and egos to
contend with.






~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276117
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Regex remove everything but this string

2007-04-24 Thread Ben Nadel
I would have to agree with Claude. It's going to be much more simple and
efficient to GET matches rather than to delete NON MATCHES. Once you
have the matches in an array, you can use ArrayToList() if you really
need a list... Or if you go the query route, you can use ValueList() to
get the column in a list. 


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 10:41 AM
To: CF-Talk
Subject: Re: Regex remove everything but this string

 I am trying to strip out everything except the content between h2
tags and end up with a comma delimitered list.

You could do this very easily with CF_REextract.
This tag can return all your H2.../H2 strings in one list or one
query.
See
http://www.contentbox.com/claude/customtags/REextract/testREextract.cfm

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276118
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Convincing a client

2007-04-24 Thread Peterson, Chris
Thanks Rick =)

Chris 

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 10:39 AM
To: CF-Talk
Subject: RE: Convincing a client

Just be honest, understanding, yet frank in your assessment.
Let them know you can go either way on the project, but your
recommendation is to start from scratch.

Business people, like most of us, like frank discussions, even if we
don't like what we're hearing initially.  Just be as gentle as possible
so as to not make them look foolish for their previous decisions.  Make
it  a pro and con discussion, instead of let's see who can win this
discussion.

Getting people to discuss difficult matters in pro and con manner has
always helped me avoid a me vs them situation and basically puts me on
their side in helping solve their dilemma.

...02...

HTH,

Rick

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 9:45 AM
To: CF-Talk
Subject: RE: Convincing a client

Yea, they have been dealing with so many daily / weekly problems, I
might be able to convince of the necessity =)

Chris 

-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 9:36 AM
To: CF-Talk
Subject: RE: Convincing a client

 -Original Message-
I would like some advice on how to approach a client regarding changes 
to their system.  Before they were my customer, they purchased a

Hi Chris,
I, too, have been through this, and all I can say is Good Luck.
The problem is twofold: While the software might be [EMAIL PROTECTED] from a
technical basis, it might still be fine from a business point of view.
The other problem is if the person responsible for the original
purchase/decision is still around you've got vested interest and egos to
contend with.








~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276119
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Report Builder - Barcode Font not working for PDF

2007-04-24 Thread Bobby Schuchert
I just got the Free 3 of 9 Extended font to work. Here is what I did:

I first added the font in the control panel fonts app of the server. I then 
added the font in the CF administrator. I noticed that the font face and font 
family were both isted as new. I rebooted and when it came up they were both 
still listed as new. I opened up the TTF file to see what the name was 
actually listed as. I then used that name in my css like so font-family:Free 3 
of 9 Extended;. It worked. 

I can now print barcode labels using flashpaper. PDF still wants to make 
everything portrait for some reason, even though I specify landscape.

Anyway hope this helps.




 I had trouble doing the exact same thing a few weeks ago.  Wound up 
 using  the IDAutomationHC39M font from http://www.idautomation.
 com/fonts/free/
 
 
 
 
  I'm having a problem using barcodes on a pdf created with 
 Coldfusion's 
  Report Builder.  I followed the steps Jeff Houser identifies in his 
 
  Nov 2006 Coldfusion Developers Journal article entitled Five Cool 
  Things I've Done with Coldfusion(http://coldfusion.sys-con.
  com/read/296187.htm) and still do not get the expected results.  
  Report Builder displays the value as a bar code but when my 
 Coldfusion 
  page invokes myReport.cfr, the value displays in the default 
  (non-barcode) font.
  
  The Free 3 of 9 Extended font is installed on my local machine and 
 
  my development server.
  I've used Coldfusion Administrator on my development server to 
 verify 
  the font is listed in 'Font Management'. 
  The font is a TrueType font.
  I've used Acrobat Professional to create a pdf with the barcode font 
 
  to verify that it can be used in a pdf.
  I've displayed text on a Coldfusion page (on my development server) 
 
  using the barcode font.
  Report Builder lists Free 3 of 9 Extended as an available font.
  When I select the field in Report Builder and change the font name, 
 
  the value appears as barcodes.
  In Report Builder, I've set the font as an embedded font.
  In my Coldfusion page I have the statement  
 
 
  cfreport template=myReport.cfr format=pdf
  
 
  cfreportparam name=BatchToPrint value=#THIS_BATCH_ID#
 
 
  /cfreport
  When I execute my Coldfusion page, the field value on the resulting 
 
  pdf displays in the default non-barcode font.
  
  Does anyone have any suggestions as to why the pdf is not displayed 
 
  the barcode 
font?

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276120
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JReport anyone?

2007-04-24 Thread Balthor K
You could use JasperReports and give this custom tag a shot:

http://sourceforge.net/project/showfiles.php?group_id=117212

I haven't used it yet but it may prove to be of value.

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276121
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: sorting a table by the last_name from another table

2007-04-24 Thread daniel kessler
I'm not really sure what your foreign key in publications for the
people table is supposed to be doing. I'm assuming it references
something other than authors.

It's there so that I know who entered the publication.  That way, I can 
restrict editing to the person that entered it.

Try this.

SELECT  p.publication_name,
  CASE WHEN o.lname is not null then o.lname ELSE
a.a_lname END as lastname,
  CASE WHEN o.fname is not null THEN o.fname ELSE
a.a_fname END as firstname

FROMpublications p INNER JOIN publications_authors a ON
p.publication_id = a.publication_id
 LEFT JOIN people o ON a.id = o.id
ORDER BY 2, 3

That worked pretty well.  I unfortunately left out/didn't explain it thoroughly 
(so sorry).  Each publication will have multiple authors and it should only 
sort by the lastname,firstname of the first author (see example).  The authors 
for each publication must display in the order that they were entered though.  
Otherwise, you're query looked good.

So to recap, the ordering of the publications is by first author.  The ordering 
of the authors in the display of each publication is by the way they were 
entered.

example:
benas, j.,achary,q The Mountains of Schoenberg
zaine,p,benas,j  The forest of my mind

Did I make sense?

Here's a dump where I join the fname,lname of people in the authors table and 
display the publications:
http://hhp.umd.edu/research/publications_display.cfm

Here's the current example of this data using the query that you posted:
http://hhp.umd.edu/research/publications.cfm

Thank you for listening.

daniel



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276122
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Not Sure if it Can be Done

2007-04-24 Thread todd sharp
Create an RSS feed 
(http://www.remotesynthesis.com/blog/index.cfm/2007/3/19/Add-dynamic-content-to-your-site-with-RSS-and-ColdFusion--Adobe-Edge)

and then a Spry pod that auto refreshes with the latest feed items 
(http://ray.camdenfamily.com/index.cfm/2006/7/28/Building-an-AJAX-Based-RSS-Pod)

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276123
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFServer Log File Rotation

2007-04-24 Thread Jon Clausen
Duncan,

Thanks for the reply.  No, unfortunately, it's a similar issue, but  
on a Linux (SUSE 10) box so the hotfix does not apply.

I wish it were that easy.  :-)I'm going to create a CRON job  
today to rotate the logs periodically, but I'd rather see if I can  
find the root cause for why CF isn't handling the rotation.

Jon

On Apr 24, 2007, at 2:28 AM, Duncan wrote:

 Are you referring to the cfserver-out.log file? If so there is a hot
 fix for this issue:
 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8698aeb8



 On 4/24/07, Jon Clausen [EMAIL PROTECTED] wrote:
 I've got a client server that has been having intermittent problems
 with the cfserver.log file rotating correctly.  Once that happens,
 the file size grows (the biggest so far is around 500 MB), starts a
 downward spiral and eventually the server locks up with
 Java.Lang.outOfMemory errors.

 The number of exceptions also grows with the size of the server log
 since it seems to be causing overflow problems in other areas (Broken
 Pipe's, outOfMemory, permission issues with the log file itself).

 This does not seem to be a problem with any other log files -just the
 cfserver.log itself.

 Has anyone experienced an issue like this before, and if so is there
 a solution other than manual rotation?

 Thanks in advance,

 Jon





 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276124
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


EST to CST timestamp

2007-04-24 Thread Deepak Gupta
Hi 

How can I convert EST timestamp to CST timestamp?  Has anyone done this?

I am looking for a very small logic to do that. 


-D

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276125
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: EST to CST timestamp

2007-04-24 Thread Christopher Jordan
What do you mean? the timestamp format doesn't change from timezone to 
timezone... just the time changes.
CST = EST - 1hour.

cfscript
DateAdd(h, -1, myESTTimeStamp);
/cfscript

Is there something I'm missing here?

Chris

Deepak Gupta wrote:
 Hi 

 How can I convert EST timestamp to CST timestamp?  Has anyone done this?

 I am looking for a very small logic to do that. 


 -D

 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276126
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: JReport anyone?

2007-04-24 Thread Eric J. Hoffman
But allowing a client to make their own reports?   That doesn't help from what 
I can tell.   We have to program reports in CF, not allow clients to make their 
own flavors...we get this request all the time.






Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4101
mob: 651.245.2717
Adobe Solutions Partner
Microsoft Certified Partner



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


-Original Message-

From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 9:35 AM
To: CF-Talk
Subject: Re: JReport anyone?

Or better yet: upgrade to CF7 with integrated reporting?

Damon


There is

Coldfusion reports is based off the Jasper Reports engine, and the Report
Designer iReports is open source, as well as the server version.

For more info http://www.jasperforge.org/





Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273



-Original Message-
From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 24 April 2007 7:32 AM
To: CF-Talk
Subject: RE: JReport anyone?

Considering it have a server component, a designer component, etc = $$$.
I wish there were such a tool better than CFReport but not bank
breaking.






Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4101
mob: 651.245.2717
Adobe Solutions Partner
Microsoft Certified Partner



This message contains confidential information and is intended only for
[EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you
should not disseminate, distribute or copy this e-mail. Please notify
[EMAIL PROTECTED] immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system. E-mail
transmission cannot be guaranteed to be secure or error-free as information
could be intercepted, corrupted, lost, destroyed, arrive late or incomplete,
or contain viruses. Eric J. Hoffman therefore does not accept liability for
any errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please request a
hard-copy version.


-Original Message-

From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Monday, April 23, 2007 3:59 PM
To: CF-Talk
Subject: JReport anyone?

Anyone using JReport (www.JInfonet.com) for ColdFusion reporting?  It
looks like a nice product that can be easily integrated into CF apps.  I
downloaded an eval copy 3 weeks ago, and have yet to get anyone at
Jinfonet to return my call to give me the license key (and pricing
information).  Should I be worried about that?!  I'd love to know what
this beastie costs (I usually figure that if a company doesn't post
pricing info on their website, then it's too expensive for me).

Any comments on this product, or good alternatives (more capable than
CFReport) for a nice reporting tool that provides ad-hoc ability, would
be really helpful.  

Thanks all,
Reed



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276127
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Outlook Express attachment weirdness

2007-04-24 Thread Bryan Stevenson
Hey All,

Well I can't say I've seen this one before.

ISSUE 1:
We setup a simple quote request form for a clientbasic contact and quote 
details with the ability to attach an image file to the request (uploaded via 
CFFILE and attached to an e-mail which is sent to our client along with the 
quote request details).

When uploading the files we use the  makeunique option for filenames.

So the client is seeing some attachments with filenames like this 
ATT00543,jpg.  The weirdness comes in when they remove focus from that e-mail 
and then come back to it.the second time the attached file name will be 
ATT00544.jpgand so on...verytime he comes back to the mail the attached 
file name has incremented by one???

I'm stumped on this one??

ISSUE 2:
Scaling while printing.  Outlook Express shows the attached image inline in the 
message body (much wider than the text of the quote details).  When the client 
prints the message, his printers are auto-scaling the message (due to the image 
in the message).  Normally there is either printer prefs that allow you to 
change that behaviour or via print preview you can change it.  Neither of those 
options are available when printing from Outlook Express.  Any thoughts?


So any thoughts on either issue would be great.I shall now start Googling 
to see what I can find.

TIA

Cheers

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

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276128
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Outlook Express attachment weirdness

2007-04-24 Thread Damien McKenna
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, April 24, 2007 12:03 PM
 Subject: OT: Outlook Express attachment weirdness
 
 So the client is seeing some attachments with filenames like 
 this ATT00543,jpg.  The weirdness comes in when they remove 
 focus from that e-mail and then come back to it.the 
 second time the attached file name will be 
 ATT00544.jpgand so on...verytime he comes back to the 
 mail the attached file name has incremented by one???

It may be outside of your control, but can you ask them to upgrade their
email client to e.g. Thunderbird?


Damien McKenna
Web Developer
 
The LIMU Company
Making a Difference
 
610 Crescent Executive Court, Suite 110
Lake Mary, FL 32746
P 407.548.3800
F 407.333.0419
www.thelimucompany.com

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276129
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion and SAML

2007-04-24 Thread Juan Alv
Hello, 

I was wondering if someone managed to use SAML 1.1 (OpenSAML) within Coldfusion 
environment. 

We have been trying to do so with not joy. We haven't been able because of the 
log4j versions problem: CF uses log4j 1.1 and OpenSAML log4j 1.2 

Is there any workaround for this (running in the same context as CF)? 

Has someone tried another implementation of SAML perhaps?

TIA,

Juan

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276130
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Outlook Express attachment weirdness

2007-04-24 Thread Bryan Stevenson
Thanks (sort of...hehe) Damien

and now I will add to my requestno need to say try another mail 
client...cause it ain't gonna happen

So if you have any advice in the form of a possible cause of this or solution 
to 
it...please shareif not...please help reduce the noise on this thread ;-)

Cheers

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

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276131
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: JReport anyone?

2007-04-24 Thread Dave Watts
 But allowing a client to make their own reports?   That 
 doesn't help from what I can tell.   We have to program 
 reports in CF, not allow clients to make their own 
 flavors...we get this request all the time.

There's no reason why the client can't make their own reports using the
bundled CF 7 report builder, although it may be tedious to set this up.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276132
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Outlook Express attachment weirdness

2007-04-24 Thread Damien McKenna
 -Original Message-
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, April 24, 2007 12:36 PM
 Subject: Re: Outlook Express attachment weirdness
 
 Thanks (sort of...hehe) Damien

:-P

When you send the email are you using the new, autogenerated filename or
the original?  Have you looked at the message source in Outlook to see
if the filename is being changed at the source level (can you even do
that in OE?) or inernally within the app's attachmnent handling?  You
could try manually setting the filename yourself, e.g.
request_5_file_1_img.jpg (request - request_id - file - file_id -
file type - ext).  What happens if you upload a file that doesn't have a
number as the last character of the file's basename (before the
extension)?


Damien McKenna
Web Developer
 
The LIMU Company
Making a Difference
 
610 Crescent Executive Court, Suite 110
Lake Mary, FL 32746
P 407.548.3800
F 407.333.0419
www.thelimucompany.com

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276133
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Coldfusion and SAML

2007-04-24 Thread Phillip Duba
Juan,

I had to use the Apache XML Security library just for this reason and I
had to use an older version, 1.2.0, not the latest due to other .jar
file incompatibilities as well as the xmlsec-1.2.96.jar file instead of
the xmlsec.jar file in the 1.2.0 download,

Phil

-Original Message-
From: Juan Alv [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 12:20 PM
To: CF-Talk
Subject: Coldfusion and SAML

Hello, 

I was wondering if someone managed to use SAML 1.1 (OpenSAML) within
Coldfusion environment. 

We have been trying to do so with not joy. We haven't been able because
of the log4j versions problem: CF uses log4j 1.1 and OpenSAML log4j 1.2 

Is there any workaround for this (running in the same context as CF)? 

Has someone tried another implementation of SAML perhaps?

TIA,

Juan



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276134
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Outlook Express attachment weirdness

2007-04-24 Thread Bryan Stevenson
 When you send the email are you using the new, autogenerated filename or
 the original?

Whatever name CFFILE uses (auto-generated if a naming conflict or the original 
if no conflict)so CFFILE.serverFile.

  Have you looked at the message source in Outlook to see
 if the filename is being changed at the source level (can you even do
 that in OE?)

Nopenot yet...will be sending myself some test messages shortly

 or inernally within the app's attachmnent handling?

see above...using whatever file name cffile spits back

  You
 could try manually setting the filename yourself, e.g.
 request_5_file_1_img.jpg (request - request_id - file - file_id -
 file type - ext).

Could do...but againsometimes it is the original file name

 What happens if you upload a file that doesn't have a
 number as the last character of the file's basename (before the
 extension)?

I don't knowbut the ATT00123.jpg I mentioned before looks like a CF 
generated filename (or at least follows the format CF has always used).  That 
said, I just checked the uploads dir and there are NO files with a filename 
like 
thatthey are all original file names or names made unique like so:
a.gif, a[1].gif, a[2].gif,a[3].gif and so on.  So I don;'t know where the heck 
that ATT... filename is coming from (unless Outlook is making it upor a 
virus scanner is interferinghey now that could be it).

Keep 'em comin folks ;-)


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

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276135
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Convincing a client

2007-04-24 Thread Rick Faircloth
No problem... let us know how it goes so we can learn from
your experience!

Rick

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 10:53 AM
To: CF-Talk
Subject: RE: Convincing a client

Thanks Rick =)

Chris 

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 10:39 AM
To: CF-Talk
Subject: RE: Convincing a client

Just be honest, understanding, yet frank in your assessment.
Let them know you can go either way on the project, but your
recommendation is to start from scratch.

Business people, like most of us, like frank discussions, even if we
don't like what we're hearing initially.  Just be as gentle as possible
so as to not make them look foolish for their previous decisions.  Make
it  a pro and con discussion, instead of let's see who can win this
discussion.

Getting people to discuss difficult matters in pro and con manner has
always helped me avoid a me vs them situation and basically puts me on
their side in helping solve their dilemma.

02...

HTH,

Rick

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 9:45 AM
To: CF-Talk
Subject: RE: Convincing a client

Yea, they have been dealing with so many daily / weekly problems, I
might be able to convince of the necessity =)

Chris 

-Original Message-
From: Dave Francis [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 9:36 AM
To: CF-Talk
Subject: RE: Convincing a client

 -Original Message-
I would like some advice on how to approach a client regarding changes 
to their system.  Before they were my customer, they purchased a

Hi Chris,
I, too, have been through this, and all I can say is Good Luck.
The problem is twofold: While the software might be [EMAIL PROTECTED] from a
technical basis, it might still be fine from a business point of view.
The other problem is if the person responsible for the original
purchase/decision is still around you've got vested interest and egos to
contend with.










~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276136
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Convincing a client

2007-04-24 Thread Jon Clausen
Chris,

I spent 13 years with what is now a Fortune 100 company before doing  
my own thing.  When I joined them, they weren't even in the Fortune  
1000.   Many of the systems were added-on and upgraded over time,  
similar to your situation.

It came to a point where the business case had to be made to modify  
the entire internal application infrastructure to something that  
would integrate and scale to the size that this company had become.

Even a rough estimate of man hours should give you a strong business  
case for the following:

1) Annualized hours required to maintain or add features to the  
existing application vs. the same required to do the same on a from  
scratch application.

2) If the end goal is to re-distribute or re-sell the application or  
services, annualized hours required to support customers with the  
current app versus your proposal.

3) Annualized hardware scaling costs, assuming a reasonable growth  
rate.   For example, if the current application is highly inefficient  
in the way it consumes resources on the app server and DBMS side,  
it's going to require more hardware resources per client  - i.e. -  
less profitability per client.

4) Net value of the software application as a fixed asset.   By  
developing something internally with  a higher degree of scalability  
and greater ease in adding features/enhancments, the value of the  
companies assets increases.   They can depreciate the RD costs and  
grow their net worth because the software is more valuable to clients  
and potential investors.   This one's more difficult to calculate,  
but many business people don't factor in the value of their internal  
software assets.

My former company now places a high value their internal projects and  
intellectual property as assets and has an entirely separate business  
and service model for marketing those assets to third parties.

All in all, if you are dealing with those who made the original  
decisions, congratulate them on their success and reassure them that  
the decisions they made previously were the best they could be at the  
time.   This proposal is a product of their success - NOT a failure  
on their part - even if you personally see it that way.

The above can help make the pill easier to swallow and help you  
influence those who, as Dave said in his response, have a vested  
interest in the decisions which were made prior to your involvement  
in the project.

HTH,

Jon

On Apr 24, 2007, at 7:53 AM, Peterson, Chris wrote:

 I would like some advice on how to approach a client regarding changes
 to their system.  Before they were my customer, they purchased a
 software package that could do X.   Then they spent years having a
 company develop it into Y, with many different methodologies and
 extremely bad database practices (when you have to join on a LIKE
 '%blah%' just to associate 2 things that obviously MUST be associated,
 and you have one column for each category an item is in, the  
 database is
 bad).  They bolted on an accounting package that does not tie payments
 to items, so tracking is a mess and allocation of payments to items is
 impossible.  Here is the problem:  the customer wants to have a  
 product
 they can re-sell or host for other companies.  I need to tell them,  
 in a
 way that makes sense to business people (which I am not), that  
 trying to
 build more software on a shaky base is folly, and will cost them far
 more in the long run. I don't want them to have to pay for  
 modifications
 to this code, and then when it comes time to try and re-sell it,  
 have to
 re-code from scratch because they have no rights to re-sell their base
 package or derivative works!

 Any angle to take, or insight into conversations you have had,  
 would be
 appreciated.  I don't want to tell the customer 'your current package
 you spent years on isn't very good', but I don't want them to hold  
 on to
 it either!  Ugh.

 Chris

 

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276137
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Outlook Express attachment weirdness

2007-04-24 Thread Casey Dougall
Sounds like a virus scanner problem where it's removing the attachment.
Normally that would create an ATT00123.txt file





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276138
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: JReport anyone?

2007-04-24 Thread Eric J. Hoffman
It requires RDS connection to the CF server though, and that put the
stop to that...can't have them having DB access all over the joint.
Plus it is difficult to use for most folks...wishes wishes.  lol






Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4101
mob: 651.245.2717
Adobe Solutions Partner
Microsoft Certified Partner



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


-Original Message-

From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 12:13 PM
To: CF-Talk
Subject: RE: JReport anyone?

 But allowing a client to make their own reports?   That 
 doesn't help from what I can tell.   We have to program 
 reports in CF, not allow clients to make their own 
 flavors...we get this request all the time.

There's no reason why the client can't make their own reports using the
bundled CF 7 report builder, although it may be tedious to set this up.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net




~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276139
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFCs that extend CFCs - want to cfinclude a function

2007-04-24 Thread Jake Pilgrim
I have a CFC that extends another CFC, and I want to overwrite a function in 
the base CFC using a cfinclude. Take the following example:

subset.cfc:
cfcomponent extends=cfcs.base
  cfinclude template=functions.cfm /
/cfcomponent

base.cfc:
cfcomponent
  cffunction name=doStuff
 cfset returnVal = 1 /
 cfreturn returnVal /
  /cffunction
/cfcomponent

functions.cfm:
cffunction name=doStuff
  cfset returnVal = 2 /
  cfreturn returnVal /
/cffunction


Now if i paste the contents of function.cfm to where the cfinclude is the 
functions.cfm version of doStuff() overwrites the base version of doStuff() 
(good), but when i extract it into a separate file and use the cfinclude, it 
does not overwrite doStuff() (bad). 

Anyone know of a good workaround for this?

Thanks!
Jake Pilgrim

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276140
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Outlook Express attachment weirdness

2007-04-24 Thread Bryan Stevenson
Thanks Casetcertainly seems that way.

The client says it only happens with JPEGs.but perhaps whatever scanner 
they 
have handles JPEGs differently than GIF attachements etc).

Now he'll be having his  network guys investigate that issue ;-)

Cheers

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

Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments. 



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276141
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFMX 7.0.2 issues...

2007-04-24 Thread Charles Heizer
Thanks! I'll try that.

- Charles

On Apr 23, 2007, at 5:07 PM, Jordan Michaels wrote:

 Do you have the public IP or private IP mapped out in your /etc/hosts
 file? If nothing else - try adding both! =)

 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 BlueDragon Alliance Member
 [EMAIL PROTECTED]


 Charles Heizer wrote:
 Thanks,
 do you know if there is a log I can look at to see if this is the
 issue? My /etc/hosts file looks correct, the server is behind a F5 on
 a private NAT.

 - Charles

 On Apr 23, 2007, at 4:05 PM, antonio sequeira wrote:

 Hello Charles,

 check this:

 http://www.adobe.com/cfusion/knowledgebase/index.cfm?
 id=aae154f9pss=rss_coldfusion_aae154f9

 it solves that issue.
 AS

 Hello,
 I'm not sure what to do my CFMX servers running on RHEL AS 3 are
 acting up. If I restart the service on one of the two systems I  
 have
 it take 10 minutes to get through the Starting Registry

 Is there something I can check?

 Thanks!
 - Charles



 --- 
 --
 ---
 Charles Heizer
 Systems Management Solutions Group
 Lawrence Livermore National Laboratory
 7000 East Ave.
 L-285
 Livermore, CA 94550
 Phone: (925)422-0197
 Fax:(925)422-2425
 email: [EMAIL PROTECTED]
 --- 
 --
 ---




 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276142
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion and SAML

2007-04-24 Thread Balthor K
Here's a 3 part entry that may be of use:

http://www.philduba.com/index.cfm/2006/12/29/SAML-and-ColdFusion--Part-1

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276143
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Coldfusion Integration with .net,java

2007-04-24 Thread Kevin Aebig
Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
...NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276145
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Trouble with RIGHT function

2007-04-24 Thread Bruce Sorge
I have a query that is getting a string for the WHERE clause from the a URL
variable, and I am building the URL variable in JS on the form submit. What
happens is that the JS puts a comma at the end of the string. No big deal. I
figured that I would just use the RIGHT function to rebuild the string on
the submitted page, stripping the comma off the end. However, it is not
working. The original string looks like this:

3, 4, 5, 6,

When I do this:

cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')

I get 3 4, 5, 6,

I am not sure why this is happening. The only thing that I can think of is
that the space between the comma and number is making CF think that 3, is
the end of the string. Does this sound correct?

Thanks,

-- 
Bruce Sorge

I'm a mawg: half man, half dog. I'm my own best friend!


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276144
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Convincing a client ** Update **

2007-04-24 Thread Peterson, Chris
Well, the meeting went well, and the client decided on a re-write.
(Yaho!!!)  They had already ran into many of the limitations we
spoke about (database limitations and missing relationships), and pretty
much came into the meeting with the idea of a re-write.  I mainly spoke
of the time we are spending and money its costing them simply to
maintain their current code, and compared that to their future goals. We
also spoke of many of the idea's they had in the past that were never
done due to lack of flexibility in their current configuration. I am
firmly convinced that a re-write is the right thing to do for them, and
to fit their future business goals, and I cannot wait to get started =)

I have done many internal applications with a simple cfc based approach,
with atomic functions abstracted into methods and grouped into cfc's by
type of function.  Does anyone want to take a stab at convincing me to
use some framework out there?  I have downloaded and setup a test app in
Fusebox, but for some reason having to setup logic in .xml files makes
me not want to use it.  We are pretty solid in using MS SQL, but do you
think I should use something like Coldspring?

Thanks to everyone who chimed in!

Chris

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276146
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread Robertson-Ravo, Neil (RX)
Indeed, as long as the web service is passing strings ColdFusion talking to
..NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/





~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276147
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Trouble with RIGHT function

2007-04-24 Thread Damien McKenna
 -Original Message-
 From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, April 24, 2007 3:21 PM
 Subject: Trouble with RIGHT function
 
 3, 4, 5, 6,
 When I do this:
 cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')
 I get 3 4, 5, 6,

Does this produce the same error:

mid(url.groups, 1, Len(url.groups)-1))


Damien McKenna
Web Developer
 
The LIMU Company
Making a Difference
 
610 Crescent Executive Court, Suite 110
Lake Mary, FL 32746
P 407.548.3800
F 407.333.0419
www.thelimucompany.com

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276148
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Trouble with RIGHT function

2007-04-24 Thread Bruce Sorge
Actually that did the trick. Thanks.


 Does this produce the same error:

 mid(url.groups, 1, Len(url.groups)-1))


 Damien McKenna
 Web Developer

 The LIMU Company
 Making a Difference

 610 Crescent Executive Court, Suite 110
 Lake Mary, FL 32746
 P 407.548.3800
 F 407.333.0419
 www.thelimucompany.com



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276149
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Trouble with RIGHT function

2007-04-24 Thread Rob O'Brien
The way you're using right() and replace() is incorrect.

RIGHT(URL.GROUPS, 1) will return the last character in the string. In this
case, a comma.

Then with replace(), you're using the result of right() (the comma) and
replacing the first instance (and only the first, since you didn't specify
ALL in replace) within URL.GROUPS with nothing.

What you intended to do is strip off the last character. You should do some
checking to make sure there is in fact an extraneous comma at the end, and
then do something like this:

cfset URL.Group = left(URL.GROUPS,len(URL.GROUPS)-1)

That will take the leftmost X characters (X being one less than the total
length of the string).

It's not necessarily pretty, but it accomplishes what you are trying to do.

Rob


-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 2:21 PM
To: CF-Talk
Subject: Trouble with RIGHT function

I have a query that is getting a string for the WHERE clause from the a URL
variable, and I am building the URL variable in JS on the form submit. What
happens is that the JS puts a comma at the end of the string. No big deal. I
figured that I would just use the RIGHT function to rebuild the string on
the submitted page, stripping the comma off the end. However, it is not
working. The original string looks like this:

3, 4, 5, 6,

When I do this:

cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')

I get 3 4, 5, 6,

I am not sure why this is happening. The only thing that I can think of is
that the space between the comma and number is making CF think that 3, is
the end of the string. Does this sound correct?

Thanks,

-- 
Bruce Sorge

I'm a mawg: half man, half dog. I'm my own best friend!




~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276150
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Trouble with RIGHT function

2007-04-24 Thread Josh Nathanson
 cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')

Yeah, you don't want REPLACE there, it's doing exactly what you're telling 
it: replace the first comma with an empty string.

You could do what Damien suggested or also Left(url.groups, 
len(url.groups)-1)

-- Josh 


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276151
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Gerald Weir
Hi,
We are running CF MX6.1 on Jrun4 with Updater 6. We are experiencing sporadic 
truncated pages being downloaded to our clients. The pages start properly but 
break and some code is exposed.

I am not asking about this question in particular but rather the Hot Fix for 
this JRun issue which is issue 61210.

The installation instructions seem incomplete and not being a java programmer 
am having a bit of a challenge installing it.

The extracted Zip file contains folders such as:

1. connectors
2. javax
3. jrun
4. jrunx
5. META-INF
6. org

The command to install the hot fix is: java -Dtrace.ci=1 -jar wsconfig.jar 
-upgrade -v

The instructions don't say exactly where to put these files/folders. I have 
tried putting them in different places in the JRUN4 folder (/jrun4 or 
/jrun4/lib) but the update script seems to run but pull the connectors/files in 
the update script from the current directory rather than from the updated ones 
I just unzipped from. So, they aren't really updated. 

Another way to say it is that I can see the newer version of the files that I 
need (jrun_iis6_wildcard.dll, jrunwin32.dll, jrun_iis6.dll in the folder called 
CONNECTORS (from the downloaded ZIP file) and they have the right version 
numbers that I want (106505 instead of 106303) but no matter where I put them 
D:/Jrun4 or D:/Jrun4/lib and no matter where I run the command from it runs 
through the script but does not update them.  I cannot find any other mention 
of this truncation error or notes on this hot fix anywhere.

Below is a sample of the script as it is running in the command prompt:

D:\JRun4\libjava -Dtrace.ci=1 -jar wsconfig.jar -upgrade -v
Macromedia JRun 4.0 (Build 106363)
os.name: Windows 2003
os.version: 5.2
os.arch: x86
platform: intel-win
Extracting resource connectors/installers/intel-win/prebuilt/jrunwin32.dll
file defaulted
last modification date: Wed Aug 17 12:48:38 EDT 2005
size/compressed size: 73728/26311
 to D:\JRun4\lib\wsconfig\jrunwin32.dll
Created file D:\JRun4\lib\wsconfig\jrunwin32.dll
web server: IIS
web server directory: 701008
Stopped World Wide Web Publishing Service service
Extracting resource connectors/isapi/intel-win/prebuilt/jrun_iis6_wildcard.dll
file defaulted
last modification date: Wed Aug 17 12:48:38 EDT 2005
size/compressed size: 69632/29800
 to D:\JRun4\lib\wsconfig\1\jrun_iis6_wildcard.dll
Created file D:\JRun4\lib\wsconfig\1\jrun_iis6_wildcard.dll
File D:\JRun4\lib\wsconfig\jrun_iis6.dll newer or the same age
as resource connectors/isapi/intel-win/prebuilt/jrun_iis6.dll
in JAR file D:\JRun4\lib\wsconfig.jar so not extracted
Registry key SYSTEM\CurrentControlSet\Services\HTTP\Parameters, value EnableCopy
Send already set to 1
Started World Wide Web Publishing Service service
The Internet Information Server (IIS) connector was upgraded in DHC
web server: IIS
web server directory: 1744561898
Stopped World Wide Web Publishing Service service
Extracting resource connectors/isapi/intel-win/prebuilt/jrun_iis6_wildcard.dll
file defaulted
last modification date: Wed Aug 17 12:48:38 EDT 2005
size/compressed size: 69632/29800
 to D:\JRun4\lib\wsconfig\2\jrun_iis6_wildcard.dll
Created file D:\JRun4\lib\wsconfig\2\jrun_iis6_wildcard.dll
File D:\JRun4\lib\wsconfig\jrun_iis6.dll newer or the same age
as resource connectors/isapi/intel-win/prebuilt/jrun_iis6.dll
in JAR file D:\JRun4\lib\wsconfig.jar so not extracted
Registry key SYSTEM\CurrentControlSet\Services\HTTP\Parameters, value EnableCopy
Send already set to 1
Started World Wide Web Publishing Service service
The Internet Information Server (IIS) connector was upgraded in DRL_V2

Any direction on how to accomplish this task would be massively appreciated.

Thanks, Jerry 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276152
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Trouble with RIGHT function

2007-04-24 Thread Cameron Childress
 cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')

Bruce-

Looks like that code's telling CF to replace the first occurrence of
right(url.groups,1), which is a comma.  So your results are that the
first comma in your string is being replaced.  I suspect what you
actually want is to use left()

Something along these lines should do the trick:

myVar = left(trim(myVar), len(trim(myVar))-1)

-Cameron

On 4/24/07, Bruce Sorge [EMAIL PROTECTED] wrote:
 I have a query that is getting a string for the WHERE clause from the a URL
 variable, and I am building the URL variable in JS on the form submit. What
 happens is that the JS puts a comma at the end of the string. No big deal. I
 figured that I would just use the RIGHT function to rebuild the string on
 the submitted page, stripping the comma off the end. However, it is not
 working. The original string looks like this:

 3, 4, 5, 6,

 When I do this:

 cfset URL.Group = REPLACE(URL.GROUPS, RIGHT(URL.GROUPS, 1),'')

 I get 3 4, 5, 6,

 I am not sure why this is happening. The only thing that I can think of is
 that the space between the comma and number is making CF think that 3, is
 the end of the string. Does this sound correct?

 Thanks,

 --
 Bruce Sorge

 I'm a mawg: half man, half dog. I'm my own best friend!


 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276153
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion Integration with .net,java

2007-04-24 Thread Kevin Aebig
Hi Neil,

I'm not sure what you mean by passing strings as we also use integers and
lists quite easily. If you have trouble mapping an object from .NET to
something in CF, take advantage of the custom datatypes you can use with
CFC's to easily deal with them.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:26 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

Indeed, as long as the web service is passing strings ColdFusion talking to
...NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
.NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/







~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276154
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread Robertson-Ravo, Neil (RX)
Try passing and receiving XML and you will see what I mean.



This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:50:32 2007
Subject: RE: Coldfusion Integration with .net,java

Hi Neil,

I'm not sure what you mean by passing strings as we also use integers and
lists quite easily. If you have trouble mapping an object from .NET to
something in CF, take advantage of the custom datatypes you can use with
CFC's to easily deal with them.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:26 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

Indeed, as long as the web service is passing strings ColdFusion talking to
NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
..NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/









~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276155
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread Robertson-Ravo, Neil (RX)
But to add, what I meant to say was use simple variables so lists and
integers are fine.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:50:32 2007
Subject: RE: Coldfusion Integration with .net,java

Hi Neil,

I'm not sure what you mean by passing strings as we also use integers and
lists quite easily. If you have trouble mapping an object from .NET to
something in CF, take advantage of the custom datatypes you can use with
CFC's to easily deal with them.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:26 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

Indeed, as long as the web service is passing strings ColdFusion talking to
NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
..NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/









~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276156
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Coldfusion Integration with .net,java

2007-04-24 Thread Kevin Aebig
I'll try to dig up the example that I put together of sending a struct from
CF to .NET and an object from .NET to CF... it wasn't easy, but once
everything is plotted out, it works quite well.

Anyhow, glad to see I'm not the only one trying to integrate the two.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:53 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

But to add, what I meant to say was use simple variables so lists and
integers are fine.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:50:32 2007
Subject: RE: Coldfusion Integration with .net,java

Hi Neil,

I'm not sure what you mean by passing strings as we also use integers and
lists quite easily. If you have trouble mapping an object from .NET to
something in CF, take advantage of the custom datatypes you can use with
CFC's to easily deal with them.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:26 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

Indeed, as long as the web service is passing strings ColdFusion talking to
.NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If you want to integrate natively with .NET
you'll have to wait for CF8. Otherwise webservices work well with
...NET.

On 4/24/07, srinivas ganta [EMAIL PROTECTED] wrote:
 Hi,

   Any guys had gone thru the coldfusion integration with .net or Java?
 i have few questions regarding it.
 1.what can u achive with integrating coldfusion with .net or java?
 2.which combinatation works good(coldfusion with java   OR coldfusion with
 ..net)
 3. what kind of projects u suggest CF with .net?
 4. what kind of projects u suggest CF with java?


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/











~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276157
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
 We are running CF MX6.1 on Jrun4 with Updater 6. We are 
 experiencing sporadic truncated pages being downloaded to our 
 clients. The pages start properly but break and some code is exposed.
 
 I am not asking about this question in particular but rather 
 the Hot Fix for this JRun issue which is issue 61210.
 
 The installation instructions seem incomplete and not being a 
 java programmer am having a bit of a challenge installing it.
 
 The extracted Zip file contains folders such as ...

You shouldn't extract anything at all manually. The download is a JAR file.
When you download it, your browser may rename it as a ZIP file. Just go
ahead and rename it to wsconfig.jar. Then, put it where the current
wsconfig.jar is, and run the command as described.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276158
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread Robertson-Ravo, Neil (RX)
There are some dll's you can use etc for complex vars but in all reality is
is just better practice to pass strings (albeit containing complex objects)
to and from the web service:  The whole point of a Web service is interop
and a string I/O allows this.  You shouldn't need to do all the hard work
etc, it should work now by passing strings vars.










This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 21:02:13 2007
Subject: RE: Coldfusion Integration with .net,java

I'll try to dig up the example that I put together of sending a struct from
CF to .NET and an object from .NET to CF... it wasn't easy, but once
everything is plotted out, it works quite well.

Anyhow, glad to see I'm not the only one trying to integrate the two.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:53 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

But to add, what I meant to say was use simple variables so lists and
integers are fine.





This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:50:32 2007
Subject: RE: Coldfusion Integration with .net,java

Hi Neil,

I'm not sure what you mean by passing strings as we also use integers and
lists quite easily. If you have trouble mapping an object from .NET to
something in CF, take advantage of the custom datatypes you can use with
CFC's to easily deal with them.

Cheers,

!k

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:26 PM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

Indeed, as long as the web service is passing strings ColdFusion talking to
..NET and vice versa is a piece of cake.

Don't get too excited about CF8 integration with .NET thpugh, from what I
have seen it will be very limited.

If only Adobe would see that ColdFusion for .NET is a great idea.






This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Kevin Aebig
To: CF-Talk
Sent: Tue Apr 24 20:20:36 2007
Subject: RE: Coldfusion Integration with .net,java

Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
Webservices is entirely possible. Though I'm quite sure you mean that the
datatypes are off (query  dataset), that's easy to deal with.

We deal with CF  DotNET in a number of internal projects and they all
function extremely well. 

Cheers,

!k

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 5:25 AM
To: CF-Talk
Subject: Re: Coldfusion Integration with .net,java

CF 7 is built on Java. If 

OT:DOM

2007-04-24 Thread Dave Francis
Is it just me, or is there really a difference between p / and p/p? In
the Firefox DOM inpector, the former doesn't 'close' properly, thus
subsequent nodes are children of the p / rather than the container. It's
throwing off some Javascript that I've recently (thanks to this list) gotten
hold of.



~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276160
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Gerald Weir
Hi Dave,

I've seen your name on the boards here many times.  Thanks for taking the time 
to answer my question.

I have tried everything I can think of and that certainly never occurred to me.

My browser definitely renames the file as wsconfig.zip and there is already a 
file in the D:/Jrun4/lib called wsconfig.jar which is simply a single file so 
that definitely would not have occurred to me.

It would be nice if the tech note from Adobe/Macromedia would have stated that.

One other thing I noticed is that on Win2003 server (after I unzipped the jar 
file) the DLL's had an option on the Properties tab to unblock the DLL 
because it came from a different computer.  Since the source file will be a 
zipped file do you think the update will fail if I cannot go into the zipped 
file and change that option?

Thanks, Jerry

p.s. Dave Galarizzo [?sp] from figleaf was my first CF instructor many years 
ago.

 We are running CF MX6.1 on Jrun4 with Updater 6. We are 

You shouldn't extract anything at all manually. The download is a JAR file.
When you download it, your browser may rename it as a ZIP file. Just go
ahead and rename it to wsconfig.jar. Then, put it where the current
wsconfig.jar is, and run the command as described.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276161
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Regex

2007-04-24 Thread Scott Stewart
Quick regex question

 

I have a string

 

NewYork, NewYork, 10005

 

I know that in an REReplace, \d will get rid of the zip code at the end,
that leaves a trailing comma. How do I dump the trailing comma also?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

http://www.sstwebworks.com

 



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276162
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cflocation sporadic file truncation on Jrun4, cannot install hotfix

2007-04-24 Thread Dave Watts
 I've seen your name on the boards here many times.  Thanks 
 for taking the time to answer my question.

You're welcome!

 I have tried everything I can think of and that certainly 
 never occurred to me.

I can see where it might not be immediately obvious, to say the least.

 One other thing I noticed is that on Win2003 server (after I 
 unzipped the jar file) the DLL's had an option on the 
 Properties tab to unblock the DLL because it came from a 
 different computer.  Since the source file will be a zipped 
 file do you think the update will fail if I cannot go into 
 the zipped file and change that option?

You shouldn't have to do anything inside the zipped file, which essentially
contains its own installer. It should extract the DLLs properly all on its
own.

 p.s. Dave Galarizzo [?sp] from figleaf was my first CF 
 instructor many years ago.

He's still here, and no one still can spell his name.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276163
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Regex

2007-04-24 Thread Ben Nadel
REReplace( your_text, ,?\s*\d+$, , ONE ) 

,? = optional comma
\s* = zero or more spaces
\d+ = one or more digit
$ = end of string


..
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 4:27 PM
To: CF-Talk
Subject: OT: Regex

Quick regex question

 

I have a string

 

NewYork, NewYork, 10005

 

I know that in an REReplace, \d will get rid of the zip code at the end,
that leaves a trailing comma. How do I dump the trailing comma also?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

http://www.sstwebworks.com

 





~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276164
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT:DOM

2007-04-24 Thread Josh Nathanson
 Is it just me, or is there really a difference between p / and p/p?
 In
 the Firefox DOM inpector, the former doesn't 'close' properly, thus
 subsequent nodes are children of the p / rather than the container. It's
 throwing off some Javascript that I've recently (thanks to this list)
 gotten
 hold of.

I thought you could only use that nomenclature p / with tags that don't
have a closing tag, like br /.

If the browser API were smart enough, it could figure out what you wanted
there (p / mimics p/p), but I would imagine that for purposes of
performance it won't analyze the tags in that way.

There is a CF tag analog to the behavior you describe, cfmodule, but this is 
a
special case I believe.

-- Josh



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276165
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Regex

2007-04-24 Thread Scott Stewart
Thanks Ben...

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
7241 Jillspring Ct.
Springfield, Va. 22152
(703) 220-2835
 
http://www.sstwebworks.com

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 4:31 PM
To: CF-Talk
Subject: RE: Regex

REReplace( your_text, ,?\s*\d+$, , ONE ) 

,? = optional comma
\s* = zero or more spaces
\d+ = one or more digit
$ = end of string


...
Ben Nadel
Certified Advanced ColdFusion MX7 Developer
www.bennadel.com
 
Need ColdFusion Help?
www.bennadel.com/ask-ben/

-Original Message-
From: Scott Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 4:27 PM
To: CF-Talk
Subject: OT: Regex

Quick regex question

 

I have a string

 

NewYork, NewYork, 10005

 

I know that in an REReplace, \d will get rid of the zip code at the end,
that leaves a trailing comma. How do I dump the trailing comma also?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

7241 Jillspring Ct.

Springfield, Va. 22152

(703) 220-2835

 

http://www.sstwebworks.com

 







~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276166
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: OT:DOM

2007-04-24 Thread Dave Watts
 I thought you could only use that nomenclature p / with 
 tags that don't have a closing tag, like br /.

No, that's an acceptable way to close any element that has no content.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

This email has been processed by SmoothZap - www.smoothwall.net


~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276167
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT:DOM

2007-04-24 Thread Jon Clausen
Since the HTML4 W3C recommendations on the paragraph element  
discourage the use of empty nodes (http://www.w3.org/TR/html4/struct/ 
text.html#h-9.3.1) , it's not too surprising that Firefox and other  
javascript parsers might not recognize a self-closed paragraph tag.
Using it would probably open up all sorts of cross-browser  
compatibility with your javascript.

Why not a br/ since that's what it's there for?   Just curious. 
If you want to control your line-height the same as you would with an  
empty paragraph tag, you can always use your CSS to display it as  
block and set height, with and margin:

div#mydiv br  {display: block; width: 100%; height: 0px;margin- 
bottom: 10px;}

I use that on forms quite a bit since it cuts down the markup, but  
still allows me a styling hook to adjust vertical spacing between  
form elements with adjacent label elements.

HTH,

Jon

On Apr 24, 2007, at 5:24 PM, Dave Francis wrote:

 Is it just me, or is there really a difference between p / and  
 p/p? In
 the Firefox DOM inpector, the former doesn't 'close' properly, thus
 subsequent nodes are children of the p / rather than the  
 container. It's
 throwing off some Javascript that I've recently (thanks to this  
 list) gotten
 hold of.



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276168
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: DOM

2007-04-24 Thread Jim Davis
 I thought you could only use that nomenclature p / with 
 tags that don't have a closing tag, like br /.

No, that's an acceptable way to close any element that has no content.

According to the spec empty P elements are discouraged (which basically says 
they're legal).  At the same time User Agents are specifically instructed to 
completely ignore them.

So I would think that this is a FireFox bug.  Reading the spec strictly putting 
a line-break in the document (which is a common user-agent reaction) seems 
wrong.

(Discouraged is a good word here: there are legitimate reasons to use empty 
block-level elements.  You might create empty elements specifically to add 
content to them later via DHTML for example.)

In this case tho' what's your DOCTYPE?  Both FireFox and IE change their 
parsing rules based on DOCTYPE - using a transitional DOCTYPE might result in 
more wierd crap (that's a technical term) than using a strict one.

Jim Davis

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276169
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Regex

2007-04-24 Thread Charlie Griefer
i'm no regex ninja, but this seems to work:

cfset mystring = rereplace(mystring, ',\s?\d+', '', 'all')

that should remove the comma, an optional space, and then the remaining digits.

alternatively, you can use list functions...
cfset myString = listDeleteAt(myString, listLen(myString)) /


On 4/24/07, Scott Stewart [EMAIL PROTECTED] wrote:
 Quick regex question



 I have a string



 NewYork, NewYork, 10005



 I know that in an REReplace, \d will get rid of the zip code at the end,
 that leaves a trailing comma. How do I dump the trailing comma also?



 Thanks



 sas



 --

 Scott Stewart

 ColdFusion Developer



 SSTWebworks

 7241 Jillspring Ct.

 Springfield, Va. 22152

 (703) 220-2835



 http://www.sstwebworks.com





 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276170
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: A very unusual HTTP 500 Null Error

2007-04-24 Thread T Lux
Did you ever find a solution/fix?

We are running into the same thing... same version of CF. The form that is 
posting is relatively small -- but there is a textarea that we think is the 
problem. There really isnt a lot of data in the textarea -- maybe 400 
characters. I get a 500 Null error and this is written in coldfusion-err.log:

java.lang.IllegalArgumentException
at coldfusion.filter.FormScope.parseQueryString(FormScope.java:283)
at coldfusion.filter.FormScope.parsePostData(FormScope.java:255)
at coldfusion.filter.FormScope.fillForm(FormScope.java:206)
at 
coldfusion.filter.FusionContext.SymTab_initForRequest(FusionContext.java:384)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:33)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at com.intergral.fusionreactor.filter.FusionReactorFilter.A(Unknown 
Source)
at com.intergral.fusionreactor.filter.FusionReactorFilter.A(Unknown 
Source)
at 
com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(Unknown Source)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


Any ideas?

Tim

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276171
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: A very unusual HTTP 500 Null Error

2007-04-24 Thread T Lux
Did you ever find a solution/fix?

We are running into the same thing... same version of CF. The form that is 
posting is relatively small -- but there is a textarea that we think is the 
problem. There really isnt a lot of data in the textarea -- maybe 400 
characters. I get a 500 Null error and this is written in coldfusion-err.log:

java.lang.IllegalArgumentException
at coldfusion.filter.FormScope.parseQueryString(FormScope.java:283)
at coldfusion.filter.FormScope.parsePostData(FormScope.java:255)
at coldfusion.filter.FormScope.fillForm(FormScope.java:206)
at 
coldfusion.filter.FusionContext.SymTab_initForRequest(FusionContext.java:384)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:33)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
at coldfusion.CfmServlet.service(CfmServlet.java:107)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at com.intergral.fusionreactor.filter.FusionReactorFilter.A(Unknown 
Source)
at com.intergral.fusionreactor.filter.FusionReactorFilter.A(Unknown 
Source)
at 
com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(Unknown Source)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)


Any ideas?

Tim

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276172
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Convincing a client ** Update **

2007-04-24 Thread Rick Faircloth
Congratulations, Chris!  Nice negotiating!

Rick

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 3:21 PM
To: CF-Talk
Subject: RE: Convincing a client ** Update **

Well, the meeting went well, and the client decided on a re-write.
(Yaho!!!)  They had already ran into many of the limitations we
spoke about (database limitations and missing relationships), and pretty
much came into the meeting with the idea of a re-write.  I mainly spoke
of the time we are spending and money its costing them simply to
maintain their current code, and compared that to their future goals. We
also spoke of many of the idea's they had in the past that were never
done due to lack of flexibility in their current configuration. I am
firmly convinced that a re-write is the right thing to do for them, and
to fit their future business goals, and I cannot wait to get started =)

I have done many internal applications with a simple cfc based approach,
with atomic functions abstracted into methods and grouped into cfc's by
type of function.  Does anyone want to take a stab at convincing me to
use some framework out there?  I have downloaded and setup a test app in
Fusebox, but for some reason having to setup logic in .xml files makes
me not want to use it.  We are pretty solid in using MS SQL, but do you
think I should use something like Coldspring?

Thanks to everyone who chimed in!

Chris



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276173
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JReport anyone?

2007-04-24 Thread Douglas Knudsen
I've been evaluating openreports for awhile.  Drop a SQL in and bamm, HTML
paging and export to xls, pdf, etc.  Has a report designer tool too and
works with birt.  Runs on tomcat simply, have not got it running on JRun
though.  Oh, cost, its free.  Oh, users can schedule the report to be
emailed to them too...in xls, pdf, etc.   oreports.org IIRC.

DK

On 4/24/07, Eric J. Hoffman [EMAIL PROTECTED] wrote:

 It requires RDS connection to the CF server though, and that put the
 stop to that...can't have them having DB access all over the joint.
 Plus it is difficult to use for most folks...wishes wishes.  lol



 


 Eric J. Hoffman
 Managing Partner
 2081 Industrial Blvd
 StillwaterMN55082
 mail: [EMAIL PROTECTED]
 www: http://www.ejhassociates.com
 tel: 651.717.4105
 fax: 651.717.4101
 mob: 651.245.2717
 Adobe Solutions Partner
 Microsoft Certified Partner

 

 This message contains confidential information and is intended only for
 [EMAIL PROTECTED] If you are not cf-talk@houseoffusion.com you
 should not disseminate, distribute or copy this e-mail. Please notify
 [EMAIL PROTECTED] immediately by e-mail if you have received this
 e-mail by mistake and delete this e-mail from your system. E-mail
 transmission cannot be guaranteed to be secure or error-free as information
 could be intercepted, corrupted, lost, destroyed, arrive late or incomplete,
 or contain viruses. Eric J. Hoffman therefore does not accept liability for
 any errors or omissions in the contents of this message, which arise as a
 result of e-mail transmission. If verification is required please request a
 hard-copy version.
 

 -Original Message-

 From: Dave Watts [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, April 24, 2007 12:13 PM
 To: CF-Talk
 Subject: RE: JReport anyone?

  But allowing a client to make their own reports?   That
  doesn't help from what I can tell.   We have to program
  reports in CF, not allow clients to make their own
  flavors...we get this request all the time.

 There's no reason why the client can't make their own reports using the
 bundled CF 7 report builder, although it may be tedious to set this up.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 This email has been processed by SmoothZap - www.smoothwall.net




 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276174
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Convincing a client ** Update **

2007-04-24 Thread Mark Mandel
Chris,

Great to hear you got the job done.

In terms of frameworks - for a job this size, I can *highly* recommend
one!  Especially for a project of the magnitude that you are
describing.

We are currently building a large scale application on Machii,
ColdSpring and Transfer, and it is proving to be a very flexible,
robust and rapid development platform.

That being said, I'm biased in some areas (obviously Transfer), so for
further knowledge on frameworks, you view:

Sean Corfield's framework presentation:
http://www.corfield.org/articles/frameworks.pdf

The cfframeworks interviews are really good as well:
http://feeds.feedburner.com/Cfframeworks-InterviewPodcast

Also, if you search the coldfusion weekly and coldfusion podcast
podcasts, there are also several episodes that have good information
on frameworks.

Let us know how you go.

Mark


On 4/25/07, Peterson, Chris [EMAIL PROTECTED] wrote:
 Well, the meeting went well, and the client decided on a re-write.
 (Yaho!!!)  They had already ran into many of the limitations we
 spoke about (database limitations and missing relationships), and pretty
 much came into the meeting with the idea of a re-write.  I mainly spoke
 of the time we are spending and money its costing them simply to
 maintain their current code, and compared that to their future goals. We
 also spoke of many of the idea's they had in the past that were never
 done due to lack of flexibility in their current configuration. I am
 firmly convinced that a re-write is the right thing to do for them, and
 to fit their future business goals, and I cannot wait to get started =)

 I have done many internal applications with a simple cfc based approach,
 with atomic functions abstracted into methods and grouped into cfc's by
 type of function.  Does anyone want to take a stab at convincing me to
 use some framework out there?  I have downloaded and setup a test app in
 Fusebox, but for some reason having to setup logic in .xml files makes
 me not want to use it.  We are pretty solid in using MS SQL, but do you
 think I should use something like Coldspring?

 Thanks to everyone who chimed in!

 Chris

 

~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276175
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Convincing a client ** Update **

2007-04-24 Thread James Holmes
Try ColdBox - no XML and it's all CFCs.

On 4/25/07, Peterson, Chris [EMAIL PROTECTED] wrote:
I have downloaded and setup a test app in
 Fusebox, but for some reason having to setup logic in .xml files makes
 me not want to use it.
-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276176
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Coldfusion Integration with .net,java

2007-04-24 Thread James Holmes
That's what I said - no native integration like there will be in CF8,
but webservices work well as an integration standard.

On 4/25/07, Kevin Aebig wrote:
 Hate to break the fun by doing Coldfusion to .NET or .NET to Coldfusion with
 Webservices is entirely possible. Though I'm quite sure you mean that the
 datatypes are off (query  dataset), that's easy to deal with.

 We deal with CF  DotNET in a number of internal projects and they all
 function extremely well.

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276177
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: EST to CST timestamp

2007-04-24 Thread Paul Hastings
Deepak Gupta wrote:
 How can I convert EST timestamp to CST timestamp?  Has anyone done this?

historical dates? include DST? it could be as simple as subtracting 1 hour or 
as 
complex as needing to cast from 1 tz to the other taking into account (or 
not) 
DST changes over time.

~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276178
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: EST to CST timestamp

2007-04-24 Thread Michael E. Carluen
Deepak,

I am guessing that the reason you're asking is that your server is EST, and
your client is CST??

If yes, one way is to convert now() into UTC/ GMT when writing into the
server db.  Once a request is done, just calculate the difference between
the requesting timezone (CST) and GMT.  Check out this UDF:
http://www.cflib.org/codeView.cfm?ID=373 

HTH,

Michael



 
 Deepak Gupta wrote:
  How can I convert EST timestamp to CST timestamp?  Has anyone done this?
 
 


~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276179
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Strange CF Problem on Fedora Linux

2007-04-24 Thread RobG
I know that ColdFusion isn't supported on Fedora Linux, but with help 
from some of the various blogs, I was able to get it installed and 
working on FC6.  I've been using it as a development environment for the 
past couple of months, and it's worked very nicely.  This is CFMX7.02 
I'm talking about, and it's running on Apache 2.2.3.

As of the last week or so, a very odd problem has surfaced.  Most of the 
time (but not all the time) when a page I'm working on throws an error, 
the end result is a completely blank screen in the browser.  No debug 
output, no error text, NOTHING.

I haven't yet come up with any pattern, but it does do it on all of the 
sites that I'm developing on this particular machine.  I have Apache 
setup to allow multihoming and point everything at 127.0.0.1 via my 
hosts file, e.g. www.site1.com and so on.

Has anybody seen anything like this?

Rob

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276180
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Setting up IIS6 Sites using Different IPs on the same box.

2007-04-24 Thread Dave Hatz
We are trying to install multiple SSL Certs on our IIS6 Web Server.  We are 
running CF7 Enterprise with multiple instances set up.  I was just told by 
Verisign that in order to use more than 1 SSL Cert on our IIS6 Web Server, we 
need to run each of the SSL sites off different IP Addresses.  If someone can 
point me in the right direction where I can get information on how to set up 
our sites on different IP addresses on the same box, I would greatly appreciate 
any help you can provide.

Thanks,
Dave Hatz

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Jobs-Talk/message.cfm/messageid:3317
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Setting up IIS6 Sites using Different IPs on the same box.

2007-04-24 Thread Geoffrey N Epstein
You setup the IP addresses at the network card level. Go to the newtork card
Internet Protocol properties. Click Advanced and you'll be able to setup
multiple IP addresses. Once you have done that when you go into IIS to setup
the sites you'll see the additional IP addresses in the IP drop down. Then
you should be all set. 

-Original Message-
From: Dave Hatz [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 1:59 PM
To: CF-Jobs-Talk
Subject: Setting up IIS6 Sites using Different IPs on the same box.

We are trying to install multiple SSL Certs on our IIS6 Web Server.  We are
running CF7 Enterprise with multiple instances set up.  I was just told by
Verisign that in order to use more than 1 SSL Cert on our IIS6 Web Server,
we need to run each of the SSL sites off different IP Addresses.  If someone
can point me in the right direction where I can get information on how to
set up our sites on different IP addresses on the same box, I would greatly
appreciate any help you can provide.

Thanks,
Dave Hatz



~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Jobs-Talk/message.cfm/messageid:3318
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Setting up IIS6 Sites using Different IPs on the same box.

2007-04-24 Thread Geoffrey N Epstein
If the websites are public, the IPs need to be public. If you are operating
on an intranet, they can be private. I have public IPS on my production web
server but private IPs on my local intranet development server. 

-Original Message-
From: Dave Hatz [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 3:29 PM
To: CF-Jobs-Talk
Subject: Re: Setting up IIS6 Sites using Different IPs on the same box.

Geoffrey,
Thanks for the information, it is very helpful.  1 more question though, the
new IP that I will be adding, does it need to be a public IP or can it be a
private IP, like 192.168.0.1?

Dave

You setup the IP addresses at the network card level. Go to the newtork 
card Internet Protocol properties. Click Advanced and you'll be able to 
setup multiple IP addresses. Once you have done that when you go into 
IIS to setup the sites you'll see the additional IP addresses in the IP 
drop down. Then you should be all set.

-Original Message-
From: Dave Hatz [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 24, 2007 1:59 PM
To: CF-Jobs-Talk
Subject: Setting up IIS6 Sites using Different IPs on the same box.

We are trying to install multiple SSL Certs on our IIS6 Web Server.  We 
are running CF7 Enterprise with multiple instances set up.  I was just 
told by Verisign that in order to use more than 1 SSL Cert on our IIS6 
Web Server, we need to run each of the SSL sites off different IP 
Addresses.  If someone can point me in the right direction where I can 
get information on how to set up our sites on different IP addresses on 
the same box, I would greatly appreciate any help you can provide.

Thanks,
Dave Hatz



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Jobs-Talk/message.cfm/messageid:3320
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Setting up IIS6 Sites using Different IPs on the same box.

2007-04-24 Thread Doug Arthur
You can also add IP's to your Local Area Connection TCP/IP Properties...
Any IP's in the Advanced TCP/IP Settings can be used as IIS Site IP's. These
IP's can be public to your network/intranet/internet, or they can be private
to a more narrow network or completely private to the server itself.

Good Luck,
- Doug


On 4/24/07, Geoffrey N Epstein [EMAIL PROTECTED] wrote:

 If the websites are public, the IPs need to be public. If you are
 operating
 on an intranet, they can be private. I have public IPS on my production
 web
 server but private IPs on my local intranet development server.

 -Original Message-
 From: Dave Hatz [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, April 24, 2007 3:29 PM
 To: CF-Jobs-Talk
 Subject: Re: Setting up IIS6 Sites using Different IPs on the same box.

 Geoffrey,
 Thanks for the information, it is very helpful.  1 more question though,
 the
 new IP that I will be adding, does it need to be a public IP or can it be
 a
 private IP, like 192.168.0.1?

 Dave

 You setup the IP addresses at the network card level. Go to the newtork
 card Internet Protocol properties. Click Advanced and you'll be able to
 setup multiple IP addresses. Once you have done that when you go into
 IIS to setup the sites you'll see the additional IP addresses in the IP
 drop down. Then you should be all set.
 
 -Original Message-
 From: Dave Hatz [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, April 24, 2007 1:59 PM
 To: CF-Jobs-Talk
 Subject: Setting up IIS6 Sites using Different IPs on the same box.
 
 We are trying to install multiple SSL Certs on our IIS6 Web Server.  We
 are running CF7 Enterprise with multiple instances set up.  I was just
 told by Verisign that in order to use more than 1 SSL Cert on our IIS6
 Web Server, we need to run each of the SSL sites off different IP
 Addresses.  If someone can point me in the right direction where I can
 get information on how to set up our sites on different IP addresses on
 the same box, I would greatly appreciate any help you can provide.
 
 Thanks,
 Dave Hatz



 

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Jobs-Talk/message.cfm/messageid:3321
Subscription: http://www.houseoffusion.com/groups/CF-Jobs-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11