Re: [cfaussie] Re: CF10 WSDL

2012-08-22 Thread Kai Koenig
It essentially means that you're now using Apache Axis1 instead of Apache Axis2. Axis1 is the SOAP web service engine that CF used to use since support for web services was added. For a variety of backwards compatibility reasons it has been left in the product and can be enabled through the

RE: [cfaussie] Re: CF10 WSDL

2012-08-22 Thread Gavin Baumanis
Hi Kai, You are correct. You can override the CFADMIN setting in code via an Application.cfc setting or as CFC metadata. From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Kai Koenig Sent: Wednesday, 22 August 2012 16:07 To: cfaussie@googlegroups.com

[cfaussie] Query of Query between multiple recordsets

2012-08-22 Thread Steve Onnis
Does anyone know if you can actually query of query between more than one query? like cfquery dbtype=query name=LOCAL.searchResults SELECTcolumn FROMquery1, query2 WHEREquery1.id = query2.id /cfquery I am trying to do it but seem to be getting casting issues. I have

Re: [cfaussie] Query of Query between multiple recordsets

2012-08-22 Thread Zac Spitzer
you definitely can, one workaround for casting issues is to simply serialise to json and back On Wed, Aug 22, 2012 at 6:05 PM, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if you can actually query of query between more than one query? like cfquery dbtype=query

Re: [cfaussie] Query of Query between multiple recordsets

2012-08-22 Thread Andrew Myers
Would using union help? I've done this before with qoq but I'm not sure of its applicable here without seeing your data sets Sent from my mobile On 22/08/2012, at 6:13 PM, Zac Spitzer zac.spit...@gmail.com wrote: you definitely can, one workaround for casting issues is to simply serialise

RE: [cfaussie] Query of Query between multiple recordsets

2012-08-22 Thread Steve Onnis
i am doing a filtering process combining a cfsearch result set and a result set from a database query. The KEY value from the cfsearch is matching up with the primary key value from the db query. i did notice that the key value from cfsearch is cast as a string where was the id from the db is a