Tagged Questions
The jinterface tag has no wiki summary.
5
votes
3answers
472 views
Java to Erlang messages
I'm making a application in Erlang, with a GUI in Java.
I've managed to establish a connection between the to languages, but now i need to (i guess) send a message from Java to Erlang, every time I ...
3
votes
1answer
68 views
Convert Erlang UTF-8 encoded string to java.lang.String
The Java node receives an Erlang string encoded in UTF-8. Its class type is OtpErlangString. If I simply do .toString() or .stringValue() the resulting java.lang.String has invalid codepoints ...
3
votes
2answers
298 views
Jinterface OtpNode initialization -name or -sname flag
When creating an OtpNode instance what kind of node is this? Is it like an erl -sname xxx or like an elr -name xxx ?
2
votes
4answers
561 views
Erlang JInterface - is OtpMBox thread-safe?
In my Java program, I create a OtpNode and a "named" OtpMBox. Whenever a message is received via this mbox, some time-consuming operation needs to be performed after which a reply message is sent ...