How to get custom associations configured in the management.xml file in the WSO2 Enterprise Store

I created a user association for the type 'Schema' in the management.xml file, as shown below:

<Association type="schema">             
 <critical reverseAssociation ="isCriticalTo" iconClass="">service</critical>
</Association>

I have created some associations using Greg Publisher for them. User associations are not retrieved in the default WSO2 Store overhead for a particular artifact.

How can I configure the WSO2 Enterprise Store View to retrieve and display user communication data (critical / isCriticalTo)?

+4
source share
1 answer

management.xml , , , iconClass, . , management.xml,

<Association type="service">
 <isCriticalTo reverseAssociation ="critical" iconClass="fw-store">schema</critical>
</Association>

. , service.rxt ( , .)

, , xml. Association Page

. G-Reg 5.2.0. G-Reg 5.1.0, reverseAssociation, iconClass.

WSDL, "" "usedBy" , , WSDL asset.js . "" "usedBy" WSDL, asset.js,

GREG_HOME////jaggeryapps////WSDL/asset.js

if(deps.associationType == "soapservice") {
  associations.push(deps);
}

,

//if(deps.associationType == "soapservice") {
  associations.push(deps);
//}

"" "usedBy" .

Publisher Association Page New Store view after fix

WSO2 git, , PR .

+2

All Articles