Questions tagged [pdp]

XACML's Policy Decision Point

XACML is the eXtensible Access Control Markup Language as defined by OASIS.

XACML defines three parts:

  • an architecture
  • a request/response scheme, and
  • an architecture. The PDP is part of the architecture

In XACML the Policy Decision Point (PDP) is the core engine used to evaluate incoming authorization requests against known policies in order to decide whether a request will result in a Deny or Permit, e.g.:

Is Physician John allowed to access the Medical Record of Patient James at 3 pm?

The PDP will produce a decision e.g.

Permit + obligation "log the decision"

See XACML's tag () for more details.

60 questions
0
votes
1 answer

bigcommerce display a product's categories on product display page

Looking to display all the categories that the specific product is in, on it's product display page. (in code for all products of course) trying to get stencil's code for displaying like: each top level category and then the subcategories within it.…
M21
  • 343
  • 3
  • 14
0
votes
1 answer

Add multiple values in bag using authzforce

I'm aware there is already a question here on stackoverflow where this is discussed, but I still have trouble to send the correct values to Bag.newAttributeBag and was hoping for some help. final Collection subjectList = new…
Steffinho
  • 27
  • 6
0
votes
0 answers

How can I access policy data from my attribute provider?

I am dealing with AttributeProvider. Needed to implement Attribute Provider that will access another service API. So I have prepared everything according to the documentation. AttributeProvider has been successfully registered and everything works…
0
votes
0 answers

Display the dropped dummy when using PDPBox

I am currently working on how Machine Learning models can be interpreted and I found the function "pdp_plot" from the package PDPBox very useful to show how predicted outcome is impacted by changes in explanatory variables. However, I didn't find…
0
votes
1 answer

Partial dependence/ALE/ICE plots XgBoost in r

I am trying to plot pdp, ale and ICE plots for a regression Xgboost model in r built using the Xgboost library. I have tried this using the pdp library: library(pdp) xv <- data.matrix(subset(data, select = -ICP)) # training features p1xv…
MacUser
  • 492
  • 9
  • 22
0
votes
1 answer

Adding probability boundary to pdp::partial plot

I have a plot of predicted probabilities for a binary classification problem. I have two questions: How do I draw a single probability break for p = 0.5? Using the contour = TRUE argument adds several lines. Is it possible to add another predictor…
fluent
  • 55
  • 1
  • 6
0
votes
1 answer

pdp plotPartial unable to change zlim

I am plotting some partial dependences plots in R, for random forest. I am using pdp package and it is not reacting to any specification for my limits in z variable. code: pd <- partial(RF, pred.var= c ( "SOC", "Q")) plotPartial(pd,…
0
votes
1 answer

Spartacus 2.0 PDP outlets

Looking at the training video "Component Context - Spartacus Extensibility Live Coding Part 4 - SAP Commerce Cloud", it customizes the PDP image component by setting [cxOutletRef]="ProductDetailOutlets.IMAGE". Looking at the ProductDetailOutlets…
0
votes
0 answers

Entitlement policy(PDP) is not working for federated users in WSO2 identity server 5.10.0

Following is the XACML Entitlement policy for allowing users with admin role only
Arbaz Sheikh
  • 217
  • 2
  • 10
0
votes
1 answer

Android multiple PDP support

Does android support multiple PDP contexts? From Gingerbread Telephony package, I can understand that single PDP can only be created and active at one time. i.e. PDP_CONNECTION_POOL_SIZE = 1 From which Android version, multiple PDP contexts will be…
Vidz
  • 406
  • 2
  • 4
  • 16
0
votes
1 answer

What is the URL for PDP dev and staging

What is the PDP URL to use for dev and staging integration tests? what should be the value of PDP_SERVER_URL
0
votes
1 answer

XACML AuthzForce - Evaluating a request not in XACML 3.0 format

I want to use the policy decision point (PDP) of AuthzForce to evaluate requests (reference: https://github.com/authzforce/core#java-api). These requests are not in the XACML 3.0 format, but in the XML format with additional elements which are not…
0
votes
1 answer

Comparing specific custom-defined attribute of user

For an XACML policy document I had in mind, I have a subject (user) and an object, each attached with a label. Let's call this myLabel = {[a,b,c], [1,2,3]}. I wish to do a comparison of parts of this label. How can I define a subject and object to…
rshah
  • 675
  • 2
  • 12
  • 32
0
votes
2 answers

ABAC Attributes Resolution

We have a subject, object(resource) and operation(action) in the ABAC. Subject and object have attributes that will be used to execute rules. We can have multiple subjects of different types, as well as resources. Some attributes are relevant for…
Artsiom Miksiuk
  • 3,896
  • 9
  • 33
  • 49
0
votes
0 answers

PDO I can't get the title to show in the select tag from a query made in php

I'm trying to get the select tag to show the titles of the posts that are in the DB so i can select them individually and up date them instead of updating all the titles with the same name. So my problem is that i can't get it to work and maybe…