Re: cfquickdocs.com down?

2011-09-26 Thread Alan Rother
If you guys ever get hold of him, I'd be happy to act as a mirror. It would be nice to have a few of those out there... =] On Mon, Sep 26, 2011 at 3:03 PM, Josh Nathanson wrote: > > Through some digging I was able to connect it to Jacob Munson, who I > believe > is on this list, or at least w

Re: cfquickdocs.com down?

2011-09-26 Thread Josh Nathanson
Through some digging I was able to connect it to Jacob Munson, who I believe is on this list, or at least was at one time. Jake you out there?? We need CFQuickDocs! -- Josh On Mon, Sep 26, 2011 at 11:36 AM, Kumar Shah wrote: > > http://cfquickdocs.com/ seems to be down (since yesterday) I

Re: Developer Edition License Exception and Windows 7

2011-09-26 Thread Russ Michaels
just disable IPv6 if your not using it. Also it should work on 127.0.0.1 regardless, so check your hosts file and make sure localhost and all your local dev domains map to 127.0.0.1 On Mon, Sep 26, 2011 at 9:47 PM, Scott Brady wrote: > > This just started happening on Friday, so not sure if it

Re: ORM overhead

2011-09-26 Thread Brian Kotek
There is also the first and second-level cache to consider, as these affect performance tremendously, and aren't reflected in a very basic test like this. On Mon, Sep 26, 2011 at 4:35 PM, Russ Michaels wrote: > > It is a pretty easy test. > make 2 pages. > > 1 that uses cfquery > 1 that uses OR

Re: ORM overhead

2011-09-26 Thread Brian Kotek
Generally, the performance is perfectly acceptable. In your specific case though, I'm not sure, because a situation where you have thousands of separate databases for the same application is definitely not common. On Mon, Sep 26, 2011 at 2:07 PM, Richard (J7 Group) wrote: > > Performance overhe

Developer Edition License Exception and Windows 7

2011-09-26 Thread Scott Brady
This just started happening on Friday, so not sure if it's Windows 7-specific or not (I've been on 7 for a couple of months), but now it's getting annoying (4-5 times today already). I'm running across a problem with the Dev edition saying there's a license restriction exception. No one else has

Re: ORM overhead

2011-09-26 Thread Russ Michaels
It is a pretty easy test. make 2 pages. 1 that uses cfquery 1 that uses ORM get them both to do the same heavy database work compare the execution times. ORM is clearly going to have some overhead by its very nature, so you have to measure whether the convenience and portability outweighs the p

RE: ORM overhead

2011-09-26 Thread Richard (J7 Group)
Thanks for your reply Jochem. This is some excellent advice and we will def look into it. I wonder if I am over complicating this issue. Basically our application is a Software as a Service (SaaS) and each client that accesses it really only needs to connect to their own data source due to the

Re: WSDL 404 Error

2011-09-26 Thread Shannon Rhodes
Thanks all...it seems to have magically resolved itself after some server maintenance this weekend. I appeciate the help! ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272

Re: ORM overhead

2011-09-26 Thread Jochem van Dieten
On Mon, Sep 26, 2011 at 8:07 PM, Richard (J7 Group) wrote: > Performance overhead, especially in an application that could be linked to > thousands of data sources? I think an application with thousands of datasources is so far out of the experience of other users that we will have no way of answ

cfquickdocs.com down?

2011-09-26 Thread Kumar Shah
http://cfquickdocs.com/ seems to be down (since yesterday) I believe. Anybody know who maintained this/can reach out to them? Has proved to be really useful for looking things up. Thanks -- Kumar Shah http://www.coldfusion-ria.com/Blog/

Re: Executing Java in CF

2011-09-26 Thread Larry Lyons
>make sure the java class files are loaded by CF, stick them in the lib >folder for example then restart cf, then check in the cf info page in >the cfadmin and see if they loaded, then you will be able to call the >functions using CreateObject(java) just as u would any of the built in >java functi

RE: ORM overhead

2011-09-26 Thread Richard (J7 Group)
Performance overhead, especially in an application that could be linked to thousands of data sources? -Original Message- From: Brian Kotek [mailto:brian...@gmail.com] Sent: 26 September 2011 18:49 To: cf-talk Subject: Re: ORM overhead You're not going to get anything other than anecd

Re: SQL grrr

