Calling Genie program from Anonymous ProfoundUI program
Posted: Tue Sep 03, 2013 7:11 am
We are trying to call a RPGLE program from a third party Document and Imaging system called Onbase http://www.hyland.com/.
This product will launch one of our claim programs on the i-Series. We have developed a new Anonymous ProfoundUI program to call one of our 5250 programs, but the program displays an error messsage "CPF4103" when trying to open a 5250 display file.
CPF4103: Device *REQUESTER not found while opening file HUT2050D in library
GCPDN100.
We have defined a new Anonymous ProfoundUI program called HWF3100 as defined below. Two parameters are passed to this program from our document imaging workflow system as shown below:
Our start HTML page looks like this:
How do we get the ProfoundUI program to call a Genie program?
If I include the genie.js into the start HTML page we get another error everytime a button is pressed on the screen. (The session has timed out)
Any advice on how to get this work would be greatly appreciated
This product will launch one of our claim programs on the i-Series. We have developed a new Anonymous ProfoundUI program to call one of our 5250 programs, but the program displays an error messsage "CPF4103" when trying to open a 5250 display file.
CPF4103: Device *REQUESTER not found while opening file HUT2050D in library
GCPDN100.
We have defined a new Anonymous ProfoundUI program called HWF3100 as defined below. Two parameters are passed to this program from our document imaging workflow system as shown below:
Code: Select all
https://XXXXXXX.euro.intl.cigna.com:8081/profoundui/auth/start?pgm=HMORC/HWF3100&p1=123441111&l1=20&p2=RUS521512111.tiff&l2=24
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<link href="/profoundui/proddata/css/profoundui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/profoundui/proddata/js/runtime.js"></script>
<title>Profound UI</title>
<script type="text/javascript">
window.onload = function() { pui.start() };
</script>
</head>
<body>
<div id="pui">
</div>
</body>
</html>
If I include the genie.js
Code: Select all
<script type="text/javascript" src="/profoundui/proddata/js/genie.js"></script>
Any advice on how to get this work would be greatly appreciated