Skip to main content
12-Amethyst
June 23, 2020
Solved

Disable Authentication for endpoint

  • June 23, 2020
  • 1 reply
  • 2276 views

Is there a way to disable the authentication for a single endpoint (custom JSP).

Best answer by hlafkir

oups sorry, the article is internal.

 

Here is the solution : 

 

  1. Add this entry in the file Windchill_11.0\HTTPServer\conf\conf.d\30-app-Windchill-Auth.conf
 
<LocationMatch ^/+Windchill/+<directory path>/+<filename>.jsp(;.*)?>
  Satisfy Any
  Allow from all
</LocationMatch>
 

2. Restart Apache

1 reply

5-Regular Member
June 23, 2020

Hi Alex, hope you are fine.

 

Did you checked this article https://www.ptc.com/en/support/article?n=CS273315 available in our kownledge base ? 

Hicham

hlafkir5-Regular MemberAnswer
5-Regular Member
June 23, 2020

oups sorry, the article is internal.

 

Here is the solution : 

 

  1. Add this entry in the file Windchill_11.0\HTTPServer\conf\conf.d\30-app-Windchill-Auth.conf
 
<LocationMatch ^/+Windchill/+<directory path>/+<filename>.jsp(;.*)?>
  Satisfy Any
  Allow from all
</LocationMatch>
 

2. Restart Apache

1-Visitor
June 23, 2020

Hi 

Be carful here, if you do this your jsp will not  have access to method server or databases....

Regards