Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3879358
By: awinkumar

Specifications:
Weblogic:8.1 Sp4
JDK:1.4.02_10
DisplayTag:1.1

Tomcat:4.1
Tomcat:5.0

I found the difference while running the war file on both the environments:
On tomcat:
Not Working:
web.xml entry:
-----------------
<taglib>
<taglib-uri>displaytag</taglib-uri>
<taglib-location>/WEB-INF/displaytag.tld</taglib-location>
</taglib>       
-----------------
JSP entry:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page";>
        <%@ taglib uri="displaytag" prefix="display" %>
---------------------
Working:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page";
xmlns:display="urn:jsptld:http://displaytag.sf.net";>
----------------------------------

Exported the war file from tomcat and deployed the same on weblogic and it did
not work.
----------------
Weblogic Not working:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page";
xmlns:display="urn:jsptld:http://displaytag.sf.net";>
----------------

Works in weblogic:
<jsp:root version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page";>
        <%@ taglib uri="displaytag" prefix="display" %>
------------------------------------------------

The other difference I found is with exporting of documents:

I have 2 tables in teh same jsp page. If I create both the display tag table
in the same jsp page the export functionality works fine. But if I created the
display tables in 2 different JSP files and include both the files in 1 file
then the export functionality does not work.


I find this tag library very useful,but I have to say that the documentation
and support is not up to the mark. I am trying to do my bit by posting
my experiences.

Hope this helps.
Ash.

Note: Do people really reply on this forum ? or do we have a much more active
forum for displaytag which I don't know about ? nabble ?

Please advise.


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to