Output templates

Hi,

I have created a html template like :

<!–>
<html>
<head>
<title>Error while processing the transaction</title>
</head>
<body>

Error report that is generated from web methods

<table>
<tr>
<td>Trading Partner</td>
<td>
%scope errorTemplate%
%value tradingPartner%
%end scope%
</td>
</tr>
</table>
</body>
</html>

where
errorTemplate is the document name
tradingPartner is the element inside the document, whose value needs to be displayed as a html output.
This document is available in both input and output pipeline with values

The problem is in the html page, only the caption Trading partner is displayed but not its value.

Can someone please help me in resolving this problem.

Thanks,
Badri

%value tradingPartner% or %value errorTemplate/tradingPartner%. You shouldn’t need the scope tags.