无法在Symfony2 websocket连接上调用函数

时间:2014-06-10 10:42:56

标签: symfony websocket phpwebsocket ratchet

首先使用JDare / ClankBundle 我正在按照这些指令从客户端调用一个函数 https://github.com/JDare/ClankBundle/blob/master/Resources/docs/RPCSetup.md

我一直在控制台“RPC错误[object Object] undefined”

上得到这个错误

我注意到如果我拼错了notify_func函数并不重要,它仍会抛出相同的错误。 我不知道我做错了什么,但我认为这个功能没有找到?

  

这是客户端(Twig)

websocket成功连接

  <script type="text/javascript">
        var myClank = Clank.connect('ws://localhost:9999');

        myClank.on("socket/connect", function(session){
            alertify.success("Connected to websocket server");

            //this will call the server side function "Sample::addFunc"
            session.call("notify/notify_func",[2,5])
                .then(  //using "then" promises.

                    function(result) //the function for a valid result
                    {
                        alertify.log("RPC Valid! "+result);
                    },
                    function(error, desc) // the function to handle an error
                    {
                        alertify.log("RPC Error"+" "+error+" "+desc);
                    }

                );
        });

        myClank.on("socket/disconnect", function(error){
            alertify.error("Disconnect for "+error.reason+" with code "+error.code);
        });
    </script>

这是服务器端

    <?php
namespace Gabriel\NotificationsBundle\RPC;
use Ratchet\ConnectionInterface as Conn;

class PostCommentNotificationService
{
    public function notifyFunc(Conn $conn,$params)
    {
        return array("result"=>array_sum($params));
    }
}

这是配置

#services.yml
services:
     notifications.newcommentpost:
       class: Gabriel\NotificationsBundle\RPC\PostCommentNotificationService
#config.yml
     # Clank Configuration
clank:
    web_socket_server:
        port: 9999       #The port the socket server will listen on
        host: localhost   #(optional) The host ip to bind to
    rpc:
       -
        name: "notify" #Important! this is the network namespace used to match calls to this service!
        service: "notifications.newcommentpost" #The service id.

1 个答案:

答案 0 :(得分:0)

我有一个非常类似的问题。

我发现停止并重新启动内置的websocket服务器解决了这个问题。在websocket代码上完成的每个修改都需要重新启动websocket服务器才能进行这些更改......

php app/console clank:server