I have a xslt like this :
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="param1"/>
----
---
and I pass the param1 from the OSB Variable Name Binding . Unfortunately I can access param1 in XSLT only when param1 is a simple data type , but I want to pass param1 as xml document . In that case when I try to access param1 in xslt I get the value as "org.apache.xmlbeans.impl.store.Xobj$DocumentXobj@7b81b6 " . I am using 11G . Any idea how can I get access to the input xml document through param1 . Any help will be well appreciated . Thanks