Try OpenEdge Now
skip to main content
Migrating to OpenEdge 11.7
Migrating OpenEdge Business Process Management : Savvion 7.6.X/8.0 to Progress OpenEdge 11.3.0 Migration Process : Migrating to OpenEdge 11.3.0 : Custom JSP forms migration : Migrating BPM Studio 7.6.3 to Progress Developer Studio for OpenEdge 11.3.0
 
Migrating BPM Studio 7.6.3 to Progress Developer Studio for OpenEdge 11.3.0
To migrate custom JSPs to OpenEdge 11.3.0, you must edit the JSPs as instructed in the following tables:
Note: If you copy-paste the code from this document into your custom JSP, you must ensure that the code does not contain erroneous alignment and spacing, which can result in syntax errors or unsuccessful custom JSP migration.
Find and Replace...
With...
<html
xmlns:bizsolo="http://www.savvion.com/sbm/BizSolo"
xmlns:sbm="http://www.savvion.com/sbm"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:xalan="http://xml.apache.org/xalan"
xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
xmlns:sfe="http://www.savvion.com/sbm/sfe"
xmlns:c="http://java.sun.com/jstl/core">
<html
xmlns:bizsolo="http://www.savvion.com/sbm/BizSolo"
xmlns:sbm="http://www.savvion.com/sbm" xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:xalan="http://xml.apache.org/xalan"
xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
xmlns:sfe="http://www.savvion.com/sbm/sfe"
xmlns:c="http://java.sun.com/jsp/jstl/core">
function openDocAttWin( slotName,
sesID, ptname, piname, docurl,
docServer, readonly, ismultiline,
appendwith, isStart )
function openDocAttWin( slotName,
sesID, ptname, piname, docurl,
docServer, readonly, ismultiline,
appendwith, isStart, fiid )
<%@ taglib
uri="http://java.sun.com/jstl/core"
prefix="c" %>
<%@ taglib
uri="http://java.sun.com/jsp/jstl/core"
prefix="c" %>
<%@ taglib
uri="http://java.sun.com/jstl/fmt"
prefix="fmt" %>
<%@ taglib
uri="http://java.sun.com/jsp/jstl/fmt"
prefix="fmt" %>
<bizsolo:link
rel="stylesheet"></bizsolo:link>
<bizsolo:link rel="stylesheet"
extJsVer="3"></bizsolo:link>
formWidgetHandler = new
FormWidgetHandler(allWidgets,
{processName:'doctst5in763',adapletCache:
{'user':''}});
formWidgetHandler = new
FormWidgetHandler(allWidgets,
{processName:'doctst5in763',adapletCache:
{'user':''}}, '
<%=request.getParameter(BizSoloRequest.
BSS_FIID)%>');
}catch(e){}
}catch(e){return false;}
Find...
And add the following after it...
<%@ page
import="com.savvion.BizSolo.Server.
*,com.savvion.BizSolo.beans.*,com.
savvion.sbm.util.
DatabaseMapping,java.util.Vector,
java.util.Locale" %>
<%@ page
import="com.savvion.sbm.bizsolo.
util.session.*,java.net.*" %>
param += '&isPICreation=' + isStart;
param += '&fiid=' + fiid;
<input name="_ProcessTemplateName"
type="hidden"
value='<%=bean.getPropString("ptName")%>'>
<input name="<%=BizSoloRequest.BSS_FIID%>"
type="hidden"
value="<%=request.getParameter
(BizSoloRequest.BSS_FIID)%>">