cancel
Showing results for 
Search instead for 
Did you mean: 

XMLForm problem with XSL Stylesheet

Former Member
0 Kudos

Hi All,

I am facing problem while using xsl include and xsl import tags in NetWeaver 7.01 environment. In local tomcat environment ,this is working fine. Please advice. I am using java 1.4 version .Is this a problem.

The error is described as follows

Could not resolve header.xsl

In xsl file :

<xsl:include href=header.xsl />

Regards

Accepted Solutions (0)

Answers (1)

Answers (1)

thunder_feng
Active Participant
0 Kudos

Hi Nikhil,

What is the content for header.xsl ?

Regards,

Thunder

Former Member
0 Kudos

Hi,

I am using totally 4 files using the include and import statements .

Header.xsl

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://org.worldbank/eservices/internal_order_processing/bpm">

<xsl:template match="/">

<xsl:value-of select="/service_request/request_details/partner/contact_details/full_name" />

</xsl:template>

</xsl:stylesheet>

Main.xsl

<xsl:import href="header.xsl"/>

<xsl:output method="html" indent="yes"/>

<xsl:include href="requestDetails.xsl"/>

<xsl:include href="paymentDetails.xsl"/>

<xsl:include href="template.xsl"/>

Thanks