Setting Allow Anonymous Access Policy
For an incoming request to be allowed through the public context, you must apply an <abp:AllowAnonymousAccess/> policy as a "user defined" policy in the PDD.
For example, to authenticate a service using wsse:UsernameToken, you use this public context:
https://[host]/active-bpel/public/services/[tenant]/[ServiceName]
To allow access, set the following policy on the myRole service endpoint ([ServiceName]) in the PDD:
{{<wsp:Policy
xmlns:abp="http://schemas.active-endpoints.com/ws/2005/12/policy"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy">
<abp:AllowAnonymousAccess/>
<abp:Authentication direction="in">
<abp:UsernameToken/>
</abp:Authentication>
</wsp:Policy>}}