我正在尝试创建代理并运行它。我创建了两个类,一个扩展AgentBase
,另一个是普通的主类。
我已经在第一个类中编写了代理的代码,并试图从第二个类中运行它。但我无法访问它。
我是一个完整的新手,任何指导都将不胜感激。
Agent
上课:
import lotus.domino.*;
import java.util.Vector;
import sun.management.Agent;
public class anagent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext =
session.getAgentContext();
// (Your code goes here)
System.out.println("I am an agent");
} catch(Exception e) {
e.printStackTrace();
}
}
Main
上课:
public static void main(String [] args) throws NotesException {
Session session = null;
Database db = null;
try {
session = NotesFactory.createSession(hostname,UserName, password);
} catch (NotesException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
boolean x = session.isValid();
System.out.println("success- "+x);
try {
db = session.getDatabase(null,"LotusDB2.nsf");
} catch (NotesException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(db.isOpen())
System.out.println("database open");
//Agent agnt = (Agent) a.firstElement();
//agnt.toString();}
//AgentContext agentContext = session.getAgentContext();
// db = agentContext.getCurrentDatabase();
Vector agents = db.getAgents();
//lotus.domino.Agent agent = new lotus.domino.Agent();
System.out.println("Agents in database:");
if(agents.size()>0) System.out.println("some agents found");
for (int i=0; i<agents.size(); i++)
{
lotus.domino.Agent agent = (lotus.domino.Agent)agents.elementAt(i);
答案 0 :(得分:2)
答案 1 :(得分:2)
当您说无法访问代理时,是否收到错误?您无需遍历代理程序集以查找第一个代理程序 - 您可以使用GetAgent(“agentname”),然后使用Agent.run()。如果您的Java代码似乎正在查找代理并运行它,但没有任何反应,请检查服务器上的log.nsf数据库是否存在可能的错误
答案 2 :(得分:1)
您已在Notes代理中定义了两个主要入口点,但是在Notes代理的上下文中,只会执行NotesMain。静态main方法只会在notes代理的上下文之外触发,例如在Netbeans或Eclipse等第三方IDE中运行时。
要使代码从Notes代理的上下文运行,只需修改NotesMain入口点即可完成所需的所有工作。
也..对sun.management.Agent的引用是什么?
import lotus.domino.*;
import java.util.Vector;
public class AnAgent extends AgentBase {
public void NotesMain() {
private Session m_session;
private AgentContext m_agentContext;
private Database m_db;
try {
m_session = getSession();
m_agentContext = m_session.getAgentContext();
// (Your code goes here)
System.out.println("I am an agent");
m_db = m_session.getDatabase("","LotusDB2.nsf");
if(m_db.isOpen())
System.out.println("database open");
Vector agents = m_db.getAgents();
if(agents != null && agents.size()>0) {
System.out.println("some agents found");
for (int i=0; i<agents.size(); i++) {
lotus.domino.Agent agent = (lotus.domino.Agent)agents.elementAt(i);
// whatever it is you are trying to do here...
}
}
} catch(Exception e) {
e.printStackTrace();
}
}