When you add or remove rule set from the decision service you will get following type of error and warning during compilation
This compilation error comes due to change in namespace in Rule's wsdl file(e.g xyzRule_DecisionService_1.wsdl) by the JDeveloper. Its a bug in JDeveloper.
It changed from
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
to
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
Just revert it to
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
back after add or remove rule set from the decision service.
Error(53): The role named "IDecisionService_Role" on this partnerLinkType uses portType "null" which is not defined anywhere
Warning(126): The activity <bpel:invoke> refers to a bpel:partnerLink (via the attribute "partnerLink") - this bpel:partnerLink needs to be defined correctly.
This compilation error comes due to change in namespace in Rule's wsdl file(e.g xyzRule_DecisionService_1.wsdl) by the JDeveloper. Its a bug in JDeveloper.
It changed from
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
to
xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
Just revert it to
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
back after add or remove rule set from the decision service.