Hi, anybody know why I have this error in NetDebugger console?

exceptionStack (Array):
0 (Object):
  code (Number): 256
description (String): The file {ClkManager.php} exists and was included correctly but a class by that name could not be found in that file. Perhaps the class is misnames or you are running into a case-sensitivity issue, or the class exists but contains syntax errors. details (String): c:\wamp\www\seeuat\htdocs\amfphp\actions\ClassLoaderAction.php
  level (String): User Error
  line (Number): 114

My ClkManager.php is like this:

<?
class ClkManager
{
 function ClkManager(){
    $this->methodTable = array(
       "getSrvTime" => array(
          "access" => "remote",
          "description" => "es un test",
          "returns" => ""
       )
    );
 }
function getSrvTime(){
    return date("G:i:s");
 }
}


?>

_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to