I'm getting this error when I try to access a CFC.
********************************************************
HTTP ERROR 403

Problem accessing /practice/oop/greetings.cfc. Reason:

    Forbidden
********************************************************

All I'm trying to do is run a simple CFC.

component
        displayname="greetings"
        {
                function sayHello() {
                // the CFML code for the method will go here
                var strHelloMessage='Hello World';
                return strHelloMessage;
                }
        }

-- 
official tag/function reference: http://openbd.org/manual/
 mailing list - http://groups.google.com/group/openbd?hl=en

Reply via email to