添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
安静的黄豆  ·  【esp32 ...·  1 月前    · 
稳重的芹菜  ·  django:restframework定义 ...·  2 月前    · 

I’m trying to use the Generic Javascript View node to create a login screen for individuals using KNIME Server, The reason for this is that we want to have an added layer of security over and above KNIME Server login due to some sensitive data.

In order t create accounts, we’re using md5 to hash the users’ password using the md5.js script. While all works well locally, the script fails when running on the server. We’ve tries saving the file locally and referencing it locally, however we haven’t had any luck.

We’re loading the script as follows:

var html = '<html>'
html += '<head>'
html +='<meta name="robots" content="noindex, nofollow">'
html +='<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>'
html +='<script type="text/javascript" src="js/login.js"></script>'
html +='<script type="text/javascript" src="C://Users/[user]/Desktop/md5.js"></script>'
html +='<script type="text/javascript" src="C://Users/[user]/Desktop/aes.js"></script>'
html +='</head>'

Thanks for any help,
Thomas