在單一伺服器上主控兩個AEM Forms工作區執行個體 hosting-two-aem-forms-workspace-instances-on-one-server

AEM Forms的預設安裝與設定只允許伺服器上有一個AEM Forms工作區。 不過,您可能需要在單一AEM Forms伺服器上託管兩個不同的AEM Forms工作區例項。 這兩個執行個體可透過不同的URL存取。

AEM Forms管理員可自訂工作區,以建立兩個不同的URL,並讓兩個工作區可在同一部伺服器上使用。 在這篇自訂文章中,您可以假設兩個工作區可在https://'[server]:[port]'/lc/wshttps://'[server]:[port]':/lc/ws2存取。

請依照下列步驟設定AEM Forms工作區。

  1. 在伺服器上安裝AEM Forms工作區的開發套件。 請參閱開發封裝以取得建立它的指示。

  2. 透過存取https://'[server]:[port]'/lc/crx/de/index.jsp,以系統管理員身分登入CRXDE Lite。

  3. 在/content處複製節點ws,並在/content處貼上。 將節點重新命名為ws2。 按一下​ 全部儲存。 在此節點的屬性中,將sling:resourceType的值變更為ws2。 按一下​ 全部儲存

  4. 從/libs複製資料夾ws並貼到/apps。 將資料夾重新命名為ws2。 按一下​ 全部儲存

  5. GET.jsp/apps/ws2中,進行下列程式碼變更。 取代下列專案

    code language-html
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Workspace Next</title>
        <meta http-equiv="refresh" content="0;URL='/lc/libs/ws/index.html'" /><html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Workspace Next</title>
        <meta http-equiv="refresh" content="0;URL='/lc/libs/ws/index.html'" />
    

    ,程式碼如下

    code language-html
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <title>Workspace Next</title>
        <meta http-equiv="refresh" content="0;URL='/lc/apps/ws2/index.html'" />
    
  6. registry.js/apps/ws2/js中,變更範本路徑以參考位於/apps/ws2/js/runtime/templates的範本。 取代下列程式碼

    code language-css
    "tasklist" : {
    "name": "tasklist",
    "path": "tasklistview",
    "model": "tasklist",
    "template": "text!/lc/libs/ws/js/runtime/templates/tasklist.html",
    "utility": "utility",
    "view": "taskview",
    "errorModel": null
    }
    

    ,程式碼如下

    code language-css
    "tasklist" : {
    "name": "tasklist",
    "path": "tasklistview",
    "model": "tasklist",
    "template": "text!/lc/apps/ws2/js/runtime/templates/tasklist.html",
    "utility": "utility",
    "view": "taskview",
    "errorModel": null
    }
    
  7. userinfo.js/apps/ws2/js/runtime/models/apps/ws2/js/runtime/views中,將字串/lc/content/ws變更為lc/content/ws2

  8. /apps/ws2/js/runtime/services/service.js中,將getLocalizationData函式中的路徑變更為指向/lc/apps/ws2/Locale.html

  9. 若要參考新Workspace的pdf.html,請在/apps/ws2/js/runtime/views/forms/pdftaskform.js中變更pdf.html的路徑。

  10. 若要參考新Workspace的pdf.html,請在/apps/ws2/js/runtime/templates變更startprocess.htmltaskdetails.htmlprocessinstancehistory.html中的pdf.htmlWsNextAdapter.swf路徑。

  11. 複製/etc/map/ws資料夾並貼到/etc/map。 將新資料夾重新命名為ws2。 按一下「儲存全部」。

  12. ws2的屬性中,將sling:redirect的值變更為content/ws2

  13. sling:match的值變更為^[^/\||]/[^/\||]/ws2$

recommendation-more-help
19ffd973-7af2-44d0-84b5-d547b0dffee2