Join us for RIACon 2011!

2011-07-29 Thread James Archy
Join us for RIACon 2011! The Rich Internet Application Conference, August 6th and 7th � Rockville, MD http://www.riacon.com RIACon is the DC area's newest Rich Internet application conference. This event will focus on developers interested in ColdFusion, Flex/ActionScript, JavaScript,

Re: ColdFusion 9 64-bit Image Manipulation

2011-07-29 Thread Matt Williams
Yes, try the built-in functions in CF. Our 32-bit apps use imagecr3, which I believe has a 64-bit version in beta. Our 64-bit apps use imagemagick. -Matt On Thu, Jul 28, 2011 at 3:03 PM, Pete Freitag p...@foundeo.com wrote: Lots of image functions were built into ColdFusion starting with

Re: Passing a Ref_cursor to Oracle Stored procedure

2011-07-29 Thread Dave Smith
thanks guys. appreciate the response. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

SOT, JSON web services

2011-07-29 Thread Dan Baughman
Hi List, I know there are tons of tools out there that will take a WSDL and spit out soap packets that you can simply plug your actual variable values into, but doesnt anyone know of anything like that for JSON? I've got a handlful of schema XML's which are part of a WSDL for a JSON web service

cfspreadsheet question

2011-07-29 Thread fun and learning
Hi All - In coldfusion 8, we use cfcontent and html to display data in excel, and a save dialog box would be shown. In coldfusion 9, is it possible to show save dialog box when using cfspreadsheet? ~| Order the Adobe

Re: SOT, JSON web services

2011-07-29 Thread Raymond Camden
Are you asking for a tool to _format_ JSON? Not quite sure what you mean here. On Fri, Jul 29, 2011 at 3:24 PM, Dan Baughman dan.baugh...@gmail.com wrote: Hi List, I know there are tons of tools out there that will take a WSDL and spit out soap packets that you can simply plug your actual

Re: cfspreadsheet question

2011-07-29 Thread Leigh
save dialog box would be shown Triggering a save as dialogue with cfheader can be used with any file type. Just grab the binary of your spreadsheet and feed them into cfcontent's variable attribute. cfset sheetBinary = SpreadsheetReadBinary(yourSpreadSheetObject) cfheader

Re: SOT, JSON web services

2011-07-29 Thread Dan Baughman
Well its kind of an odd scenario. I've been given a schema and WSDL for a web service, but the schema and WSDL are in XML, but the web service is expecting to receive request in JSON. So, given a more typical web service, you'd get a WSDL and then a tool, like Altove XMLspy (or an Eclipse

Re: SOT, JSON web services

2011-07-29 Thread Bryan Stevenson
Not odd at allWSDLs are in XML, but don't confuse WSDL format with input/output formats It's like saying because CF is Java that it must output Javawhich of course is not true ;-) So any webservice will be in XML and it's inputs could be queries/XML strings/JSON

Re: SOT, JSON web services

2011-07-29 Thread Dan Baughman
Thanks for the suggestions. I searched down a similar path - perhaps just converting the XML schemas to JSON or something would avoid the typing. But I heartily disagree with you about the WSDL being in XML and the service itself dealing in JSON being common. I would expect the service to be