Wednesday, August 21, 2019

XSLT Transformation file Design View not opening in Jdeveloper


XSLT Transformation file Design View not opening in Jdeveloper


Solution:

step 1:

Add the following Oracle-xsl-mapper before template match with the correct WSDL path, element name and namespaces:

<?oracle-xsl-mapper
   <mapSources>
    <source type="WSDL">
      <schema location="../sourceWsdlName.wsdl"/>
      <rootElement name="sourceRootElement" namespace="sourceWsdlNamespace"/>
    </source>
  </mapSources>
  <mapTargets>
    <target type="WSDL">
      <schema location="targetWsdlLocation"/>
      <rootElement name="targetRootElement" namespace="targetNamespace/"/>
    </target>
  </mapTargets>
 ?>

step 2:
Restart the Jdeveloper and open.


No comments:

Post a Comment

Featured Post

11g to 12c OSB projects migration points

1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper:   File⇾Import⇾Service Bus Resources⇾ Se...