Maximo JS automation script: “importPackage” is not defined

佐手、 提交于 2020-01-06 04:57:25

问题


I'm attempting to use a JS script from Maximo 76 Scripting Features (PDF download).

importPackage(java.util)
importPackage(Packages.psdi.server)
var ctx = new HashMap();
ctx.put("url","http://localhost:7001/maximo/oslc/script/countryapi?_lid=wilson&_lpwd=wilson");
service.invokeScript("LIB_HTTPCLIENT",ctx);
var jsonResp = ctx.get("response");
var countries = JSON.parse(jsonResp);

When I execute the script I get this error:

ReferenceError: "importPackage" is not defined in <eval> at line number 1

Why am I getting this error?


回答1:


Add this to the beginning of the script:

load("nashorn:mozilla_compat.js");

Details:

From Automation Scripts: Compatibility with Maximo 7.6.1:

...the Rhino JavaScript engine was replaced with Nashorn (V8). It turns out that Nashorn does not permit the import of whole Java packages which sheds light on why I was getting the error.

Add the following line to the beginning of your script:

load("nashorn:mozilla_compat.js");

This article references how to properly construct your script to take advantage of the new script engine.

And from Maximo 76 Scripting Features (PDF download).

Java 8 and Nashorn engine:

Some of the above example is written using the jdk 7 based rhino js engine. In jdk 1.8, the rhino engine has been replaced with the Nashorn (V8) engine. For example the importPackage command will not work there. You would need to use the JavaImporter function to do the same in Nashorn. You can look into this stackoverflow link for more details on what all changed from Rhino to Nashorn that may impact your script code in js:

http://stackoverflow.com/questions/22502630/switching-from-rhino-to-nashorn




回答2:


According to Rhino Migration Guide you can try something like this:

var HashMap = Java.type("java.util.HashMap");

because it works like an import, you can use it afterwards:

var ctx = new HashMap();


来源:https://stackoverflow.com/questions/57537142/maximo-js-automation-script-importpackage-is-not-defined

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!