2011-09-26 Thread Leigh
> If you mean only ID's linked to all three (3) values?  Something like this Duh. Just noticed I left off the GROUP BY...   ... SELECT  ID, COUNT(Value) AS MatchCount FROM TableName WHERE   ID IN ( ) GROUP BY ID  HAVING  COUNT(Value) = http://www.amazon.com/Adobe-Coldfusion-Anthology/

Re: SQL grrr

2011-09-26 Thread Richard White
thanks, works perfect! > Hi, > > i know this is probably a simple answer and i probably drunk too much > coffee! > > given the following sql data: > > ID value > > 1 A > 1 B > 1 C > 2 A > 2 B > 3 A > 3 B > 3 C > > i need to run a query that says return me the ids th

Re: ORM overhead

2011-09-26 Thread Brian Kotek
You're not going to get anything other than anecdotal opinions, but everyone I know switched to ORM as soon as it was available. As far as "overhead", I'm not sure what you mean. Coding overhead? Performance overhead? On Mon, Sep 26, 2011 at 1:21 PM, Richard White wrote: > > to rephrase this

Re: SQL grrr

2011-09-26 Thread Carl Von Stetten
Or change the first line to: select distinct t.ID (again assumes SQL Server) Carl On 9/26/2011 10:44 AM, Josh Nathanson wrote: > Yup, I think Carl's is the best, though you'd probably want to throw a GROUP > BY in there so you don't get multiple rows for the same ID. > > -- Josh > > On Mon, Sep

Re: SQL grrr

2011-09-26 Thread Josh Nathanson
Yup, I think Carl's is the best, though you'd probably want to throw a GROUP BY in there so you don't get multiple rows for the same ID. -- Josh On Mon, Sep 26, 2011 at 10:41 AM, Carl Von Stetten wrote: > > Richard, > > I think this will work (untested, assumes SQL Server): > > select t.ID > fr

Re: SQL grrr

2011-09-26 Thread Steve Milburn
I'm sure there is a much more efficient way of doing this, but this would work: SELECT distinct ID from table where id in (select ID from table where val = 'A' and id in (select id from table where val = 'B' and ID in (select id from table where val = 'C'))) On Mon, Sep 26, 2011 at 1:18 PM, Ric

Re: SQL grrr

2011-09-26 Thread Carl Von Stetten
Richard, I think this will work (untested, assumes SQL Server): select t.ID from mytable t inner join mytable a on t.id = a.id and a.value = 'A' inner join mytable b on t.id = b.id and b.value = 'B' inner join mytable c on t.id = c.id and c.value = 'C' HTH, Carl ~~~

Re: SQL grrr

2011-09-26 Thread Leigh
> ids that are linked to values A and B and C. If you mean only ID's linked to all three (3) values?  Something like this ... SELECT  ID, COUNT(Value) AS MatchCount FROM TableName WHERE   ID IN ( ) HAVING  COUNT(Value) = http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?t

Re: SQL grrr

2011-09-26 Thread Matt Quackenbush
Something like... SELECT ID FROM MyTable WHERE value IN () ; ?? On Mon, Sep 26, 2011 at 12:18 PM, Richard White wrote: > > Hi, > > i know this is probably a simple answer and i probably drunk too much > coffee! > > given the following sql data: > > ID

Re: ORM overhead

2011-09-26 Thread Richard White
to rephrase this question slightly, has there been much take up on the CF9 ORM? i read somewhere it was one of the most welcome enhancements in CF9, but then i also read somewhere else its an overhead too far for many developers > Hi, we are looking to restructure our system using ORM but are

SQL grrr

2011-09-26 Thread Richard White
Hi, i know this is probably a simple answer and i probably drunk too much coffee! given the following sql data: ID value 1 A 1 B 1 C 2 A 2 B 3 A 3 B 3 C i need to run a query that says return me the ids that are linked to values A and B and C. so this query on the ab

Re: coldfusion

2011-09-26 Thread Al Musella, DPM
This might not apply to your situation, but I have a few domain names that lead to my same website (.com. .org as well as common mispelling). What I do is detect the name used and redirect to the main domain name when they first hit the website At 12:01 PM 9/26/2011, you wrote: >It sure wil

Re: coldfusion

2011-09-26 Thread Bryan Stevenson
It sure will see them as seperate appsbecause they are ;-) That's all I have until you tell us if: 1) The app on each server is in fact the same (I assume so) 2) You setup load balancing between the 2 servers and expect the app to be seen as the same on each server If the answer to 1 & 2 is

