File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Java
»
JSP
Author
problem with custom tag
seema14
Greenhorn
Joined: Dec 17, 2007
Posts: 1
posted
Dec 17, 2007 04:19:00
0
this is jsp file
%@ taglib prefix="mine" uri="DiceFuntions" %>
<html><body>
This is new value : ${mine:rollIt()}
</body></html>
i wrote tld file and put that file in WEB-INF....but its not working
<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_0.xsd"
version="2.0">
<tlib-version>1.2</tlib-version>
<uri>DiceFuntions</uri>
<function>
<name>rollIt</name>
<function-class>faq.DiceRoller</function-class>
<function-signature>int rollDice()</function-signature>
</function>
</taglib>
java
file content are
package faq;
public class DiceRoller {
public static int rollDice(){
return (int)((Math.random()*6)+1);
}
}
my web application server is
jboss
.......i created war file and deployed in deploy folder in jboss.....the output is.....
This is new value : ${mine:rollIt()}
its not showing correct output
[ December 17, 2007: Message edited by: Bear Bibeault ]
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56162
13
I like...
posted
Dec 17, 2007 08:53:00
0
Please be sure to take the time to compose descriptive subjects for your posts;
read this
for more information.
I have adjusted the subject of this post for you.
[
Smart Questions
] [
JSP FAQ
] [
Books by Bear
] [
Bear's FrontMan
] [
About Bear
]
I agree. Here's the link:
http://aspose.com/file-tools
subject: problem with custom tag
Similar Threads
TLD file
Regarding TLD
wierd exception in EL function
Do we have write seperate .tld files for each EL?
Using TLD in JSP
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter