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 - Extract Microsoft 365 Outlook Email Attachments and upload them to OCI Object storage

Use Case: A client has a requirement to automate the processing of email attachments received in their Microsoft 365 Outlook inbox. Currentl...