JRun 4 updates for ColdFusion Servers

2008-04-03 Thread AJ Mercer
Do I need to apply JRun updates to my ColdFusion (702) server
or are they included in the CF fixes?


Cheers

AJ Mercer
Web Log: http://webonix.net


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Coldfusion + AIR

2008-04-03 Thread vishnu prasad
Hi all 
i am new to air actually i am yet to start programming in AIR 

Is is possible to call coldfusion web service from AIR if yes could any one 
provide me some samples or link on the same...

like to develop an application air wich will get the data from databse using 
web service 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302560
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 + AIR

2008-04-03 Thread Dale Fraser
Yes it is possible.

You can communicate through

http
webservice
remoteObject

remteObject is probably the best bet, there are lots of examples out there,
just google.

Regards
Dale Fraser

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 3 April 2008 9:18 PM
To: CF-Talk
Subject: Coldfusion + AIR

Hi all 
i am new to air actually i am yet to start programming in AIR 

Is is possible to call coldfusion web service from AIR if yes could any one
provide me some samples or link on the same...

like to develop an application air wich will get the data from databse using
web service 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


SOUNDEX() in MSSQL

2008-04-03 Thread James Smith
Does any one know how to use MSSQL's SOUNDEX() functionality to get
good search results?

Lets say I am doing a product search by title, if the title in the DB
is Blade Runner (DVD) and someone searches for Blade Runner then

WHERE SOUNDEX(title) = SOUNDEX(#form.title#)

will work just fine but if someone searched for the blade runner
then the query would fail since SOUNDEX() only works on the first
word.

-- 
Jay

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: sql help NEQ

2008-04-03 Thread Paul Ihrig
ok i go it i think
but it just looks so weird to me..
it looks back wards but works...


SELECT DISTINCT TOP 100 PERCENT dbo.V_riprod_ZMATMAST.sap_partnum AS NEQnumb
FROM dbo.V_riprod_ZMATMAST LEFT OUTER JOIN
  dbo.V_riprod_Specs_ZMATMAST_EQ ON
dbo.V_riprod_ZMATMAST.sap_partnum =
dbo.V_riprod_Specs_ZMATMAST_EQ.sap_partnum
WHERE (dbo.V_riprod_Specs_ZMATMAST_EQ.sap_partnum IS NULL)
ORDER BY dbo.V_riprod_ZMATMAST.sap_partnum

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Matthew Williams
Depends.  I went to JRun updater 6 about a year ago to address errors 
that I was seeing for our clustered instances.  I'll be moving to JRun 
Updater 7 in production within the next few weeks as it has added better 
overhead control of clustered session replication information.  This is 
under CF 7.02.  I've seen no issues in more than a year with running 
under the more recent updaters.


Matthew Williams
Geodesic GraFX
www.geodesicgrafx.com/blog

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Flex Ajax Bridge jQuery...

2008-04-03 Thread Dan G. Switzer, II
Andy,

Has anyone on this list done any work with the FABridge code provided by
Adobe for use in working with Flex?

I've got it running great when it's in a plain script block inside the body
tag. But the second I put it inside a jQuery $(document).ready call, it
dies (with no errors). I've tried putting the call in different locations,
I've tried loading in the SWF explicitly, but nothing works. I've provided
a snip of the two codes below. Any help would be greatly appreciated!!

Just remember the whole purpose of the $(document).ready() function is to
fire off when the *DOM* is ready, but it doesn't mean all external images
and SWFs are loaded.

I'd just leave those calls outside of any ready() function, since I assume
they hook into the windows.onload event (which would be the correct event to
wait for to get a loaded SWF.)

-Dan


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Open BlueDragon Mailing List

2008-04-03 Thread Adam Haskell
I know there was quite a thread on here in weeks past talking about the buzz
of BlueDragon going open source. There is now a Discussion group for
questions and comments and potential contributers.

From the about: This is the official open source discussion list for the
Open BlueDragon project; the Java CFML runtime engine.

http://groups.google.com/group/openbd

More Info on Alan's blog: http://alan.blog-city.com/openbd_mailinglist.htm


Adam Haskell


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread AJ Mercer
I sure a lot of cluster fixes in updater 5 that got me thinking about this.

I dropped updater 7 on my dev box and it seems ok :-)
But this is not in a cluster.

Has anyone applied jRun4 Updater 7 onto CF Ent 702?
Any horror stories??

Is there anything you need to do for each CF instance, or just applying the
updater to the jRun4 home directory enough?

We also have a separate web server (IIS) so I will copy the wsconfig.jar and
associated files to that machine.
And then rebuild the cluster, and reconnect IIS to the cluster.



On Thu, Apr 3, 2008 at 8:16 PM, Matthew Williams [EMAIL PROTECTED]
wrote:

 Depends.  I went to JRun updater 6 about a year ago to address errors
 that I was seeing for our clustered instances.  I'll be moving to JRun
 Updater 7 in production within the next few weeks as it has added better
 overhead control of clustered session replication information.  This is
 under CF 7.02.  I've seen no issues in more than a year with running
 under the more recent updaters.


 Matthew Williams
 Geodesic GraFX
 www.geodesicgrafx.com/blog

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: qforms: transferring values from one select to another

2008-04-03 Thread Dan G. Switzer, II
Mike,

sorry the yahoo mailing list seems to be down for qforms so thought someone
on here may be able to help.

Due to the amount of noise (aka spam) I have to approve first time posters
first. The list isn't down, I just didn't get through to approving your
message until this morning.

have simple form (2 x multiple select containers) that let you select
'related products' for a particular product.

the qforms default setup works great, but what i am trying to do is
populate the 2nd select with any existing related selections. at the
moment, these are not included in the submitted form information (unless i
transfer them back to the first select - then transfer back)???

a snippet of my code is as follows...

First select
select name=products_available size=20 multiple style=width:90%;
onDblClick=objForm.products_available.transferTo('products_selected');
cfoutput query=getProducts group=product_title
  option
value=#getProducts.product_id##getProducts.product_title#/option
/cfoutput
  /select

Second select (where i want any existing selections to appear)
select name=products_selected size=20 multiple style=width:90%;
onDblClick=objForm.products_available.transferFrom('products_selected');
 cfoutput query=getRelated
  option
value=#getRelated.product_idfk##getRelated.product_title#/option
/cfoutput
  /select

my qforms code is the default...
SCRIPT LANGUAGE=JavaScript
   !--//
   // initialize the qForm object
   objForm = new qForm(related_product_form);

   // make the User field a container, this will ensure that the
reset()
   // method will restore the values in the select box, even if they've
   // been removed from the select box
   objForm.products_available.makeContainer();
   // setting the dummyContainer property to false will ensure that
no
values
   // from this container are included with the value
   objForm.products_available.dummyContainer = true;

   // make the Members field a container--every item in the Members
select box
   // will be part of the container, even if the item isn't selected.
   objForm.products_selected.makeContainer();
   //--
/SCRIPT

You want to use the bindTo parameter on the makeContainer() methods to
bind the 2 related select boxes together:

http://www.pengoworks.com/qforms/docs/extension_fields.htm#makeContainer

objForm.products_available.makeContainer(products_selected);
objForm.products_selected.makeContainer(products_available);

I would then use:

objForm.products_selected.setValue(existing,values,here);

To re-populate the list with the saved values. It should take care of moving
the values from one list to the next.

-Dan


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Matthew Williams
I've been running JRun updater 7 on our 7.02 staging instances for 
almost two months.  I've not seen or heard of any issues.  Plus, now I 
can just deploy CF8 as a ear/war file when the time comes to upgrade.  
That, and update the JRE.  I'm not sure if we're going to settle on 1.6 
or 1.5.  I'm thinking 1.5 unless Sun has addressed the class loading 
issue in 1.6.


Matthew Williams
Geodesic GraFX
www.geodesicgrafx.com/blog

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread Richard Dillman
Maybe a Quick removal of stoplist words from your search string before
matching?

stoplist = a, an, and, are, as, at, be, but, by, for, if, in, into, is, it,
no, not, of, on, or, s, such, t, that, the, their, then, there, these, they,
this, to, was, will, with

On Thu, Apr 3, 2008 at 6:56 AM, James Smith [EMAIL PROTECTED]
wrote:

 Does any one know how to use MSSQL's SOUNDEX() functionality to get
 good search results?

 Lets say I am doing a product search by title, if the title in the DB
 is Blade Runner (DVD) and someone searches for Blade Runner then

 WHERE SOUNDEX(title) = SOUNDEX(#form.title#)

 will work just fine but if someone searched for the blade runner
 then the query would fail since SOUNDEX() only works on the first
 word.

 --
 Jay

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Steve Good
Wow Dom!  Thanks for spending so much time on this!  You came up with a much
better, and easier solution than I had come up with.  My way involved adding
some jquery to create a list of emails one at a time, appending the that
list to a span and the value attribute of a hidden input tag, then
clearing the autosuggest field each time an address was found, chosen, and
the user clicked an Add button.  I'll give your method a try since that
was what I had been looking to do in the first place.

Rock on!

~Steve
http://goodcf.instantspot.com

-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 02, 2008 8:10 PM
To: CF-Talk
Subject: Re: autosuggest

Right, I finally worked out a concise solution :) I blogged about it here:

http://fusion.dominicwatson.co.uk/2008/04/tidy-autosuggesting-solution.html

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302571
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 + AIR

2008-04-03 Thread Andy Matthews
Vishnu...

We'd need to know which type of AIR app you're going to build before
pointing you to some examples. Are you planning on building a Flex or Flash
based AIR app, or will it be done in HTML/JS?

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 5:18 AM
To: CF-Talk
Subject: Coldfusion + AIR

Hi all
i am new to air actually i am yet to start programming in AIR 

Is is possible to call coldfusion web service from AIR if yes could any one
provide me some samples or link on the same...

like to develop an application air wich will get the data from databse using
web service 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: autosuggest

2008-04-03 Thread Dominic Watson
:) no worries, figured it would be globally useful and is an area I'd like
to learn about. I've just thought too that my solution is too narrow and am
just completing a custom tag that will allow you to set all those different
autosuggest properties. You would use it in place of the cfinput tag. Will
post when ready.

Dominic


On 03/04/2008, Steve Good [EMAIL PROTECTED] wrote:

 Wow Dom!  Thanks for spending so much time on this!  You came up with a
 much
 better, and easier solution than I had come up with.  My way involved
 adding
 some jquery to create a list of emails one at a time, appending the that
 list to a span and the value attribute of a hidden input tag, then
 clearing the autosuggest field each time an address was found, chosen, and
 the user clicked an Add button.  I'll give your method a try since that
 was what I had been looking to do in the first place.

 Rock on!

 ~Steve
 http://goodcf.instantspot.com

 -Original Message-
 From: Dominic Watson [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 02, 2008 8:10 PM
 To: CF-Talk
 Subject: Re: autosuggest

 Right, I finally worked out a concise solution :) I blogged about it here:


 http://fusion.dominicwatson.co.uk/2008/04/tidy-autosuggesting-solution.html

 Dominic

 --
 Blog it up: http://fusion.dominicwatson.co.uk




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread James Smith
 Maybe a Quick removal of stoplist words from your search string before
  matching?

Not really what I am after, perhaps my example was to simple... What
is someone searches for dvd blade runner or Harrison Ford blade
runner?

I am really asking if there is some standard way of using the power of
soundex() without getting so many results it renders them useless...

--
Jay

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: SOUNDEX() in MSSQL

2008-04-03 Thread Steven Milburn
I'm not sure soundex is what you want to use here.  Soundex is for searching 
for words that sound alike but may be spelled differently, ie searching for a 
person named Smyth and you search for Smith.

You are doing more of a keyword type search so the like operator in your query 
may be more suitable.  However, I think your best solution may be to utilize 
SQL Server's full-text search engine to create an index on the relevant field 
in the database.