Re: Executing Java in CF

2011-09-26 Thread Russ Michaels
make sure the java class files are loaded by CF, stick them in the lib folder for example then restart cf, then check in the cf info page in the cfadmin and see if they loaded, then you will be able to call the functions using CreateObject(java) just as u would any of the built in java functions.

SQL need to return data even if specific where statement isnt matched

2011-09-26 Thread Adam Bourg
've built an extension to a employment application where we can easily add new questions to the form. I need to query to match on both which job they applied to and what application ID it is. I need to return both the answer and the question, the problem is it will return both if both are defin

Re: Does coldfusion see 2 urls as different applications or sessions?

2011-09-26 Thread Greg Morphis
Cool, that's what I was assuming was happening, the domain name difference in the session cookies but wasn't sure how to search for that.. figured asking people would be the best way. Thanks guys! On Mon, Sep 26, 2011 at 9:45 AM, Alan Rother wrote: > > Just to add on specific point of clarifica

Executing Java in CF

2011-09-26 Thread Robert Harrison
Hi, I'm having no luck finding this documentation, maybe someone know off the top of their head. I have some server sided java code I need to execute in a coldfusion page. That may call either a .war or .jar file. How do I specify in the CF page that a portion of the code is JAVA? Thanks,

Re: ColdFusion Standard License

2011-09-26 Thread Mary Jo Sminkey
> Not sure if this is comprehensive, and you'd still want to test your > app, but this is a good starting point to see if you are using > anything that is known to not work. Oops, sorry about the messed up subject. Didn't realize LastPass was filling that in from the last thread I replied to

Re: Does coldfusion see 2 urls as different applications or sessions?

2011-09-26 Thread Alan Rother
Just to add on specific point of clarification ColdFusion bases it's decision about Application scopes entirely on the name of the application. So as long as in your Application.cfc this.name is the same no matter what domain name you hit, then CF is referencing the same application variables.

Re: Does coldfusion see 2 urls as different applications or sessions?

2011-09-26 Thread Russ Michaels
yes because cookies are domain specific and that is how your session is identified unless you are manually passing cfid and cftoken on the url. On Mon, Sep 26, 2011 at 3:27 PM, Greg Morphis wrote: > > Sorry for the horrible subject before.. I began writing it, wrote the body > and before I went

Does coldfusion see 2 urls as different applications or sessions?

2011-09-26 Thread Greg Morphis
Sorry for the horrible subject before.. I began writing it, wrote the body and before I went back to append the subject I hit send.. On Mon, Sep 26, 2011 at 9:25 AM, Greg Morphis wrote: > We have a server that has 2 urls pointing to it.. > If I log in servera.org and then hit some log in requi

coldfusion

2011-09-26 Thread Greg Morphis
We have a server that has 2 urls pointing to it.. If I log in servera.org and then hit some log in required page and then change the url to serverb.org I'm told to log in.. Does CF think it's a different application? different session? And is there an easy way to correct this? ~~

Re: Ecommerce - need it to allow vendors to manage their own inventory sections - any recommendations?

2011-09-26 Thread Mary Jo Sminkey
>The best test is to try both and see if your app works on them without >issue, and then look at their unique features. And unsupported functions: http://wiki.getrailo.org/wiki/Functions_Not_Supported Not sure if this is comprehensive, and you'd still want to test your app, but this is a good

Re: Ecommerce - need it to allow vendors to manage their own inventory sections - any recommendations?

2011-09-26 Thread Mary Jo Sminkey
>The best test is to try both and see if your app works on them without >issue, and then look at their unique features. > Of course, there *is* information out there in terms of what they don't support that ACF does, you don't have to go to the trouble of running your app to find that out. Here

Way OT - Technical Writing

2011-09-26 Thread Brook Davies
Sorry for the way OT post. But I am going crazy trying to find a good technical writer to write a user guide for our CF web app. I've gone through a few people already. They keep writing stuff that seems to make the topics MORE difficult. I think I would pull my hair out trying to use what they ar

SOT - Multi-dimensional tree diagrams

2011-09-26 Thread Kevin Parker
Has anyone seen anything similar to this that is open source that can be driven from a database and/or XML- thank you!!! http://asterisq.com/ ++ Kevin Parker Advanced Imaging e: webmas...@advancedimaging.com.au w: www.advancedimaging.com.au m: 0418 815 527 ++ http://au.linked