我们被要求构建一个基于Domino服务器的数据库,该数据库与远程非Domino服务器交换数据。可以使用webservices连接远程服务器。
使用R8.5.3在Domino中创建RESTful服务看起来很简单:Internet上的Domino Data Service上有一些非常有趣的文章。学习this page肯定会帮助我创建连接的一端。
现在代理中的消费部分。我们之前做过一次,前一段时间,然后我们使用了普通的HTTP URL和一个简单的GetDocumentByURL。它并不完美,但它确实有效。
但这是在Domino代理中使用Web服务的最佳方式吗?这是一个Linux环境,所以我不能使用MS-objects。我可以调用一些标准库,最好是在LotusScript中吗?或者有没有办法在代理中使用一些XPages控件?
感谢您的建议!
答案 0 :(得分:4)
[编辑]来自breakingpar
的示例要放在Java库中的Java代码,名为GetHTML:
import java.io.*;
import java.net.*;
public class GetHTML {
public String getHTML(String urlToRead) {
URL url; // The URL to read
HttpURLConnection conn; // The actual connection to the web page
BufferedReader rd; // Used to read results from the web page
String line; // An individual line of the web page HTML
String result = ""; // A long string containing all the HTML
try {
url = new URL(urlToRead);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
result += line;
}
rd.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}
并在Lotusscript中使用它:
Uselsx "*javacon"
Use "GetHTML" ' Java library
Const myURL = "http://www.breakingpar.com"
Dim js As JAVASESSION
Dim getHTMLClass As JAVACLASS
Dim getHTMLObject As JavaObject
Dim html As String
Set js = New JAVASESSION
Set getHTMLClass = js.GetClass("GetHTML")
Set getHTMLObject = getHTMLClass.CreateObject
html = getHTMLObject.getHTML(myURL)
我用这个来通过这项服务填充莲花中的国家/地区:http://ws.geonames.org/countryInfo?
您可以使用Java代理来使用其余服务: Is there an alternative to using the LotusScript GetDocumentByURL method
以下代码是从技术说明中复制的。如果请求是更大脚本的一部分,则可以在LS2J
中包装HTTP请求import lotus.domino.*;
import java.net.*;
import java.io.*;
import java.text.*;
import java.util.*;
import java.math.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
Database db = agentContext.getCurrentDatabase();
URL ibmURL = new URL(" http://finance.yahoo.com/q?s=IBM&d=t");
BufferedReader bin = new BufferedReader(new InputStreamReader(ibmURL.openStream()));
String line;
StringBuffer sb = new StringBuffer();
while ((line = bin.readLine()) != null) {
sb.append(line);
}
String ibmString = sb.toString();
Document newNotesDoc = db.createDocument();
newNotesDoc.replaceItemValue("Form", "IBMForm");
newNotesDoc.replaceItemValue("WebPageUS", ibmString);
newNotesDoc.computeWithForm(true, false);
newNotesDoc.save(true, true);
String ibms = newNotesDoc.getItemValueString("QuoteUS");
System.out.println("IBM Raw String is " + ibms);
newNotesDoc.recycle();
NumberFormat n = NumberFormat.getCurrencyInstance(Locale.US);
BigDecimal d = new BigDecimal(ibms);
double ibmd = d.doubleValue();
String ibm = n.format(ibmd);
System.out.println("IBM Currency is " + ibm);
SimpleDateFormat formatter = new SimpleDateFormat("EEEE, MMMM dd, yyyy hh:mm:ss a");
Date currentTime_1 = new Date();
String dateString = formatter.format(currentTime_1);
System.out.println("Formatted date is " + dateString);
String displayText = "IBM stock price as of " + dateString + " NYSE US " + ibm;
System.out.println("Display text is " + displayText);
db.recycle();
} catch (Exception e) {
e.printStackTrace();
}
}
}