如何使用 WLST 查找邮件会话对象

发布于 2024-11-07 21:23:31 字数 257 浏览 0 评论 0原文

我有两个 WLST 脚本:第一个创建一个新的邮件会话,执行如下操作:

fooMailSession = cmo.createMailSession('FooMailSession')
fooMailSession.setJNDIName('mail/FooMailSession')
(...)

在另一个脚本中,我想删除/删除之前创建的邮件会话 - 但是我如何才能安全地访问该对象以及什么是去除方法?

感谢您的回答。

I have two WLST-Scripts: the first creates a new Mail-Session doing something like this:

fooMailSession = cmo.createMailSession('FooMailSession')
fooMailSession.setJNDIName('mail/FooMailSession')
(...)

In the other script I want to remove/delete the earlier created Mail Session - but how can I get securely access to the object and what is the method to remove it?

Thanks for your answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咽泪装欢 2024-11-14 21:23:31

您可以使用lookupMailSession(字符串名称)

mailSession = cmo.lookupMailSession('FooMailSession')
cmo.destroyMailSession(mailSession)

You can use lookupMailSession(String name)

mailSession = cmo.lookupMailSession('FooMailSession')
cmo.destroyMailSession(mailSession)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文