Archive for December, 2016

Oracle SOA Suite 12c, Unable to get Metadata Manager for DVM

Little reminder : bpel file uses the next : [code language="xml"] ora:doXSLTransformForDoc("../Transformations/transfBewaarNotificatie.xsl", $inputVariable.notificatie) [/code] xsl file used to be using the next : [code language="xml"] [/code] this will fail (the location of the dvm file isn't relative to both the .bpel file and the .xsl file), correct path to the dvm file will be [code language="xml"] [/code] besides that i had to use 'actie.dvm' instead of the...

Oracle Mediator, the-always-give-response-pattern by using the Echo-reply

In my usecase i subscribed to an eventbus solution (rabbitmq with some custom code to be able to publish to consumers based on the soap protocol). The backend system which generated the notications can generate the next type of events : -- employeename got changed [code language="xml"] EMPLOYEE EMPLOYEE [/code] -- employee contactaddress got changed [code language="xml"] EMPLOYEE ADDRESS [/code] The current subscription mechanism only allows me to subscribe...