如何从Domino Java代理安排Xagent? [英] How to schedule an Xagent from a Domino Java agent?

查看:225
本文介绍了如何从Domino Java代理安排Xagent?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试通过从预定的Java代理触发来使Xagent按计划运行。

Trying to get an Xagent to run on schedule by triggering from a scheduled Java agent.

以下是我的xagentmail.xsp的代码,它只是向我发送一个电子邮件:

The following is the code for my xagentmail.xsp which simply sends me an email:

<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" rendered="false">
 <xp:this.beforePageLoad><![CDATA[#{javascript:
// test send mail
doc = database.createDocument() ;
doc.replaceItemValue("Form", "memo");
doc.replaceItemValue("Subject", " from xagentmail.xsp");
doc.replaceItemValue("SendTo", "PDella-Nebbia@testdomain.com");
doc.send();

}]]></xp:this.beforePageLoad>
</xp:view>

使用Devin Olson博客中描述的SSL-ENCRYPTED连接方法,计划的Xagents ,我创建了以下计划的Domino Java代理:

Using the SSL-ENCRYPTED connection approach described in Devin Olson's blog, Scheduled Xagents, I created the following scheduled Domino Java agent:

import java.io.BufferedReader; 
 import java.io.BufferedWriter; 
 import java.io.InputStreamReader; 
 import java.io.OutputStreamWriter; 
 import java.net.Socket; 

 import javax.net.ssl.SSLSocketFactory; 

 import lotus.domino.AgentBase; 

 public class JavaAgent extends AgentBase { 
 // Change these settings below to your setup as required. 
 static final String hostName = "server1.testdomain.com"; 
 static final String urlFilepath = "/test/poidemo.nsf/xagentmail.xsp"; 
 static final int sslPort = 443; 


 public void NotesMain() { 
   try { 
     final SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault(); 
     final Socket socket = factory.createSocket(JavaAgent.hostName, JavaAgent.sslPort); 

     final BufferedWriter out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); 
     final BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream())); 

     final StringBuilder sb = new StringBuilder(); 
     sb.append("GET "); 
     sb.append(JavaAgent.urlFilepath); 
     sb.append(" HTTP/1.1\n"); 
     final String command = sb.toString(); 

     sb.setLength(0); 
     sb.append("Host: "); 
     sb.append(JavaAgent.hostName); 
     sb.append("\n\n"); 
     final String hostinfo = sb.toString(); 

     out.write(command); 
     out.write(hostinfo); 
     out.flush(); 

     in.close(); 
     out.close(); 
     socket.close(); 

   } catch (final Exception e) { 
     // YOUR_EXCEPTION_HANDLING_CODE 
   } 
 } 
 } 

当我在浏览器中输入我的xagentmail.xsp的URL时,我按预期收到邮件。

When I enter the URL in a browser to my xagentmail.xsp I get mail as expected.

但是我的预定Java代理没有触发Xagent发送邮件。

But my scheduled Java agent is not triggering the Xagent to send the mail.

我确实设置了匿名使用代理和xagent访问应用程序的Reader。我在服务器上也有限制和非限制权限。

I did set the Anonymous access to Reader for the application with both the agent and xagent. I also have restricted and non-restricted privileges on the server.

任何想法?

推荐答案

我使用以下方法很有效:我使用HttpURLConnection而不是BufferedWriter,我在端口80上使用localhost来交谈直接在服务器本地。

I use the following approach which works great: I use HttpURLConnection instead of a BufferedWriter and I use localhost on port 80 to talk directly with the server locally.

这是我的代理商代码:

import lotus.domino.AgentBase;
import lotus.domino.Session;

public class JavaAgent extends AgentBase {

    @Override
    public void NotesMain() {
        try {
            final String xpageName = "demo";

            Session session = getSession();
            dk.fmcgsolutions.XAgent.run(session.getAgentContext(), xpageName);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

这里是XAgent类代理使用:

And here's the XAgent class that the agent uses:

package dk.fmcgsolutions;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

import lotus.domino.AgentContext;

public class XAgent {

    public static void run(AgentContext agentContext, String xpageName) {

        try {

            String dbPath = agentContext.getCurrentDatabase().getFilePath();
            String url = "http://localhost/" + dbPath + "/" + xpageName + ".xsp";

            System.out.println("Starting " + xpageName + " in database " + dbPath);

            URL xPageURL = new URL(url);
            HttpURLConnection conn = (HttpURLConnection) xPageURL.openConnection();

            conn.connect();

            switch (conn.getResponseCode()) {
            case HttpURLConnection.HTTP_OK:
                // read from the urlconnection via the bufferedreader
                BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                String line;
                while ((line = bufferedReader.readLine()) != null) {
                    System.out.println("Response: " + line);
                }
                bufferedReader.close();

                break;
            case HttpURLConnection.HTTP_INTERNAL_ERROR:
                System.out.println("Interal server error while running");
                break;
            default:
                System.out.println("An error occurred: " + conn.getResponseCode());
                System.out.println("Error message: " + conn.getResponseMessage());
                break;
            }

            conn.disconnect();

            System.out.println("Finished " + xpageName + " in database " + dbPath);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

代理需要运行运行时安全级别2.

The agent needs to run with runtime security level 2.

这篇关于如何从Domino Java代理安排Xagent?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