You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by bu...@apache.org on 2004/04/08 23:54:05 UTC

DO NOT REPLY [Bug 28301] New: - XTags are not working for Tomcat 4.1.18

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28301>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28301

XTags are not working for Tomcat 4.1.18

           Summary: XTags are not working for Tomcat 4.1.18
           Product: Taglibs
           Version: unspecified
          Platform: Other
        OS/Version: AIX
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: XTags Taglib
        AssignedTo: taglibs-dev@jakarta.apache.org
        ReportedBy: rsivaprakash@mcleodusa.com


I use XTags to convert my xml. It works good on tomcat 4.0.1 but when I ported 
to a different machine under tomcat 4.1.18 it doesn't work. I use IO tags to 
make http post(which works). Returned XML is parsed by xtags:parse which 
doesn't work. Please let me know what I need to do to get this working

Thankyou

Code Sample is as below:
<xtags:parse>
	<io:http url="<%=strURL%>" action="POST" output="true" input="true">
	 <io:header name="Content-Type" value="text/xml"/>
	   <io:body>
		<%=strInputXml%>
	   </io:body>
	</io:http>
</xtags:parse>
<xtags:stylesheet>
<xtags:template match="/">
  <html>
  <body>
  <xtags:applyTemplates/> 
  </body>
  </html>
</xtags:template>
<xtags:template match="RootTag">
	<xtags:applyTemplates select="Xxxx"/> 
</xtags:template>
<xtags:template match="Xxxx">
	Xxxx :<xtags:valueOf select="."/><br/>
</xtags:template>
</xtags:stylesheet>

---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org