I'm trying to display data in Flash pulled from an Access database. I was
using the tutorial on the Data Connection Wizard and just entering my own
information. My web service connection works because it pulls up the right
functions from my .cfc and the Data Connection Wizard appears to work fine but
when I test the movie, no data shows up. I tested the .cfc by creating a
dynamic table in a .cfm and it works perfectly. Here's the cffunction I'm
trying to use
<!-- Get all the Guide info for guides in the SW Region -->
<!-- Used in directory.fla -->
<cffunction name="getSwGuides" access="remote" returntype="query">
<cfquery name="swGuides" datasource="guide" username="" password="">
SELECT *
FROM Profile
WHERE guideState = 'AZ'
OR guideState = 'NM'
OR guideState = 'OK'
OR guideState = 'TX'
</cfquery>
<cfreturn swGuides>
</cffunction>
Any ideas on what I'm doing wrong?
JessiBB - 22 Jun 2007 18:10 GMT
I'd also love suggestions on other ways to get data from Access to Flash. I
just need to find a way that works and I?m not picky. Although, I know my
options are limited because I don't know any code language.
JessiBB - 26 Jun 2007 14:03 GMT
Ok, now I've gotten it to the point where it's giving me this error message:
Error opening URL
"http://www.heritagefishingguides.com/frontend/direct.cfc?%5F%5Fjunk=%5Bobject+O
bject%5D"
But, the url I'm using in Web Services is
"http://www.heritagefishingguides.com/frontend/direct.cfc?wsdl"
Any help would be most appreciated.