关于在lotusscript代理中获取指定url的html内容,该怎么处理

关于在lotusscript代理中获取指定url的html内容
查帮助里,似乎是可以用GetDocumentByURL来获得,但是帮助里说的不是很明白,我建了一个数据库,按照例子试了试,后台报告错误:Notes error: The WEB Navigator retrieval process is not running。不知道哪位高人遇到过?

或者有没有其他方法获取一个http://xxx.xxx.xxx/xxx/xxx.htm页面的html代码

------解决方案--------------------
官方解释如下:

The error "The Web Navigator retrieval process is not running" is related to the Location document "Internet browser" and "Retrieve/open pages" settings. 

If the browser is set to "Notes" or "Notes with Internet Explorer":

If "Retrieve/open pages" is set to "work off-line," then reset it to "from Notes workstation" or "from InterNotes server."
If "Retrieve/open pages" is set or reset to "From InterNotes Server," be sure the InterNotes server entry on the Servers tab is set correctly.

If the browser is set to "Netscape Navigator" or "Microsoft Internet Explorer":

Temporarily set the field to "Notes."
Set "Retrieve/open pages" to "from Notes workstation."
Set the browser field back to "Netscape Navigator" or "Microsoft Internet Explorer" as desired.

不知道你想获取什么内容,如果是想获取html返回值,可以在前台通过xmlhttp去获取,如果想去获取表单的设计,可以通过notesstream这个类去获取。
------解决方案--------------------
可以用http service来获取的
------解决方案--------------------
二楼解释的很清楚。如果要取页面上的值,用Ajax技术比较好;如要整个页面,可以用notesstream试试。