3

OtpNodeインスタンスを作成するとき、これはどのようなノードですか?それはerl-snamexxxのようなものですか、それともelr -name xxxのようなものですか?

4

2 に答える 2

2

「-sname」として動作しています。少なくとも次の例によれば。

TryOTP.java (インポートは意図的に省略されています)

public class TryOTP {
    public void start() {
        OtpNode node = null;

        try {
            node = new OtpNode("javambox@localhost", "zed"); // name, cookie
        } catch (IOException ex) {
            System.exit(-1);
        }

        System.out.println("Connected to epmd...");

        if (node.ping("shell@localhost", 2000)) {
            System.out.println("shell@localhost is up.");
        } else {
            System.out.println("shell@localhost is down");
        }

        OtpMbox mbox = node.createMbox("mbox");

        while (true) {

            OtpErlangObject o = null;
            try {
                o = mbox.receive();
            } catch (OtpErlangDecodeException ex) {
                System.out.println("Received message could not be decoded: " + ex);
                continue;
            } catch (OtpErlangExit ex) {
                System.out.println("Remote pid " + ex.pid() + " has terminated.");
                continue;
            }
            System.out.println("Received: " + o);
        }
    }

    public static void main(String[] args)
    {
        System.getProperties().setProperty("OtpConnection.trace", "3");
        new TryOTP().start();
    }

}

Erlang シェルの実行:

erl -sname shell@localhost -setcookie zed

(shell@localhost)1> net_adm:ping(javambox@localhost).
pong
(shell@localhost)2> {mbox, javambox@localhost} ! hello. 
hello
于 2009-10-20T16:42:25.473 に答える
1

Java コードから、-name と -sname の両方で開始された Erlang ノードに接続できます。それがトリッキーであるのは、他の方向だけです (そして、私はそれに対する答えを持っていません)。したがって、Java 側から接続できれば問題は解決します。

于 2009-11-17T09:57:07.300 に答える