Hi Team,
I had created the Adaptive form(AF) able to access the preview as html but not able to access the using publish URL
Author able to access
http:hostname:4502/content/dam/formsanddocuments/testing/testform/jcr:content?wcmmode=disabled
but not able access using publish URL:
http://hostname:4503/content/dam/formsanddocuments/testing/testform (but able to access using http://hostname:4503/content/dam/formsanddocuments/testing/testform/jcr:content not sure why need to use /jrc:content)
author
http://hostname:4502/content/dam/formsanddocuments/adobe-gov-forms/xdp/WeGovForm.xdp/jcr:content
publish url not able to access
http://localhost:4503/content/dam/formsanddocuments/adobe-gov-forms/xdp/WeGovForm.xdp/jcr:content
or
http://localhost:4503/content/dam/formsanddocuments/adobe-gov-forms/xdp/WeGovForm.xdp
Regards
Vara
Solved! Go to Solution.
Views
Replies
Total Likes
If your publisher is behind the Dispatcher , you need to check the filter section in dispatcher as we will deny everything by default and allow only what we need.
So as this extension of your url is .xdp , check your dispatcher configurations as are you allowing it or not.
like below config, we will allow only what we need.
# Enable extensions in non-public content directories, using a regular expression
/0041
{
/type "allow"
/extension '(css|gif|ico|js|png|swf|jpe?g)'
}
Thanks ,
Siva
If your publisher is behind the Dispatcher , you need to check the filter section in dispatcher as we will deny everything by default and allow only what we need.
So as this extension of your url is .xdp , check your dispatcher configurations as are you allowing it or not.
like below config, we will allow only what we need.
# Enable extensions in non-public content directories, using a regular expression
/0041
{
/type "allow"
/extension '(css|gif|ico|js|png|swf|jpe?g)'
}
Thanks ,
Siva
Views
Likes
Replies