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

OIC - how can I use XSLT functions to remove leading zeros from numeric and alphanumeric fields?

To remove leading zeros from an numeric field in Oracle Integration Cloud (OIC) using XSLT, you can Use number() Function The number() funct...