They are all up and running with no errors.....
I see the blank white page,
I saw the login then the definitions.
All of the pages are up and running, where is this wrong?


<!--- Start the ColdFusion Component --->
<cfcomponent>

  <!--- :::Function: Retrieve List of Park TYPES (for DropDown)--->
  <cffunction name="getNewsCategories" access="remote" returnType="query">
      <CFQUERY NAME="q_NewsCategories" Datasource="boot">
          SELECT Distinct (Category)FROM news
                WHERE (Poweredby = 'moreover')
            ORDER BY Category  ASC
      </CFQUERY>
      <cfreturn q_NewsCategories>
  </cffunction>

  <!--- :::Function: Retrieve List of Parks --->
  <cffunction name="getCategoryName" access="remote" returnType="query">
      <cfargument name="CategoryName" type="string">
      <CFQUERY NAME="q_getCategoryName" Datasource="boot">
        SELECT Distinct (Category)FROM news
                WHERE (CategoryName = '#TRIM(Category)#')
            ORDER BY Category  ASC
      </CFQUERY>

      <cfreturn q_getCategoryName>
  </cffunction>


  <!--- :::Function: Retrieve Park Details --->
  <cffunction name="getCategoryDetails" access="remote" returnType="query">
      <cfargument name="thisCategoryDetail" type="string">

      <CFQUERY NAME="q_CategoryDetails" Datasource="boot">
        SELECT FeedURL FROM news
        WHERE FeedURL='#Category#'
      </CFQUERY>
    <cfreturn q_CategoryDetails>
  </cffunction>


</cfcomponent>



        <Yippykia>
    <Camilo Trevino>
    <Microsoft Certified System Engineer>
    <Comptia A+ Computer Technician>
    <ColdFusion Applications Developer>
</Yippykia>
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Sean A Corfield
Sent: Monday, June 14, 2004 6:48 PM
To: [EMAIL PROTECTED]
Subject: Re: [CFCDev] CF MX Component issues

On Jun 14, 2004, at 5:04 PM, Camilo Trevino wrote:
> Seems that I can not get the cold fusion MX to speak to my flash file.

Two things to check first:

> http://localhost:8500/flashservices/gateway

What does that URL show? You should get a blank page but no error (to
confirm Flash Remoting works on your server).

>   mNews= gatewayConnnection.getService("ver4_fla.mNews", this);

You also need to test this URL:

        http://localhost:8500/ver4_fla/mNews.cfc

That will prompt you to login (RDS or CF Admin password) and then
display the CFC's documentation.

        http://localhost:8500/ver4_fla/mNews.cfc?WSDL

If your CFC exists and has remote methods, that should display a web
service definition (XML).

Sean A Corfield -- http://www.corfield.org/blog/

"I'm trying to ban e-mail attachments.� I just want an ASCII e-mail.
  If you want to show me something, put it in a Web page, publish it,
  give me the URL, and I'll look at it.� That's the new model."
-- Scott McNealy, CEO of Sun Microsystems, in May 1997 Upside magazine.

----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev'
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

An archive of the CFCDev list is available at
www.mail-archive.com/[EMAIL PROTECTED]



----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' 
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]

Reply via email to