Steve


-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 6:57 AM
To: CF-Talk
Subject: SOUNDEX() in MSSQL

Does any one know how to use MSSQL's SOUNDEX() functionality to get
good search results?

Lets say I am doing a product search by title, if the title in the DB
is Blade Runner (DVD) and someone searches for Blade Runner then

WHERE SOUNDEX(title) = SOUNDEX(#form.title#)

will work just fine but if someone searched for the blade runner
then the query would fail since SOUNDEX() only works on the first
word.

--
Jay



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: TOT - FireFox memory issues

2008-04-03 Thread Mark Fuqua
I don't use any plugins...quite behind, I know...but almost anytime my old
laptop is screaming along at 100%, all I have to do to restore calm is shut
down ff.  So I doubt it is the plugins...

-Original Message-
From: Gerald Guido [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 3:36 PM
To: CF-Talk
Subject: TOT - FireFox memory issues


My problem is that Firefox will start out at 60-70 megs of ram but slowly
creeps up to 500+ and slows down (and pegs the processor) often to the point
of being unusable after 3-5 hours. I have to restart it at least once a day.
I have forgotten to turn off FF over the weekend and have had it creep up to
2 GIG's of ram by Monday.

I have trimmed down my plug-in usage to the bare minimum of Firebug, the Web
Developer tool bar, delicious and Google tool bar. All of which I use
everyday, all day.

I am pretty dependent on Firebug and the Google and Web Developer tool bars.
I can live with out del.icio.us. In an ideal world I would rather not give
up anything.

Does anyone have any suggestions? I would rather like to avoid a reinstall.
If I need to do a reinstall, how can I save my history, cookies,
pre-populated
form fields, passwords etc.? Or is that part of the problem as well?

JSYK, My workstation is a 1 yr old corporate Dell desktop w/XP, and twin
dual core P4 2.8's, and 2 gig RAM. It happens on all my FF installs so it is
not just this machine.
tia
G

--
Education is a progressive discovery of our own ignorance.
- Will Durant




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302576
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 Reseller Hosting

2008-04-03 Thread Andy Matthews
I've been with Gearhost.com for about 5 years. They're solid. They have the
occasional customer service hiccup, but tickets are generally handled within
24 hours, their control panel is top notch (allowing you to create your own
DSNs is a plus), and so on.

I LOVE the fact that their accounts allow multiple domains...that was one of
the primary selling points for me.

-Original Message-
From: Peter Donahue [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 02, 2008 10:06 PM
To: CF-Talk
Subject: Re: ColdFusion Reseller Hosting

Hello Andy and listers,

What has been your experience with Gearhost.com. According to their Web
site they're now offering ColdFusion 8 hosting  with Second Gear Accounts
and above. They're a strong candidate in my book.

Peter Donahue

- Original Message -
From: Andy Matthews [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, April 02, 2008 6:59 PM
Subject: RE: ColdFusion Reseller Hosting


Gearhost.com doesn't offer a reseller plan as such, but they do support
multiple domains per account, and I believe offer a percentage off each
additional account.



-Original Message-
From: Peter Donahue [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 6:14 PM
To: CF-Talk
Subject: ColdFusion Reseller Hosting

Hello everyone,

Can anyone recommend a company offering ColdFusion reseller hosting in
the U.S.? I had a plan with a host in the UK, but wish to find a U.S.
hosting company in the interest of keeping costs down. An Australian
reseller host would also work too. Thanks for your help.

Peter Donahue








~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Flex Ajax Bridge jQuery...

2008-04-03 Thread Andy Matthews
This is for an AIR app Dan...would it be alright to switch the
document.ready over to a window.ready? 

-Original Message-
From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 7:37 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

Andy,

Has anyone on this list done any work with the FABridge code provided 
by Adobe for use in working with Flex?

I've got it running great when it's in a plain script block inside the 
body tag. But the second I put it inside a jQuery $(document).ready 
call, it dies (with no errors). I've tried putting the call in 
different locations, I've tried loading in the SWF explicitly, but 
nothing works. I've provided a snip of the two codes below. Any help would
be greatly appreciated!!

Just remember the whole purpose of the $(document).ready() function is to
fire off when the *DOM* is ready, but it doesn't mean all external images
and SWFs are loaded.

I'd just leave those calls outside of any ready() function, since I assume
they hook into the windows.onload event (which would be the correct event to
wait for to get a loaded SWF.)

-Dan




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread Claude Schneegans
 if the title in the DB
is Blade Runner (DVD) and someone searches for Blade Runner then

IMO, the soundex algorithm is not appropriate in this case.
Soundex extract a key which essentially depends on the first syllable of 
the string.
It has been develop mostly for names, not for any kind of string.

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


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302581
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 + AIR

2008-04-03 Thread Chad Gray
It is not as easy as just showing example code.  Flex/AIR is a different beast 
compared to CF.

I just took the Lynda.com training on Actionscript for Flex and Flex 3.  This 
will get you use to the language first.

Then you can look into using remoteObject to connect to your CFC's via the flex 
gateway on the CF server.

Here is some sample code of using remoteObject if you really want to dive in 
head first:
http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html
http://livedocs.adobe.com/flex/3/html/help.html?content=data_intro_2.html





-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 6:18 AM
To: CF-Talk
Subject: Coldfusion + AIR

Hi all 
i am new to air actually i am yet to start programming in AIR 

Is is possible to call coldfusion web service from AIR if yes could any one 
provide me some samples or link on the same...

like to develop an application air wich will get the data from databse using 
web service 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread James Smith
  IMO, the soundex algorithm is not appropriate in this case.
  Soundex extract a key which essentially depends on the first syllable of
  the string.
  It has been develop mostly for names, not for any kind of string.

As far as I can tell it would work perfectly for this...

http://en.wikipedia.org/wiki/Soundex

The soundex code strips vowels (and a few others, h,w  y) and
consecutive letters with the same score value, seems like the perfect
solution for catching miss spelled words.

--
Jay

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: TOT - FireFox memory issues

2008-04-03 Thread Scott Brady
My Firefox has the same problem on both my work and home machines
(Windows XP).  I have tried uninstalling various plug-ins, but none
seem to fix the problem.  Apparently, it has known memory leaks (FF
does not trim its memory usage when you minimize [which has a fix seen
here: 
http://www.howtogeek.com/howto/windows/fix-for-firefox-memory-leak-on-windows/]
and apparently leaks caused by pages that have Flash in them [you
know, like most major web sites now].) Mozilla has an article about
the memory leaks here:  http://kb.mozillazine.org/Memory_Leak

Reportedly, FF3 has fixed a lot of these problems.

-- 
-
Scott Brady
http://www.scottbrady.net/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Cutter (CFRelated)
Don't know if they've addressed the class loading issue yet, but I do 
know that 8 runs fantastic on 1.5. I had a script that was doing 
Encrypt() on two separate values for 11k+ records (and databasing them). 
It took over five minutes on 8 running on 1.6, and took about 40 sec on 
8 on 1.5.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Matthew Williams wrote:
 I've been running JRun updater 7 on our 7.02 staging instances for 
 almost two months.  I've not seen or heard of any issues.  Plus, now I 
 can just deploy CF8 as a ear/war file when the time comes to upgrade.  
 That, and update the JRE.  I'm not sure if we're going to settle on 1.6 
 or 1.5.  I'm thinking 1.5 unless Sun has addressed the class loading 
 issue in 1.6.
 
 
 Matthew Williams
 Geodesic GraFX
 www.geodesicgrafx.com/blog
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread James Smith
 I'm not sure soundex is what you want to use here.  Soundex is for searching 
 for words that sound alike but may be spelled differently, ie searching for a 
 person named Smyth and you search for Smith.

I know, I was hoping to use this to match runner when a user types
runer into the search box...

--
Jay

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302579
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 + AIR

2008-04-03 Thread Steve Good
If you have Volume 3 issue 3 of the fusion quarterly, there are a whole
bunch of examples for connecting Flex 3 and AIR to webservices.  There is
also an Acrobat Connect presentation out there (sorry, no link right now)
from a cfug in Scotland where the presenter has built a rudimentary email
client in AIR and calling CFCs remotely.  I'll be blogging one of my AIR
apps later next week.  It uses webservices and custom binding from CFCs.  So
keep an eye out for that.

HTH

~Steve
http://goodcf.instantspot.com


-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 8:15 AM
To: CF-Talk
Subject: RE: Coldfusion + AIR

Vishnu...

We'd need to know which type of AIR app you're going to build before
pointing you to some examples. Are you planning on building a Flex or Flash
based AIR app, or will it be done in HTML/JS?

-Original Message-
From: vishnu prasad [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 5:18 AM
To: CF-Talk
Subject: Coldfusion + AIR

Hi all
i am new to air actually i am yet to start programming in AIR 

Is is possible to call coldfusion web service from AIR if yes could any one
provide me some samples or link on the same...

like to develop an application air wich will get the data from databse using
web service 





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302580
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 + AIR

2008-04-03 Thread James Holmes
On Thu, Apr 3, 2008 at 9:35 PM, Steve Good [EMAIL PROTECTED] wrote:
 If you have Volume 3 issue 3 of the fusion quarterly, there are a whole
  bunch of examples for connecting Flex 3 and AIR to webservices.

I think it was Vol 2 Issue 2; I particularly recommend the article by
James Holmes on this, in that issue (and the follow-up in Issue 3).

:-)

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

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: SOUNDEX() in MSSQL

2008-04-03 Thread Russ
If you want really good search results, look into Lucene.  I believe you can
use the Did you mean functionality, which I think is what you're going
for. 

Russ


 -Original Message-
 From: James Smith [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 03, 2008 9:35 AM
 To: CF-Talk
 Subject: Re: SOUNDEX() in MSSQL
 
  I'm not sure soundex is what you want to use here.  Soundex is for
 searching for words that sound alike but may be spelled differently, ie
 searching for a person named Smyth and you search for Smith.
 
 I know, I was hoping to use this to match runner when a user types
 runer into the search box...
 
 --
 Jay
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


PDF Rendering of radio buttons and checkboxes with CFDocument

2008-04-03 Thread David Johnson
I am trying to save/print a form using CFDocument, and everything works 
correctly, except all of the radio buttons and checkboxes are huge, ~200% the 
text size and not smoothed at all.  

I am using coldfusion 8 and supplying HTML data to cfdocument. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread James Smith
 If you want really good search results, look into Lucene.  I believe you can
  use the Did you mean functionality, which I think is what you're going
  for.

I will have a look into it, cheers.

--
Jay

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Kris Jones
We experienced severe slowness with the default JVM that ships with
CF8 (Java 6). Ended-up downgrading to Java 5 and all is well. Here's a
few links that discuss it:

http://corfield.org/blog/index.cfm/do/blog.entry/entry/Java_6_and_ColdFusion_8
http://www.mkville.com/blog/index.cfm/2008/2/4/ColdFusion-8-Random-Slowness-Downgrade-the-JVM
http://www.compoundtheory.com/?action=displayPostID=270

Cheers,
Kris

 Don't know if they've addressed the class loading issue yet, but I do
  know that 8 runs fantastic on 1.5. I had a script that was doing
  Encrypt() on two separate values for 11k+ records (and databasing them).
  It took over five minutes on 8 running on 1.6, and took about 40 sec on
  8 on 1.5.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


ColdFusion array problem

2008-04-03 Thread erik tom
I have a query that output the data. What i need is to be able create a 2 
dementional array to store the courseId and EmployeeId assoosiated with this 
course. The reason i am doing this b/c this query gives the all required info . 
and then i will have the other query which gives the number of completed 
courses , so I will compare how many reuired and how many are done , and if 
they not  required then mark them as optional 

 cfset m = ArrayNew(1)
 cfset m2=ArrayNew(1)
 
 

 
cfloop from=1 to=#ArrayLen(arryCourses)# index=i
cfset m[i]=#EmployeeID#
 cfset m2[i]=#CourseId#
 cfoutput#m[i]#/cfoutput

cfoutput#m2[i]#/cfoutput
cfif Coursename eq #arryCourses[i][3]#

  

cfset comparray[i] = 
#Dateformat(CompletionDate, mm/dd/yy)#
cfset arryCntTotals[i][1] = 
arryCntTotals[i][1] + 1
cfset arryCntTotals[i][2] = 
arryCntTotals[i][2] + 1
/cfif
/cfloop


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302591
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 array problem

2008-04-03 Thread Adrian Lynch
You haven't said what the problem is (I don't think you have anyway).

Also, sort that formatting out, no one needs to see that :O|

:OD

Adrian

-Original Message-
From: erik tom
Sent: 03 April 2008 16:32
To: CF-Talk
Subject: ColdFusion array problem


I have a query that output the data. What i need is to be able create a 2
dementional array to store the courseId and EmployeeId assoosiated with this
course. The reason i am doing this b/c this query gives the all required
info . and then i will have the other query which gives the number of
completed courses , so I will compare how many reuired and how many are done
, and if they not  required then mark them as optional

 cfset m = ArrayNew(1)
 cfset m2=ArrayNew(1)




cfloop from=1 to=#ArrayLen(arryCourses)# index=i
cfset m[i]=#EmployeeID#
 cfset m2[i]=#CourseId#
 cfoutput#m[i]#/cfoutput

cfoutput#m2[i]#/cfoutput
cfif Coursename eq #arryCourses[i][3]#



cfset comparray[i] = 
#Dateformat(CompletionDate, mm/dd/yy)#
cfset arryCntTotals[i][1] = 
arryCntTotals[i][1] + 1
cfset arryCntTotals[i][2] = 
arryCntTotals[i][2] + 1
/cfif
/cfloop


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302592
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 array problem

2008-04-03 Thread Adrian Lynch
Where does arryCourses come from? Have you set it as a 2 dimensional array?
What error do you get if any?

-Original Message-
From: erik tom [mailto:[EMAIL PROTECTED]
Sent: 03 April 2008 16:46
To: CF-Talk
Subject: Re: ColdFusion array problem


The problem is i want to see the employeeId and assosiate with this EMployee
courses

You haven't said what the problem is (I don't think you have anyway).

Also, sort that formatting out, no one needs to see that :O|

:OD

Adrian

I have a query that output the data. What i need is to be able create a 2
dementional array to store the courseId and EmployeeId assoosiated with
this
course. The reason i am doing this b/c this query gives the all required
info . and then i will have the other query which gives the number of
completed courses , so I will compare how many reuired and how many are
done
, and if they not  required then mark them as optional

 cfset m = ArrayNew(1)
 cfset m2=ArrayNew(1)




   cfloop from=1 to=#ArrayLen(arryCourses)# index=i
   cfset m[i]=#EmployeeID#
 cfset m2[i]=#CourseId#
 cfoutput#m[i]#/cfoutput

cfoutput#m2[i]#/cfoutput
   cfif Coursename eq #arryCourses[i][3]#



   cfset comparray[i] = 
 #Dateformat(CompletionDate, mm/dd/yy)#
   cfset arryCntTotals[i][1] = 
 arryCntTotals[i][1] + 1
   cfset arryCntTotals[i][2] = 
 arryCntTotals[i][2] + 1
   /cfif
   /cfloop


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Flex Ajax Bridge jQuery...

2008-04-03 Thread Dan G. Switzer, II
Andy,

My point was just leave the code the way it was working. I wouldn't try to
trigger it with jQuery at all.

-Dan

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 9:33 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

This is for an AIR app Dan...would it be alright to switch the
document.ready over to a window.ready?

-Original Message-
From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 7:37 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

Andy,

Has anyone on this list done any work with the FABridge code provided
by Adobe for use in working with Flex?

I've got it running great when it's in a plain script block inside the
body tag. But the second I put it inside a jQuery $(document).ready
call, it dies (with no errors). I've tried putting the call in
different locations, I've tried loading in the SWF explicitly, but
nothing works. I've provided a snip of the two codes below. Any help would
be greatly appreciated!!

Just remember the whole purpose of the $(document).ready() function is to
fire off when the *DOM* is ready, but it doesn't mean all external images
and SWFs are loaded.

I'd just leave those calls outside of any ready() function, since I assume
they hook into the windows.onload event (which would be the correct event
to
wait for to get a loaded SWF.)

-Dan






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


CFDiv questions

2008-04-03 Thread Scott Stewart
Hey all, 

 

I’ve got a CFDiv question…

 

I have a form that posts data to a database, the database contents are
displayed at the bottom of the page.

I want the bottom of the page to refresh after a form posting.

 

Can I bind a CFDiv to a function that outputs the contents via
cfsavecontent?

 

Thanks

 

sas

 

-- 

Scott Stewart

ColdFusion Developer

 

SSTWebworks

4405 Oakshyre Way

Raleigh, NC. 27616

(919) 874-6229 (home)

(703) 220-2835 (cell)

 


No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.22.5/1356 - Release Date: 4/2/2008
4:14 PM
 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: JRun 4 updates for ColdFusion Servers

2008-04-03 Thread Chris Norloff
We have JRun Updater 7 (CFMX Ent 7.0.2) on 2 Dev and 2 Test servers. No
issues that we've seen. We've had some other issues, but they don't appear
related to Updater 7. We're due to put it on Production in a few days.

Chris 

-Original Message-
From: AJ Mercer [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 8:42 AM
To: CF-Talk
Subject: Re: JRun 4 updates for ColdFusion Servers

I sure a lot of cluster fixes in updater 5 that got me thinking about this.

I dropped updater 7 on my dev box and it seems ok :-) But this is not in a
cluster.

Has anyone applied jRun4 Updater 7 onto CF Ent 702?
Any horror stories??

Is there anything you need to do for each CF instance, or just applying the
updater to the jRun4 home directory enough?

We also have a separate web server (IIS) so I will copy the wsconfig.jar and
associated files to that machine.
And then rebuild the cluster, and reconnect IIS to the cluster.



On Thu, Apr 3, 2008 at 8:16 PM, Matthew Williams [EMAIL PROTECTED]
wrote:

 Depends.  I went to JRun updater 6 about a year ago to address errors 
 that I was seeing for our clustered instances.  I'll be moving to JRun 
 Updater 7 in production within the next few weeks as it has added 
 better overhead control of clustered session replication information.  
 This is under CF 7.02.  I've seen no issues in more than a year with 
 running under the more recent updaters.


 Matthew Williams
 Geodesic GraFX
 www.geodesicgrafx.com/blog

 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302595
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 array problem

2008-04-03 Thread erik tom
The problem is i want to see the employeeId and assosiate with this EMployee 
courses

You haven't said what the problem is (I don't think you have anyway).

Also, sort that formatting out, no one needs to see that :O|

:OD

Adrian

I have a query that output the data. What i need is to be able create a 2
dementional array to store the courseId and EmployeeId assoosiated with this
course. The reason i am doing this b/c this query gives the all required
info . and then i will have the other query which gives the number of
completed courses , so I will compare how many reuired and how many are done
, and if they not  required then mark them as optional

 cfset m = ArrayNew(1)
 cfset m2=ArrayNew(1)




   cfloop from=1 to=#ArrayLen(arryCourses)# index=i
   cfset m[i]=#EmployeeID#
 cfset m2[i]=#CourseId#
 cfoutput#m[i]#/cfoutput

cfoutput#m2[i]#/cfoutput
   cfif Coursename eq #arryCourses[i][3]#



   cfset comparray[i] = 
 #Dateformat(CompletionDate, mm/dd/yy)#
   cfset arryCntTotals[i][1] = 
 arryCntTotals[i][1] + 1
   cfset arryCntTotals[i][2] = 
 arryCntTotals[i][2] + 1
   /cfif
   /cfloop 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302593
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 array problem

2008-04-03 Thread erik tom
the array courses are setup in saparate file . and then i call it through the 
include cfinclude template=../includes/coursearray2.cfm

here the array 
!--- Setup Course Descriptions ---
cfset arryCourses  = ArrayNew(2)  
!--- display name [i][1] ---
cfset arryCourses[1][1] = Federal Conditions of Participation for 
Hospice Services
cfset arryCourses[2][1] = General Hospice Orientation
cfset arryCourses[3][1] = Benchmarking Hospice Operations
cfset arryCourses[4][1] = Compliance Training  Clinical Decision 
Making
cfset arryCourses[5][1] = Certifications  Recertifications
cfset arryCourses[6][1] = Consideration of Radiation Therapy  
Chemotherapy for Palliation of Pain  Symptoms
cfset arryCourses[7][1] = Related Unrelated Issues
cfset arryCourses[8][1] = Revocations Discharges  Aggressive 
Treatment
cfset arryCourses[9][1] = General Hospice Documentation Guidelines
cfset arryCourses[10][1] = Local Coverage Deterations  Hospice 
Eligibility
cfset arryCourses[11][1] = Hospice Plan of Care
!--- test name [i][2] ---
cfset arryCourses[1][2] = Federal Conditions of Participation for 
Hospice Services
cfset arryCourses[2][2] = General Hospice Orientation
cfset arryCourses[3][2] = Benchmarking Hospice Operations
cfset arryCourses[4][2] = Compliance Training  Clinical Decision 
Making
cfset arryCourses[5][2] = Certifications  Recertifications
cfset arryCourses[6][2] = Consideration of Radiation Therapy  
Chemotherapy for Palliation of Pain  Symptoms
cfset arryCourses[7][2] = Related Unrelated Issues
cfset arryCourses[8][2] = Revocations Discharges  Aggressive 
Treatment
cfset arryCourses[9][2] = General Hospice Documentation Guidelines
cfset arryCourses[10][2] = Local Coverage Deterations  Hospice 
Eligibility
cfset arryCourses[11][2] = Hospice Plan of Care
!--- Course Catalog Name ---
cfset arryCourses[1][3] = TRF 101.4
cfset arryCourses[2][3] = TRF 101.6
cfset arryCourses[3][3] = OPS 101.2
cfset arryCourses[4][3] = CPL 101.3
cfset arryCourses[5][3] = SVD 101.14
cfset arryCourses[6][3] = SVD 101.15
cfset arryCourses[7][3] = SVD 101.27
cfset arryCourses[8][3] = SVD 101.28
cfset arryCourses[9][3] = CPL 101.1
cfset arryCourses[10][3] = CPL 101.2
cfset arryCourses[11][3] = SHD 101.5




Where does arryCourses come from? Have you set it as a 2 dimensional array?
What error do you get if any?

The problem is i want to see the employeeId and assosiate with this EMployee
courses

this
course. The reason i am doing this b/c this query gives the all required
info . and then i will have the other query which gives the number of
completed courses , so I will compare how many reuired and how many are
done 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302598
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 array problem

2008-04-03 Thread erik tom
here is my entire code 
CFOUTPUT
!--- Report Location Training Report ---
cfset TodayDT = now()
!--- variables for standard Header ---
cfset hdr_RptID = TTIS-ETR
cfset hdr_SysID = TRAINING RECORDS
cfset hdr_RptName = Employee Training Report

!--- end header variables ---
cfparam name = errmsgdefault = 
cfparam name = community default = 0
cfinclude template=../includes/coursearray2.cfm

cfquery name=getLocations datasource=#session.dbdsn# 
select l.LocationID, l.Name
from #session.dbname#.dbo.Location l
order by l.Name
/cfquery  

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
cfset lastLocation = 
html
head
titleReport Location Training/title
script language=javascript
function goMenu() {
self.location.replace('#session.menu#');
}
function printpage()
  {
  window.print()
  }

function goProcessAnotherReport() {
self.location.replace('#CGI.SCRIPT_NAME#');
}

function validateForm(){

var estr = ;
if (estr  ) {
alert(Please complete the following:\n + estr);
return false;   
}else{
document.reportForm.submit();
}
}
/script
link rel=stylesheet href=../css/style.css /
/head
body 
div id=hdr_ctr
cfinclude template=../includes/stdHeader.cfm
!--- font color=grayLocation Training Report is a summary report 
that .../fontbr ---
/div
cfif not isdefined('submitForm')
div id=reportCopyForm
form action=#CGI.SCRIPT_NAME#?requesttimeout=99500 
name=reportForm method=post onSubmit=return doDateCheck(this.cutoffdate);
br
table width=100%
trtd valign=top width=100%  
bCommunity:/bbr /
select name=community
option value=0- All Locations 
-/option
cfset lastLoc = '***'
cfloop query=getLocations
cfif locationID is not lastLoc
option 
value=#locationID##name# - #locationID#/option
cfset lastLoc = locationID
/cfif
/cfloop
/select
br /br /
bSelect a Date:/bbr /
select name=dselected 
option value=1Prior 01/01/2008/option
option value=2Post 01/01/2008/option
/select

cfif LEN(errmsg) GT 0
br 
font color=redb#errmsg#/b/font
br
cfelse
 br  br 
/cfif
/td/tr
trtd class=tdctr
br /br /
input type=button name=btn_submit 
value=Show Report onClick=validateForm();/ input type=button 
name=MainMenu value=Main Menu onClick=goMenu(); / 
input type=hidden name=submitForm 
value=true /  
/td/tr  
 /table   
/form
/div
cfelse
cfflush interval=10
!--- Show report progress bar ---
cfinclude template=../Includes/_showProgressBar.cfm
cfset xls_filename = #hdr_RptID##session.empID#.csv
cfset crslist = 
 cfset listCourse=31,32,33,136,35,36,37,135,38,39,40
cfquery name=getReportdatasource=#session.dbdsn# dbtype=ODBC
Select distinct e.employeeid, e.last_name as empLastName, 
e.first_name , e.middle_name, 
e.last_name,et.completiondate,et.CourseName,et.CourseId,
tr.TrainingID, tr.courseID, tr.StdTimeFrame, 
er.last_name as erLastName, er.first_name as 
erFirstName, er.middle_name as erMiddleName, 
ea.last_name as eaLastName, ea.first_name as 
eaFirstName, 
ea.middle_name as eaMiddleName, l.name, 
l.locationID, l.state, s.StateID, a.areaID, r.regionID, e.hireDate
from employee e 
join employeejobhistory h   on 
h.employeeid = e.employeeid
inner join jobassignment ja on (ja.sequence 
= h.sequence and ja.emplrcd = 0 and ja.enddate is NULL)
inner join jobcode_list j 

Re: autosuggest

2008-04-03 Thread Dominic Watson
There is now a custom tag for an auto-suggesting cfinput with more than just
enabling listed auto-suggests :)

http://betterautosuggest.riaforge.org/

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Resetting Active Directory Password using CFLDAP ?

2008-04-03 Thread Isidro Pimentel
I am attempting to build the same thing on my intranet and have found this post 
very useful, thank you. Unfortunately, I can not get this to work.  What else 
do I need to do to get the cfexecute to work, Do I need to change something 
else on the net.exe file? and If so how does it pass that to the AD server?

It would be possible, but you would need to ask them something that only
they know, other than their password.  For example, What is your
mother's maiden name?

Of course, you would need to store that information somewhere, either in
AD or a database.  Be careful if you store it in AD, because AD can be
queried by anyone with a domain account.

Or, you can have them provide a secondary email address where all
password reset requests would be sent.  This is probably the safest
method.

I have thought about implementing this, but we don't get that many
support calls for lost passwords, as far as I know.  The next upgrade to
our intranet will probably have this feature, however.

But this would be for users who have forgotten their current password
and wish to reset it online (on another pc) without phoning the helpdesk
to reset it.

So is this scenario possible ?

 
 login page snippet --

cfform method=POST action=processing.cfm name=Form 

Windows Logon : cfinput type=text name=sAMAccountName size=22 br
First Name : cfinput type=text name=givenName size=22 br Surname
: cfinput type=text name=sn size=22 br E-Mail : cfinput
type=text name=mail size=22 br

input type=image src=search.gif border=0 style=cursor:hand
width=49 height=18 /cfform

-- authenticate and processing.cfm page snippet ---

cfset StartOU=dc=domain, dc=co,dc=uk cfset filter =
((objectClass=user) cfif len(trim(Form.givenName))
  cfset filter = filter  (givenName=*#Form.givenName#*) /cfif
cfif len(trim(Form.mail))
  cfset filter = filter  (mail=*#Form.mail#*) /cfif cfif
len(trim(Form.sn))
  cfset filter = filter  (sn=*#Form.sn#*) /cfif
  cfif len(trim(Form.sAMAccountName))
  cfset filter = filter  (sAMAccountName=*#Form.sAMAccountName#*)
/cfif

cfset filter = filter  ) 

cfldap action=query
name=adresult
attributes = sAMAccountName,dn, cn,sn,givenName,password, mail,ou
start=#StartOU#
scope=subtree
filter=#filter#
server=servername
port=port
username=username
password=password


cfset session.user = #sAMAccountName#
cfoutput query=adresult

Hello #cn#
br
cfform method=POST action=changepassword.cfm name=search
pEnter New Passwordcfinput type=text  name=password/p
pConfirm New Passwordcfinput type=text  name=password1/p
input type=image src=submit.gif border=0 style=cursor:hand
align=right width=49 height=18 /cfform

/cfoutput

---changepassword.cfm page snippet--

cfset args = user #session.sAMAccountName()# #form.password1#
/domain

cfsavecontent variable=results
   cfexecute name=c:\windows\system32\net.exe arguments=#args#
timeout=10 /
/cfsavecontent

pYour password has been changed /p 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: CF8 cfinput - autosuggest

2008-04-03 Thread Dominic Watson

 I'm using augosuggest for an auto complete in CF8.

 Is there a way to force the user to make a selection from the 
 autosuggestlist?  I had thought so, but can't find anything on it.


There is now:

http://betterautosuggest.riaforge.org

This custom tag wraps the cfinput tag and adds a little javascript to enable
you to set the properties of the YAHOO.widget.AutoComplete object on which
the cf auto-suggest is based. Tiny and to the point :)

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


gettext and coldfusion

2008-04-03 Thread Dmitrii Dimandt
Hi, all

Is it possible to use GNU gettext from Coldfusion?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


how much is a session overhead?

2008-04-03 Thread Brian Dumbledore
I was wondering what is the overhead if I jsut turn session management on, but 
do not use/set any session variables. Would it effect much in terms server 
performance in general? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: gettext and coldfusion

2008-04-03 Thread Barney Boisvert
Is there a reason you don't want to use the i18n support that Java has
built-in that CF already leverages?

cheers,
barneyb

On Thu, Apr 3, 2008 at 8:07 AM, Dmitrii Dimandt [EMAIL PROTECTED] wrote:
 Hi, all

  Is it possible to use GNU gettext from Coldfusion?

  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Problem with CF8(Axis 1.2.1) Web Service with complex types and WLS10/.NET

2008-04-03 Thread Manuel Ruf
I have the following problem:
I set up a web service in CF8(Axis 1.2.1) which requires a complex type and 
returns a complex type.
The complex types contain only one attribute and follow the bean specification.
When I now try to consume this web service from either WLS10 or .NET it doesn't 
work.
In .NET the returned complex type is just null. In WLS10 I get the following 
error message:

Exception in thread Main Thread java.rmi.RemoteException: SOAPFaultException 
- FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server.userException] 
FaultString [org.xml.sax.SAXException: SimpleDeserializer encountered a child 
element, which is NOT expected, in something it was trying to deserialize.] 
FaultActor [null] Detail [detail/detail]; nested exception is: 
javax.xml.rpc.soap.SOAPFaultException: org.xml.sax.SAXException: 
SimpleDeserializer encountered a child element, which is NOT expected, in 
something it was trying to deserialize.
at 
external.webservices.cfhelloworldservice.HelloWorldService_Stub.execute(Unknown 
Source)
at 
services.test.TestCFHelloWorldService.main(TestCFHelloWorldService.java:29)
Caused by: javax.xml.rpc.soap.SOAPFaultException: org.xml.sax.SAXException: 
SimpleDeserializer encountered a child element, which is NOT expected, in 
something it was trying to deserialize.
at weblogic.wsee.codec.soap11.SoapCodec.decodeFault(SoapCodec.java:311)
at 
weblogic.wsee.ws.dispatch.client.CodecHandler.decodeFault(CodecHandler.java:114)
at 
weblogic.wsee.ws.dispatch.client.CodecHandler.decode(CodecHandler.java:99)
at 
weblogic.wsee.ws.dispatch.client.CodecHandler.handleFault(CodecHandler.java:87)
at 
weblogic.wsee.handler.HandlerIterator.handleFault(HandlerIterator.java:248)
at 
weblogic.wsee.handler.HandlerIterator.handleResponse(HandlerIterator.java:218)
at 
weblogic.wsee.ws.dispatch.client.ClientDispatcher.handleResponse(ClientDispatcher.java:159)
at 
weblogic.wsee.ws.dispatch.client.ClientDispatcher.dispatch(ClientDispatcher.java:114)
at weblogic.wsee.ws.WsStub.invoke(WsStub.java:89)
at weblogic.wsee.jaxrpc.StubImpl._invoke(StubImpl.java:331)
... 2 more

However, when I consume this service with Axis 1.2.1 itself, it works.
We have other services in WLS10 and .NET that communicate with complex types 
just fine.
Here's the wsdl:
definitions 
targetNamespace=http://166.11.22.42:8500/services/HelloWorldService; 
xmlns:tns1=http://helloworld; 
xmlns:soapenc=http://schemas.xmlsoap.org/soap/encoding/; 
xmlns=http://schemas.xmlsoap.org/wsdl/; 
xmlns:apachesoap=http://xml.apache.org/xml-soap; 
xmlns:impl=http://166.11.22.42:8500/services/HelloWorldService; 
xmlns:wsdl=http://schemas.xmlsoap.org/wsdl/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:wsdlsoap=http://schemas.xmlsoap.org/wsdl/soap/; 
xmlns:intf=http://166.11.22.42:8500/services/HelloWorldService;wsdl:typesschema
 xmlns=http://www.w3.org/2001/XMLSchema; 
targetNamespace=http://helloworld;import 
namespace=http://schemas.xmlsoap.org/soap/encoding//complexType 
name=ResponseBasesequenceelement name=acknowledge 
type=xsd:boolean//sequence/complexTypecomplexType 
name=RequestBasesequenceelement name=sayHello nillable=true 
type=xsd:string//sequence/complexType/schema/wsdl:types
  message name=executeRequest
part name=request type=tns1:RequestBase/
  /message
  message name=executeResponse
part name=executeReturn type=tns1:ResponseBase/
  /message
  portType name=HelloWorldService
operation name=execute parameterOrder=request
  input name=executeRequest message=impl:executeRequest/
  output name=executeResponse message=impl:executeResponse/
/operation
  /portType
  binding name=HelloWorldServiceSoapBinding type=impl:HelloWorldService
wsdlsoap:binding style=rpc 
transport=http://schemas.xmlsoap.org/soap/http/
operation name=execute
  wsdlsoap:operation soapAction=/
  input name=executeRequest
wsdlsoap:body use=encoded 
encodingStyle=http://schemas.xmlsoap.org/soap/encoding/; 
namespace=http://helloworld/
  /input
  output name=executeResponse
wsdlsoap:body use=encoded 
encodingStyle=http://schemas.xmlsoap.org/soap/encoding/; 
namespace=http://166.11.22.42:8500/services/HelloWorldService/
  /output
/operation
  /binding
  service name=HelloWorldServiceService
port name=HelloWorldService binding=impl:HelloWorldServiceSoapBinding
  wsdlsoap:address 
location=http://166.11.22.42:8500/services/HelloWorldService/
/port
  /service
/definitions

Here's the response I get from the Service that WLS10 and .NET cannot handle:
soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
   soapenv:Body
  ns1:executeResponse 
soapenv:encodingStyle=http://schemas.xmlsoap.org/soap/encoding/; 
xmlns:ns1=http://helloworld;
 ns1:executeReturn 

Is task manager correct?

2008-04-03 Thread Josh L
Ok, i'll first start off by saying thank you to all of the previous
 people who have given information on here about JRUN and the memory
 issues; you have kept me partly sane past few weeks. I'm a bit new to
 coldfusion but not to computers in general and my company is having a bit of a
 problem, or so i think...

We are running Coldfusion 8 on a Win2003 server with 3 servers running
 in multiserver mode. The web sites that they host are small and nothing
 flashy but mainly used for transfering and receiving mass amounts of
 numbers and figures. One of the servers had almost all of the traffic
 and other two very few clients on them. Basically what we were seeing (on
 only the heavy loaded server) is the memory for JRUN.exe going up
 throughout the day and never ever going back down. Eventually the pages
 would lock up and we had to just restart jrun and everything was fine. 

Since then, I've been searching the google-web in search for some
 fixes, we've tried thread dumps to try and pinpoint when the problem was
 occuring and what was causing it, but all i could get is JRUN was running.
 So i've spread out the load a bit moving a handful of my heavily used
 sites to the other two servers. Since i've done that there have been no
 freezes in the pages or errors on the sites. My concern however is the
 fact that on the task manager my JRUN will still climb steadily
 throughout the day on the main heavy server. For example yesterday it started
 out around 200k and by the time i left it was around 850k memory used.
 Just to be safe i restarted JRUN before i left. In the server monitor
 my graphs look ok no real high peaks and i can see where garbage
 collection is bringing everything back down. 

SO after all that i ask my question. Should i trust my taskmanager or
 the graphs in coldfusion server monitor? My other two servers all stay
 at 280-310k memory usage and we've never gotten this error on them. 

Thanks for all the help

Josh 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: gettext and coldfusion

2008-04-03 Thread Cutter (CFRelated)
Does it have a Java wrapper? If not, you might be able to run the 
command line args via cfexecute...

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Dmitrii Dimandt wrote:
 Hi, all
 
 Is it possible to use GNU gettext from Coldfusion?
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


OT - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Gerald Guido
Does anyone know of a good tool that compares and/or syncs up Database
schema's for two tables/DBs. I want to grab fresh data off of production and
at the same time not have to manually update the schema for all the changes
I made.

SQLYog for MySQL has a great tool that will generate the SQL to compare and
sync up the schema (and data FTM) for two tables/db's

We are on 2005 standard.

TIA

G

-- 
Education is a progressive discovery of our own ignorance.
- Will Durant


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Resetting Active Directory Password using CFLDAP ?

2008-04-03 Thread Dawson, Michael
Make sure you run your ColdFusion services as a domain account with, at
least, Account Operator permissions (add your CF account to the Account
Operators group in AD).  

Then, in the computer's Services, set the ColdFusion Application Server
Service to log on as that domain account.  Restart the CF service.

ColdFusion will then be able to change the password of any account
except for Domain Admins and above. 

The best way to set this up is to log in to a domain computer using the
CF account credentials and run the NET command.  If it works
interactively, it will work using ColdFusion.

m!ke

-Original Message-
From: Isidro Pimentel [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 11:06 AM
To: CF-Talk
Subject: Re: Resetting Active Directory Password using CFLDAP ?

I am attempting to build the same thing on my intranet and have found
this post very useful, thank you. Unfortunately, I can not get this to
work.  What else do I need to do to get the cfexecute to work, Do I need
to change something else on the net.exe file? and If so how does it pass
that to the AD server?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302611
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Dawson, Michael
Embarcadero's ER/Studio is great, but may be a bit pricy.

m!ke

-Original Message-
From: Gerald Guido [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 10:16 AM
To: CF-Talk
Subject: OT - Database schema compare/sync tools for MSSQL

Does anyone know of a good tool that compares and/or syncs up Database
schema's for two tables/DBs. I want to grab fresh data off of production
and at the same time not have to manually update the schema for all the
changes I made.

SQLYog for MySQL has a great tool that will generate the SQL to compare
and sync up the schema (and data FTM) for two tables/db's

We are on 2005 standard.

TIA

G

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: CFDiv questions

2008-04-03 Thread Cutter (CFRelated)
You have the ability, with Ajax form postings, to define a callback 
function, with the only argument being the result returned from the CFC 
function you used for you Ajax submission. Within your callback function 
you can programmatically assign your result to the innerHTML of the div 
at the bottom of the page. Just make sure that your CFC function has a 
returnFormat=string, and that the return is valid XHTML.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Scott Stewart wrote:
 Hey all, 
 
  
 
 I’ve got a CFDiv question…
 
  
 
 I have a form that posts data to a database, the database contents are
 displayed at the bottom of the page.
 
 I want the bottom of the page to refresh after a form posting.
 
  
 
 Can I bind a CFDiv to a function that outputs the contents via
 cfsavecontent?
 
  
 
 Thanks
 
  
 
 sas
 
  
 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: CFDiv questions

2008-04-03 Thread Scott Stewart
Thanks Steve...

I think that's got it

-- 
Scott Stewart
ColdFusion Developer
 
SSTWebworks
4405 Oakshyre Way
Raleigh, NC. 27616
(919) 874-6229 (home)
(703) 220-2835 (cell)

-Original Message-
From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 11:12 AM
To: CF-Talk
Subject: Re: CFDiv questions

You have the ability, with Ajax form postings, to define a callback 
function, with the only argument being the result returned from the CFC 
function you used for you Ajax submission. Within your callback function 
you can programmatically assign your result to the innerHTML of the div 
at the bottom of the page. Just make sure that your CFC function has a 
returnFormat=string, and that the return is valid XHTML.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Scott Stewart wrote:
 Hey all, 
 
  
 
 I’ve got a CFDiv question…
 
  
 
 I have a form that posts data to a database, the database contents are
 displayed at the bottom of the page.
 
 I want the bottom of the page to refresh after a form posting.
 
  
 
 Can I bind a CFDiv to a function that outputs the contents via
 cfsavecontent?
 
  
 
 Thanks
 
  
 
 sas
 
  
 




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: autosuggest

2008-04-03 Thread Gerald Guido
Dominic,
You Rule!

G

On Thu, Apr 3, 2008 at 11:02 AM, Dominic Watson 
[EMAIL PROTECTED] wrote:

 There is now a custom tag for an auto-suggesting cfinput with more than
 just
 enabling listed auto-suggests :)

 http://betterautosuggest.riaforge.org/

 Dominic

 --
 Blog it up: http://fusion.dominicwatson.co.uk


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Is task manager correct?

2008-04-03 Thread Cutter (CFRelated)
Josh,

We've seen similar activity, with a very similar configuration. Here are 
a few things that we've done to relieve our growing pains a little.

1) JVM tuning is critical. The default jvm.config 'out-of-the-box' only 
addresses 512m of RAM for each instance. Garbage Collection choice is 
very important as well. JVM tuning is a lot of trial and error.
2) ColdFusion 8 runs better on Java 1.5. This is a very easy process to 
switch. Google is your friend here.
3) StructClear(VARIABLES) at the end of each page request (can't use in 
application.cfc, so if anyone has suggestions...)
4) Application tuning. When running multiple sites on your server, you 
probably also have multiple applications, each with their own set of 
memory requirements. The server monitor can be very valuable here, as it 
can show you which applications are using the most memory, and what 
variables of those applications are hogs. You can do similar profiling 
with session data in each application. What we found was that, 
throughout the day a site would get hit, initialize it's application, 
and that application wouldn't clear until the wee hours. The more sites 
get hit, the more apps get initialized, the more RAM begins to fill up. 
Additionally, as traffic steadily increased so would the number of 
active sessions in memory.

We saw some unnecessary query caching causing some problems. We also 
discovered some session variables that were much better served in the 
application scope. By making a few code adjustments we recaptured some 
fairly large amounts of RAM.

Here are a few blog postings that helped me in our quest:
http://www.forta.com/blog/index.cfm?mode=entryentry=A61BAA93-3048-80A9-EF7306C155FD29F4
http://www.petefreitag.com/articles/gctuning/
http://www.jmpj.net/jason/index.cfm/2007/5/11/Cold-Fusion-Memory-Leak-Continued
http://www.webapper.net/index.cfm/2006/6/8/20060606021131
http://www.robisen.com/index.cfm/2006/5/26/More-on-ColdFusion-tuning-and-clarifying-JRUNXML-settings
http://www.talkingtree.com/blog/index.cfm?mode=aliasalias=ContextSwitchingBad
http://www.coldfusionmuse.com/index.cfm/2008/2/12/leaky.heap.jvm

Hope some of this helps you out.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Josh L wrote:
 Ok, i'll first start off by saying thank you to all of the previous
  people who have given information on here about JRUN and the memory
  issues; you have kept me partly sane past few weeks. I'm a bit new to
  coldfusion but not to computers in general and my company is having a bit of 
 a
  problem, or so i think...
 
 We are running Coldfusion 8 on a Win2003 server with 3 servers running
  in multiserver mode. The web sites that they host are small and nothing
  flashy but mainly used for transfering and receiving mass amounts of
  numbers and figures. One of the servers had almost all of the traffic
  and other two very few clients on them. Basically what we were seeing (on
  only the heavy loaded server) is the memory for JRUN.exe going up
  throughout the day and never ever going back down. Eventually the pages
  would lock up and we had to just restart jrun and everything was fine. 
 
 Since then, I've been searching the google-web in search for some
  fixes, we've tried thread dumps to try and pinpoint when the problem was
  occuring and what was causing it, but all i could get is JRUN was running.
  So i've spread out the load a bit moving a handful of my heavily used
  sites to the other two servers. Since i've done that there have been no
  freezes in the pages or errors on the sites. My concern however is the
  fact that on the task manager my JRUN will still climb steadily
  throughout the day on the main heavy server. For example yesterday it started
  out around 200k and by the time i left it was around 850k memory used.
  Just to be safe i restarted JRUN before i left. In the server monitor
  my graphs look ok no real high peaks and i can see where garbage
  collection is bringing everything back down. 
 
 SO after all that i ask my question. Should i trust my taskmanager or
  the graphs in coldfusion server monitor? My other two servers all stay
  at 280-310k memory usage and we've never gotten this error on them. 
 
 Thanks for all the help
 
 Josh 
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302615
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Adrian Lynch
Just started using some tools from http://www.red-gate.com/

So far so awesome!

Adrian
http://www.adrianlynch.co.uk/

-Original Message-
From: Gerald Guido
Sent: 03 April 2008 16:16
To: CF-Talk
Subject: OT - Database schema compare/sync tools for MSSQL


Does anyone know of a good tool that compares and/or syncs up Database
schema's for two tables/DBs. I want to grab fresh data off of production and
at the same time not have to manually update the schema for all the changes
I made.

SQLYog for MySQL has a great tool that will generate the SQL to compare and
sync up the schema (and data FTM) for two tables/db's

We are on 2005 standard.

TIA

G

--
Education is a progressive discovery of our own ignorance.
- Will Durant


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: how much is a session overhead?

2008-04-03 Thread Nathan Strutz
There's not a lot of overhead, though if you have an unusually busy system
(in the tens of thousands of simultaneous users), you could catch a
performance/memory hit.

From what I remember reading, Java will almost always assign a session to
any incoming browser, so there's a chance it's doing it anyway and turning
on session variables will just allow you to access the already created
scope.

With no session variables that you put in, the user will get a couple
anyway. CFID, CFTOKEN and maybe a jSessionID (if enabled). This is like 200
bytes at most, per user, so you're really not going to see much happening
there. Again, with tens of thousands of users, your memory usage may go up
like 10-50 MB. Not a big hit.

If you're using client variables now instead of sessions, you need to
switch. Client variables don't work very well and cause more stress than
sessions. If you're worrying about overhead and performance, your Client
variables are much more of a problem than session variables will be.

-- 
nathan strutz
http://www.dopefly.com/


On Thu, Apr 3, 2008 at 9:09 AM, Brian Dumbledore [EMAIL PROTECTED]
wrote:

 I was wondering what is the overhead if I jsut turn session management on,
 but do not use/set any session variables. Would it effect much in terms
 server performance in general?

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: how much is a session overhead?

2008-04-03 Thread Brad Wood
Simply turning on session management, but not storing anything in it
would have a negligible impact on performance.  

Some factors that could impact your performance negatively include:
-- Session timeout (How long a user's session exists before it is
destroyed)
-- How much data you are storing it is (a few strings, or queries and
CFC's)
-- Number of unique visitors to your site per day.

Most people's performance problems with session happen with memory
issues when they store a _lot_ of information in the session scope on a
very high traffic site.

~Brad

-Original Message-
From: Brian Dumbledore [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 11:09 AM
To: CF-Talk
Subject: how much is a session overhead?

I was wondering what is the overhead if I jsut turn session management
on, but do not use/set any session variables. Would it effect much in
terms server performance in general? 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Flex Ajax Bridge jQuery...

2008-04-03 Thread Andy Matthews
Ah...okay...we'll see if that works. Thanks for the input Dan. 

-Original Message-
From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 9:59 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

Andy,

My point was just leave the code the way it was working. I wouldn't try to
trigger it with jQuery at all.

-Dan

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 9:33 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

This is for an AIR app Dan...would it be alright to switch the 
document.ready over to a window.ready?

-Original Message-
From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 03, 2008 7:37 AM
To: CF-Talk
Subject: RE: Flex Ajax Bridge  jQuery...

Andy,

Has anyone on this list done any work with the FABridge code provided 
by Adobe for use in working with Flex?

I've got it running great when it's in a plain script block inside the 
body tag. But the second I put it inside a jQuery $(document).ready 
call, it dies (with no errors). I've tried putting the call in 
different locations, I've tried loading in the SWF explicitly, but 
nothing works. I've provided a snip of the two codes below. Any help 
would
be greatly appreciated!!

Just remember the whole purpose of the $(document).ready() function is 
to fire off when the *DOM* is ready, but it doesn't mean all external 
images and SWFs are loaded.

I'd just leave those calls outside of any ready() function, since I 
assume they hook into the windows.onload event (which would be the 
correct event to wait for to get a loaded SWF.)

-Dan








~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


CFLDAP parameter parenthesis

2008-04-03 Thread Jeff Becker
Need help with a CFLDAP query.  It deals with a parameter that has various 
parenthesis in it.  As LDAP queries are based off parenthesis for dealing with 
ANDs and ORs... I am running into trouble.

I have the following:
cfldap   server = ldap.uconn.edu
  action = query
  name = results
  start = dc=uconn,dc=edu
  filter=((objectCategory=Group)(cn=#cn#))
  attributes = cn,o,title,mail,telephonenumber

My #cn# parameter is:  (placeholder)REALLY_LONG_SERVER_NAME(Mod

Notice the 3 parenthesis and unmatched last parenthesis! I assume the Active 
Directory team ran out of room and didn't close. :/

Error message is:  The value of the attribute filter is invalid.
Any suggestions?? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302620
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Tom McNeer
+1 for Red Gate's tools.


-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302621
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 array problem

2008-04-03 Thread Joe Rinehart
This must be one of those fancy in-memory databases I've been hearing about.

(Couldn't resist.)

 !--- Setup Course Descriptions ---  
   cfset arryCourses  = ArrayNew(2)  
   !--- display name [i][1] ---
   cfset arryCourses[1][1] = Federal Conditions of Participation for 
 Hospice Services
   cfset arryCourses[2][1] = General Hospice Orientation
   cfset arryCourses[3][1] = Benchmarking Hospice Operations
   cfset arryCourses[4][1] = Compliance Training  Clinical Decision 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Rick Faircloth
Got a demo of this, Dominic?

Rick

 -Original Message-
 From: Dominic Watson [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 03, 2008 11:03 AM
 To: CF-Talk
 Subject: Re: autosuggest
 
 There is now a custom tag for an auto-suggesting cfinput with more than just
 enabling listed auto-suggests :)
 
 http://betterautosuggest.riaforge.org/
 
 Dominic
 
 --
 Blog it up: http://fusion.dominicwatson.co.uk
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: gettext and coldfusion

2008-04-03 Thread Dmitrii Dimandt
Yeah, I remembered that just as soon as I hit the Send button. Never  
worked with Java before, so I clean forgot about that :)

Thank you for the extra reminder!

On Apr 3, 2008, at 6:10 PM, Barney Boisvert wrote:
 Is there a reason you don't want to use the i18n support that Java has
 built-in that CF already leverages?

 cheers,
 barneyb

 On Thu, Apr 3, 2008 at 8:07 AM, Dmitrii Dimandt [EMAIL PROTECTED]  
 wrote:
 Hi, all

 Is it possible to use GNU gettext from Coldfusion?



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302624
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 array problem

2008-04-03 Thread Brian Kotek
On an unrelated note, would you mind if I used this code block in a blog
entry on identifying problems with code and refactoring? Or, more likely, an
entire series of blog entries? (I'm being serious). I can remove your name
if you like or include it if you like.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302625
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Jeff Price
+2 for Red Gate.

-jeff

+1 for Red Gate's tools.


-- 
Thanks,

Tom


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: autosuggest

2008-04-03 Thread Dominic Watson
Here's the example.cfm that comes in the riaforge download:

http://dev.dominicwatson.co.uk/autosuggest/example.cfm

The first box has the following settings:

custom:betterautosuggest

 name=fruit
 autosuggest=apple,banana,lemon,lime,mango,orange,peach,pear
 autosuggestbinddelay=1
 autosuggestminlength=1
 delimchar=;
 animhoriz=true
 animvert=false
 animSpeed=0.1/

And the second:

custom:betterautosuggest
 name=vegetables
 autosuggest=bean,brocolli,carrot,colliflower,leak,parsnip,potato,turnip
 forceselection=true
 typeahead=true
 useShadow=false/
Dominic



On 03/04/2008, Rick Faircloth [EMAIL PROTECTED] wrote:

 Got a demo of this, Dominic?

 Rick

  -Original Message-
  From: Dominic Watson [mailto:[EMAIL PROTECTED]
  Sent: Thursday, April 03, 2008 11:03 AM
  To: CF-Talk
  Subject: Re: autosuggest
 
  There is now a custom tag for an auto-suggesting cfinput with more than
 just
  enabling listed auto-suggests :)
 
  http://betterautosuggest.riaforge.org/
 
  Dominic
 
  --
  Blog it up: http://fusion.dominicwatson.co.uk
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302627
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Brad Wood
Red Gate rocks the hizzy.  It also has an API you can tap into.  We had
a previous SQL .net guy who wrote his own comparison tool using the
Regdate API's.

~Brad

-Original Message-
From: Jeff Price [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 11:59 AM
To: CF-Talk
Subject: Re: OT - Database schema compare/sync tools for MSSQL

+2 for Red Gate.

-jeff

+1 for Red Gate's tools.


-- 
Thanks,

Tom




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: SOUNDEX() in MSSQL

2008-04-03 Thread Claude Schneegans
 As far as I can tell it would work perfectly for this...

Not if you want to get dvd blade runner or Harrison Ford blade
runner in the same query.
Anyway, you can test soudex here for instance:
http://www.jewishgen.org/jos/jossound.htm

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


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


cfgrid column types

2008-04-03 Thread Richard White
Hi,

is there a way to make html cfgrid columns checkbox columns or combobox columns 
etc... thanks

i know it can be done if the cfgrid is in a flash format but we use the bind 
attribute and so it must be in html format

thanks

Richard 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Steve Good
Kick ass Dom, can't wait to try this out!

~Steve
http://goodcf.instantspot.com/

-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 10:03 AM
To: CF-Talk
Subject: Re: autosuggest

There is now a custom tag for an auto-suggesting cfinput with more than just
enabling listed auto-suggests :)

http://betterautosuggest.riaforge.org/

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Rick Faircloth
Looks really good, Dominic.

I really like the way a matching choice is focused for
selection by hitting the enter key.

It's always been frustrating to me to have autosuggests
that require me to use the down arrow to select a suggestion.

I'm sure this is going to come in very handy!

Thanks for the great work!

Rick

 -Original Message-
 From: Dominic Watson [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 03, 2008 12:01 PM
 To: CF-Talk
 Subject: Re: autosuggest
 
 Here's the example.cfm that comes in the riaforge download:
 
 http://dev.dominicwatson.co.uk/autosuggest/example.cfm
 
 The first box has the following settings:
 
 custom:betterautosuggest
 
  name=fruit
  autosuggest=apple,banana,lemon,lime,mango,orange,peach,pear
  autosuggestbinddelay=1
  autosuggestminlength=1
  delimchar=;
  animhoriz=true
  animvert=false
  animSpeed=0.1/
 
 And the second:
 
 custom:betterautosuggest
  name=vegetables
  autosuggest=bean,brocolli,carrot,colliflower,leak,parsnip,potato,turnip
  forceselection=true
  typeahead=true
  useShadow=false/
 Dominic
 
 
 
 On 03/04/2008, Rick Faircloth [EMAIL PROTECTED] wrote:
 
  Got a demo of this, Dominic?
 
  Rick
 
   -Original Message-
   From: Dominic Watson [mailto:[EMAIL PROTECTED]
   Sent: Thursday, April 03, 2008 11:03 AM
   To: CF-Talk
   Subject: Re: autosuggest
  
   There is now a custom tag for an auto-suggesting cfinput with more than
  just
   enabling listed auto-suggests :)
  
   http://betterautosuggest.riaforge.org/
  
   Dominic
  
   --
   Blog it up: http://fusion.dominicwatson.co.uk
  
  
  
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: autosuggest

2008-04-03 Thread Gerald Guido
+1 for Dominic

On Thu, Apr 3, 2008 at 12:00 PM, Dominic Watson 
[EMAIL PROTECTED] wrote:

 Here's the example.cfm that comes in the riaforge download:

 http://dev.dominicwatson.co.uk/autosuggest/example.cfm

 The first box has the following settings:

 custom:betterautosuggest

  name=fruit
  autosuggest=apple,banana,lemon,lime,mango,orange,peach,pear
  autosuggestbinddelay=1
  autosuggestminlength=1
  delimchar=;
  animhoriz=true
  animvert=false
  animSpeed=0.1/

 And the second:

 custom:betterautosuggest
  name=vegetables
  autosuggest=bean,brocolli,carrot,colliflower,leak,parsnip,potato,turnip
  forceselection=true
  typeahead=true
  useShadow=false/
 Dominic



 On 03/04/2008, Rick Faircloth [EMAIL PROTECTED] wrote:
 
  Got a demo of this, Dominic?
 
  Rick
 
   -Original Message-
   From: Dominic Watson [mailto:[EMAIL PROTECTED]
   Sent: Thursday, April 03, 2008 11:03 AM
   To: CF-Talk
   Subject: Re: autosuggest
  
   There is now a custom tag for an auto-suggesting cfinput with more
 than
  just
   enabling listed auto-suggests :)
  
   http://betterautosuggest.riaforge.org/
  
   Dominic
  
   --
   Blog it up: http://fusion.dominicwatson.co.uk
  
  
  
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Read large binary file, MX7?

2008-04-03 Thread Eric Pfleckl
I strongly suggest you consider my second suggestion, which was to take CF
out of the file service process altogether. Generate a symbolic link within
CF, and delete the link when it's no longer needed.

Dave Watts, CTO, Fig Leaf Software

@Dave - I know this is an old post, but I'm curious and don't quite understand 
what you mean by symbolic link within CF. I'm familiar with the term in Un*x 
systems, such as ln -s myLink /path/someFile, but I know that's not what you 
mean. Could you explain? 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Steve Good
Fyi, your example for veggies is not including the delimiter when selecting
the item.  But I like that I can specify my own delimiter in there.  And the
typahead is way cool.  Can this connect to a CFC in the same way as the
regular autosuggest attrib?  i.e.
autosuggest=cfc:mycfc.myfunction({cfautosuggestvalue})

~Steve
http://goodcf.instantspot.com/


-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 11:01 AM
To: CF-Talk
Subject: Re: autosuggest

Here's the example.cfm that comes in the riaforge download:

http://dev.dominicwatson.co.uk/autosuggest/example.cfm

The first box has the following settings:

custom:betterautosuggest

 name=fruit
 autosuggest=apple,banana,lemon,lime,mango,orange,peach,pear
 autosuggestbinddelay=1
 autosuggestminlength=1
 delimchar=;
 animhoriz=true
 animvert=false
 animSpeed=0.1/

And the second:

custom:betterautosuggest
 name=vegetables
 autosuggest=bean,brocolli,carrot,colliflower,leak,parsnip,potato,turnip
 forceselection=true
 typeahead=true
 useShadow=false/
Dominic



On 03/04/2008, Rick Faircloth [EMAIL PROTECTED] wrote:

 Got a demo of this, Dominic?

 Rick

  -Original Message-
  From: Dominic Watson [mailto:[EMAIL PROTECTED]
  Sent: Thursday, April 03, 2008 11:03 AM
  To: CF-Talk
  Subject: Re: autosuggest
 
  There is now a custom tag for an auto-suggesting cfinput with more than
 just
  enabling listed auto-suggests :)
 
  http://betterautosuggest.riaforge.org/
 
  Dominic
 
  --
  Blog it up: http://fusion.dominicwatson.co.uk
 
 
 

 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302635
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 + AIR

2008-04-03 Thread Steve Good
Yep, my mistake, vol. II issue II.

~Steve
http://goodcf.instantspot.com/


-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 9:00 AM
To: CF-Talk
Subject: Re: Coldfusion + AIR

On Thu, Apr 3, 2008 at 9:35 PM, Steve Good [EMAIL PROTECTED] wrote:
 If you have Volume 3 issue 3 of the fusion quarterly, there are a whole
  bunch of examples for connecting Flex 3 and AIR to webservices.

I think it was Vol 2 Issue 2; I particularly recommend the article by
James Holmes on this, in that issue (and the follow-up in Issue 3).

:-)

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



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Flex?

2008-04-03 Thread Richard White
Hi 

i just want to know if my understanding of flex is right, and would like your 
opinions if you dont mind :)

i know that coldfusion is predominately server side, and up until now we have 
been using javascript and html for the client side interfaces and client logic. 
from what i have read it seems that flex 3 replaces the need for html and 
javascript.

is flex used for client side design and logic and also interacts very nicely 
with colfusion?

therefore my understanding is that flex is predominately for client side, and 
coldfusion is predominately for server side?

is this correct?

if this is correct, what does everyone feel about flex and should we get onto 
straight away?

thanks

richard 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: Flex?

2008-04-03 Thread Andy Matthews
I wouldn't say that Flex replaces the need for Javascript, and it certainly
doesn't replace the need for HTML. But yes, Flex is strictly for client
facing, and it plays very nicely with ColdFusion running on the server. 

-Original Message-
From: Richard White [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 1:02 PM
To: CF-Talk
Subject: Flex?

Hi 

i just want to know if my understanding of flex is right, and would like
your opinions if you dont mind :)

i know that coldfusion is predominately server side, and up until now we
have been using javascript and html for the client side interfaces and
client logic. from what i have read it seems that flex 3 replaces the need
for html and javascript.

is flex used for client side design and logic and also interacts very nicely
with colfusion?

therefore my understanding is that flex is predominately for client side,
and coldfusion is predominately for server side?

is this correct?

if this is correct, what does everyone feel about flex and should we get
onto straight away?

thanks

richard 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: autosuggest

2008-04-03 Thread Dominic Watson

 Fyi, your example for veggies is not including the delimiter when
 selecting
 the item.


Yeh, it's not supposed to. The two boxes are demonstrating different things.
The first is sideways animation and delimited list. The second is no drop
shadow, enforced selection and typeahead.

Of course, all the smart ppl behind the YAHOO ui are really to thank ;)

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Steve Good
Ahh cool, I get it.

I'll definitely be using this where I can.

~Steve
http://goodcf.instantspot.com/


-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2008 12:08 PM
To: CF-Talk
Subject: Re: autosuggest


 Fyi, your example for veggies is not including the delimiter when
 selecting
 the item.


Yeh, it's not supposed to. The two boxes are demonstrating different things.
The first is sideways animation and delimited list. The second is no drop
shadow, enforced selection and typeahead.

Of course, all the smart ppl behind the YAHOO ui are really to thank ;)

Dominic

-- 
Blog it up: http://fusion.dominicwatson.co.uk




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


SOT: BlazeDS connection works for browser code, but not for AIR code.

2008-04-03 Thread Andy Matthews
I have a test app that I've written to work with BlazeDS. It's running great in 
the browser. When I push a new message to the gateway, it shows up just fine in 
the browser window. But when I use the exact same code, and compile an AIR app, 
it doesn't work.

Does anyone have any idea why it might not be working? Here's the pertinent 
parts of my code:

script type=text/javascript src=lib/FABridge.js/script
script type=text/javascript src=lib/FDMSLib.js/script

FDMSLibrary.load(FDMSBridge.swf, initApp);
function initApp() {
var cs = new ChannelSet();
cs.addChannel(new 
AMFChannel(cf-polling-amf,http://amatthews.dealerskins.loc/flex2gateway/cfamfpolling;));
consumer = new Consumer();
consumer.setDestination(ColdFusionGateway); // comment goes here
consumer.addEventListener(message, messageHandler);
consumer.setChannelSet(cs);
consumer.subscribe();
} 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: cfgrid column types

2008-04-03 Thread Dan Vega
Richard,
I wrote an article on using a combo box in the grid, hope this helps.

http://www.danvega.org/blog/index.cfm/2008/3/28/ColdFusion-8-Grid-Editor-Select-Menu

Dan

On Thu, Apr 3, 2008 at 1:46 PM, Richard White [EMAIL PROTECTED] wrote:

 Hi,

 is there a way to make html cfgrid columns checkbox columns or combobox
 columns etc... thanks

 i know it can be done if the cfgrid is in a flash format but we use the
 bind attribute and so it must be in html format

 thanks

 Richard

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Flex?

2008-04-03 Thread Brian Kotek
Flex is ONLY client-side. It must communicate with a server via AMF (Flash
Remoting), web services, or via HTTP (typically to get XML data) to do
anything like save data to a central database.

It absolutely does NOT replace HTML or JavaScript. Flex is meant for
applications like online stores or reservation systems. If one needs a
normal content-based web site it will almost certainly be overkill to use
Flex for that.

On Thu, Apr 3, 2008 at 2:01 PM, Richard White [EMAIL PROTECTED] wrote:

 Hi

 i just want to know if my understanding of flex is right, and would like
 your opinions if you dont mind :)

 i know that coldfusion is predominately server side, and up until now we
 have been using javascript and html for the client side interfaces and
 client logic. from what i have read it seems that flex 3 replaces the need
 for html and javascript.

 is flex used for client side design and logic and also interacts very
 nicely with colfusion?

 therefore my understanding is that flex is predominately for client side,
 and coldfusion is predominately for server side?

 is this correct?

 if this is correct, what does everyone feel about flex and should we get
 onto straight away?

 thanks

 richard

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Flex Ajax Bridge jQuery...

2008-04-03 Thread Eric Haskins
I started using it with a Flexchart APP I was doing in PHP.  I found it
better to make a call from flex to the bridge once the SWF was loaded. That
way I knew everything was up

Eric

On Thu, Apr 3, 2008 at 11:43 AM, Andy Matthews [EMAIL PROTECTED]
wrote:

 Ah...okay...we'll see if that works. Thanks for the input Dan.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302645
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 array problem

2008-04-03 Thread erik tom
Irewrote a little but it does not outputing correctly 

 cfset newStaff= ArrayNew(2)
 cfset newStaff[1][1]=#employeeId#
 cfset newStaff[1][2]=#courseId#
 !---cfdump var=#newStaff# label=newStaff---
 cfset emp=ArrayToList(newStaff[1],,)
   Emp:  cfdump var=#emp# label=emp
  nbsp;br
 cfquery name=getTaken datasource=#session.dbdsn# dbtype=ODBC
select courseId,CompletionDate,EmployeeId from EmployeeTraining 
where courseId in (31,32,33,136,35,36,37,135,38,39,40) and employeeId in 
(#employeeId#)
  /cfquery
 
cfset newStaff2= ArrayNew(2)
 cfset newStaff2[1][1]=#getTaken.employeeId#
 cfset newStaff2[1][2]=#getTaken.courseId#
 !---cfdump var=#newStaff# label=newStaff---
 cfset emp2=ArrayToList(newStaff2[1],,)
 Emp2:cfdump var=#emp2# label=emp2

And the output is (some data not all):
Emp: 506619,31  
Emp2: 506619,35 Emp: 506619,32  
Emp2: 506619,35 Emp: 506619,35  
Emp2: 506619,35 Emp: 506619,36  
Emp2: 506619,35 Emp: 506619,37  
Emp2: 506619,35 Emp: 506619,38  
Emp2: 506619,35 Emp: 506619,39  
Emp2: 506619,35 Emp: 506619,40  
Emp2: 506619,35 Emp: 506619,135  
Emp2: 506619,35 Emp: 506619,136  
Emp2: 506619,35 Emp: 48880,31  
Emp2: 48880,35 Emp: 48880,32  
Emp2: 48880,35 Emp: 48880,33  
Emp2: 48880,35 Emp: 48880,35  
Emp2: 48880,35 Emp: 48880,36  
Emp2: 48880,35 Emp: 48880,37  
Emp2: 48880,35 Emp: 48880,38  
Emp2: 48880,35 Emp: 48880,39  
Emp2: 48880,35 Emp: 48880,40  
Emp2: 48880,35 Emp: 48880,135  
Emp2: 48880,35 Emp: 48880,136  
Emp2: 48880,35 Emp: 512602,  
Emp2: 512602,32 Emp: 512602,32  
Emp2: 512602,32 Emp: 512602,136  
Emp2: 512602,32 Emp: 152928,31  
Emp2: 152928,38 Emp: 152928,32  



 I have a query that output the data. What i need is to be able create 
 a 2 dementional array to store the courseId and EmployeeId assoosiated 
 with this course. The reason i am doing this b/c this query gives the 
 all required info . and then i will have the other query which gives 
 the number of completed courses , so I will compare how many reuired 
 and how many are done , and if they not  required then mark them as 
 optional 
 
 
 cfset m = ArrayNew(1)
 
 cfset m2=ArrayNew(1)
 
 
 
 

 
 
 
   cfloop from=1 to=#ArrayLen(arryCourses)# index=i

   cfset m[i]=#EmployeeID#
 
 cfset m2[i]=#CourseId#
 
 cfoutput#m[i]#/cfoutput

 

 cfoutput#m2[i]#/cfoutput
   cfif Coursename eq #arryCourses[i][3]#
   
  
 

 
   cfset comparray[i] = 
 #Dateformat(CompletionDate, mm/dd/yy)#
   cfset arryCntTotals[i][1] = 
 arryCntTotals[i][1] + 1
   cfset arryCntTotals[i][2] = 
 arryCntTotals[i][2] + 1
   /cfif
   /cfloop


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: cfgrid column types

2008-04-03 Thread Richard White
Hi Dan

that is fantastic and so easy :) we are very impressed, thanks very much

do you have any ideas on how we could do the checkbox and a multi select combo 
box in the cfgrid too

thanks very much again dan

richard

 

Richard,
I wrote an article on using a combo box in the grid, hope this helps.

http://www.danvega.org/blog/index.cfm/2008/3/28/ColdFusion-8-Grid-Editor-Select-Menu

Dan

On Thu, Apr 3, 2008 at 1:46 PM, Richard White [EMAIL PROTECTED] wrote:

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: TOT - FireFox memory issues

2008-04-03 Thread Gerald Guido
Scott,
I did some further research on this. In addition to that I found, that
assigning the Memory Cache helped a lot too. I had done most of these but it
was Memory Cache that seamed to do the trick for me.

http://www.zolved.com/synapse/view_content/24939/How_to_reduce_the_memory_usage_on_Firefox#6

FF has not gone over 200 megs so far (pounding on it as usual) and is
noticeably faster.

Thanks to all for your assistance with this.

G

On Thu, Apr 3, 2008 at 9:52 AM, Scott Brady [EMAIL PROTECTED] wrote:

 My Firefox has the same problem on both my work and home machines
 (Windows XP).  I have tried uninstalling various plug-ins, but none
 seem to fix the problem.  Apparently, it has known memory leaks (FF
 does not trim its memory usage when you minimize [which has a fix seen
 here:
 http://www.howtogeek.com/howto/windows/fix-for-firefox-memory-leak-on-windows/
 ]
 and apparently leaks caused by pages that have Flash in them [you
 know, like most major web sites now].) Mozilla has an article about
 the memory leaks here:  http://kb.mozillazine.org/Memory_Leak

 Reportedly, FF3 has fixed a lot of these problems.

 --
 -
 Scott Brady
 http://www.scottbrady.net/

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: cfgrid column types

2008-04-03 Thread Dan Vega
To create a checkbox just make sure the values are boolean values. I tested
it with 0/1 and it worked just fine. I am not sure about a multi select I
will have to look into that.

Dan

On Thu, Apr 3, 2008 at 2:44 PM, Richard White [EMAIL PROTECTED] wrote:

 Hi Dan

 that is fantastic and so easy :) we are very impressed, thanks very much

 do you have any ideas on how we could do the checkbox and a multi select
 combo box in the cfgrid too

 thanks very much again dan

 richard



 Richard,
 I wrote an article on using a combo box in the grid, hope this helps.
 
 
 http://www.danvega.org/blog/index.cfm/2008/3/28/ColdFusion-8-Grid-Editor-Select-Menu
 
 Dan
 
 On Thu, Apr 3, 2008 at 1:46 PM, Richard White [EMAIL PROTECTED] wrote:
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302647
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 - Database schema compare/sync tools for MSSQL

2008-04-03 Thread Gerald Guido
Thank you for the help.

G

On Thu, Apr 3, 2008 at 12:01 PM, Brad Wood [EMAIL PROTECTED]
wrote:

 Red Gate rocks the hizzy.  It also has an API you can tap into.  We had
 a previous SQL .net guy who wrote his own comparison tool using the
 Regdate API's.

 ~Brad

 -Original Message-
 From: Jeff Price [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 03, 2008 11:59 AM
 To: CF-Talk
 Subject: Re: OT - Database schema compare/sync tools for MSSQL

 +2 for Red Gate.

 -jeff

 +1 for Red Gate's tools.
 
 
 --
 Thanks,
 
 Tom




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302648
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 Reseller Hosting

2008-04-03 Thread Peter Donahue
Hello Andy and listers,

I too was very impressed with the information I read on their site. We
could be in, Second gear with them by the weekend. My understanding is
that you need their Second Gear Account to have access to CF8. Thanks for
the help.

Peter Donahue


- Original Message - 
From: Andy Matthews [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, April 03, 2008 7:31 AM
Subject: RE: ColdFusion Reseller Hosting


I've been with Gearhost.com for about 5 years. They're solid. They have the
occasional customer service hiccup, but tickets are generally handled within
24 hours, their control panel is top notch (allowing you to create your own
DSNs is a plus), and so on.

I LOVE the fact that their accounts allow multiple domains...that was one of
the primary selling points for me.

-Original Message-
From: Peter Donahue [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 10:06 PM
To: CF-Talk
Subject: Re: ColdFusion Reseller Hosting

Hello Andy and listers,

What has been your experience with Gearhost.com. According to their Web
site they're now offering ColdFusion 8 hosting  with Second Gear Accounts
and above. They're a strong candidate in my book.

Peter Donahue

- Original Message -
From: Andy Matthews [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, April 02, 2008 6:59 PM
Subject: RE: ColdFusion Reseller Hosting


Gearhost.com doesn't offer a reseller plan as such, but they do support
multiple domains per account, and I believe offer a percentage off each
additional account.



-Original Message-
From: Peter Donahue [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 02, 2008 6:14 PM
To: CF-Talk
Subject: ColdFusion Reseller Hosting

Hello everyone,

Can anyone recommend a company offering ColdFusion reseller hosting in
the U.S.? I had a plan with a host in the UK, but wish to find a U.S.
hosting company in the interest of keeping costs down. An Australian
reseller host would also work too. Thanks for your help.

Peter Donahue










~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: CFLDAP parameter parenthesis

2008-04-03 Thread Jeff Becker
After a bit of digging, I think I was able to find an answer to this.

http://www.faqs.org/rfcs/rfc2254.html gave me some good info on LDAP search 
strings. Search the above link for String Search Filter Definition

Turns out I needed to replace special chars (*,(,),\,NUL) with their respective 
ASCII value

Taken from the above, all the examples below are good search strings.
(o=Parens R Us \28for all your parenthetical needs\29)
(cn=*\2A*)
(filename=C:\5cMyFile)
(bin=\00\00\00\04)
(sn=Lu\c4\8di\c4\87)


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Checkbox Input Type Condition

2008-04-03 Thread Steve LaBadie
I have a form which in part includes the option of checking a workshop
(4 different workshops in all) and a place for the number of attendees.

 

Workshop 1:input type=checkbox name=wrkshp value=Workshop 1 /
Attendees:input type=text name=att1 /

Workshop 2:input type=checkbox name=wrkshp value=Workshop 2 /
Attendees:input type=text name=att2 /

Workshop 3:input type=checkbox name=wrkshp value=Workshop 3 /
Attendees:input type=text name=att3 /

Workshop 4:input type=checkbox name=wrkshp value=Workshop 4 /
Attendees:input type=text name=att4 /

 

I am using a cfloop for the wrkshp selected on my action page, but I
also want to display the number of attendees based on which workshop was
checked. Since the checkboxes are grouped (same name) I am not sure how
to identify the selected value in my conditional expression.

 

Workshop: cfloop list=#form.wrkshp# index=w#w#/cfloop

Attendee: cfif IsDefined(form.wrkshp) AND form.wrkshp NEQ

cfoutput#form.att1#/cfoutput

cfelseif

cfoutput#form.att2#/cfoutput

cfelseif

cfoutput#form.att3#/cfoutput

cfelse

cfoutput#form.att4#/cfoutput

/cfif 

 

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://www.esu.edu 

 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Flex?

2008-04-03 Thread Richard White
thanks very much for your replies now

i will be looking more into flex now but just wanted to make sure of my 
understanding with it first

thanks again

richard 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


RE: autosuggest

2008-04-03 Thread Steve Good
Just posted my solution to the autosuggest challenge I was having
yesterday.  It's not nearly as nice as the solution that Dom presented, but
I think as a quick solution it's not half bad.

http://goodcf.instantspot.com/blog/2008/04/03/Creating-and-Appending-a-List-
Using-AutoSuggest-and-JQuery

~Steve
http://goodcf.instantspot.com/


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Checkbox Input Type Condition

2008-04-03 Thread Kris Jones
You need to check and see if the Workshop name is in the form.wrkshp
value. Use listfindnocase() method:
You wouldn't want to use cfelseif because a user could check more than
one wrkshp checkbox, right?

cfif isdefined(form.wrkshp)
cfif listfindnocase(form.wrkshp,Workshop 1) gt 0
 cfoutput#form.att1#/cfoutput
/cfif
cfif listfindnocase(form.wrkshp,Workshop 2) gt 0
  cfoutput#form.att2#/cfoutput
/cfif
. . .

/cfif

HTH,
Kris

 I have a form which in part includes the option of checking a workshop
  (4 different workshops in all) and a place for the number of attendees.

  Workshop 1:input type=checkbox name=wrkshp value=Workshop 1 /
  Attendees:input type=text name=att1 /

  Workshop 2:input type=checkbox name=wrkshp value=Workshop 2 /
  Attendees:input type=text name=att2 /

  Workshop 3:input type=checkbox name=wrkshp value=Workshop 3 /
  Attendees:input type=text name=att3 /

  Workshop 4:input type=checkbox name=wrkshp value=Workshop 4 /
  Attendees:input type=text name=att4 /

  I am using a cfloop for the wrkshp selected on my action page, but I
  also want to display the number of attendees based on which workshop was
  checked. Since the checkboxes are grouped (same name) I am not sure how
  to identify the selected value in my conditional expression.

  Workshop: cfloop list=#form.wrkshp# index=w#w#/cfloop

  Attendee: cfif IsDefined(form.wrkshp) AND form.wrkshp NEQ

  cfoutput#form.att1#/cfoutput

  cfelseif

  cfoutput#form.att2#/cfoutput

  cfelseif

  cfoutput#form.att3#/cfoutput

  cfelse

  cfoutput#form.att4#/cfoutput

  /cfif



  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://www.esu.edu





  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: cfgrid column types

2008-04-03 Thread Richard White
hi dan thanks for the reply

can you send me a sample of the cfgridcolumn that you have that produces a 
checkbox please. i cant seem to get it to show this correctly

and if you do find out how to do a multi select we would really appreciate it 
if you could let us know

thanks again dan

richard



To create a checkbox just make sure the values are boolean values. I tested
it with 0/1 and it worked just fine. I am not sure about a multi select I
will have to look into that.

Dan

On Thu, Apr 3, 2008 at 2:44 PM, Richard White [EMAIL PROTECTED] wrote:

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Order by question

2008-04-03 Thread Paul Ihrig
if i have a bunch of numbers that i want to order like this in a drop
dowm, how do i do it?
the origional order by id was fine when the list was small..
but now it has grown.
forcing it to look the way we want below is boggeling..
1
101
101010
2
201
202
201010
201020
3
302
et...

cfquery name=get_PH datasource=xxx
SELECT hier_num, .hier_desc
FROM hierarchy
/cfquery

if i order by hier_num
it just does as expected
1
2
3
101
201
301
et

as always i appreciate your help.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


Re: Order by question

2008-04-03 Thread Ian Skinner
Paul Ihrig wrote:
 1
 101
 101010
 2
 201
 202
 201010
 201020
 3
 302

This is an alphabetical order of numbers.  Why the list is being order 
alphabetically I can not say without seeing some relevant code.  But the 
solution is to tell your code to treat this data a numerical data not 
character data.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

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


  1   2   >