Adative form access issue using Publish URL | Community
Skip to main content
Level 5
August 25, 2023
Solved

Adative form access issue using Publish URL

  • August 25, 2023
  • 1 reply
  • 443 views

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

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

@varaande : 

 

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

1 reply

SivakumarKanoori
Community Advisor
SivakumarKanooriCommunity AdvisorAccepted solution
Community Advisor
August 25, 2023

@varaande : 

 

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

Thanks,Siva