Does anyone display HTML5 rendered forms in a web app on a non-adobe server? | Community
Skip to main content
Level 3
January 10, 2022
Solved

Does anyone display HTML5 rendered forms in a web app on a non-adobe server?

  • January 10, 2022
  • 2 replies
  • 848 views

We have a ASP.Net web running in IIS on one server that calls the forms service to render the forms as pdf documents.  We are trying to replace that with calls to OSGi to render the forms in HTML5.  We've dealt with the permissions issues and the CORS issue but the HTML contains the following partial urls that are meant to run on the aem server but try to run on the IIS server:

<script type="text/javascript" src="/etc.clientlibs/fd/xfaforms/clientlibs/I18N/en_US.js"></script>
<script type="text/javascript" src="/etc.clientlibs/clientlibs/granite/jquery/granite/csrf.js"></script>
<script type="text/javascript" src="/etc.clientlibs/fd/xfaforms/clientlibs/profile.js"></script>

Does anyone know how to get around this so the web app doesn't have to run in AEM?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

workflowuserAdobe EmployeeAccepted solution
Adobe Employee
January 10, 2022
Level 2
January 11, 2022

Hi @gphillips58 - Can we write a URL rewrite rule such that request to ^/etc.clientlibs(.*) would redirect to AEM server? (Consider this as a workaround)