uaexception:status = bad_sessessclosed,消息=会话由客户关闭
当我使用米洛时,发生了一些事情,我不知道为什么会发生:
uaexception:status = bad_sessessclosed,消息=会话已关闭 由客户。在 org.eclipse.milo.opcua.sdk.client.session.sessionfsmfactory.lambda $ null $ 1(sessionfsmfactory.java:159) 在 java.util.concurrent.threadpoolexecutor.runworker(threadpoolexecutor.java:1142) 在 java.util.concurrent.threadpoolexecutor $ worker.run(threadpoolexecutor.java:617) 在java.lang.thread.run(thread.java:745)
Something happened when I used Milo,I do not know why it happened:
UaException: status=Bad_SessionClosed, message=The session was closed
by the client. at
org.eclipse.milo.opcua.sdk.client.session.SessionFsmFactory.lambda$null$1(SessionFsmFactory.java:159)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您正在尝试获得会话,但是没有什么叫做
sessionfsm :: Opensession
。您必须共享一些代码,因为如果您使用opcuaclient
,通常是由SDK完成的。您是否调用
opcuaclient ::连接
在使用之前?It looks like you’re trying to get the Session but nothing has called
SessionFsm::openSession
. You’ll have to share some code, because this is normally done by the SDK if you are usingOpcUaClient
.Did you call
OpcUaClient::connect
before using it?