cancel
Showing results for 
Search instead for 
Did you mean: 

Error in parsing taglib

Former Member
0 Kudos

Hi,

I added this lines in the portalapp.xml.

 <component-profile>
      <property name  = "tagLib" value = "/SERVICE/htmlb/taglib/htmlb.tld"/>
      </component-profile>

Portal Runtime Error

The following error occurs !

An exception occurred while processing a request for :

iView : MyPortalAppln.jspDYN

Component Name : MyPortalAppln.jspDYN

Error in parsing taglib 'tagLib' tag in web.xml or .tld file of the taglib library..

Exception id: 11:13_16/08/05_0001_1603550

See the details for the exception ID in the log file

How can i solve it !

Accepted Solutions (0)

Answers (1)

Answers (1)

pravesh_verma
Active Contributor
0 Kudos

Hi Bharathwaj,

Have you added these lines in the JSP page:

<b><%@ taglib uri= "tagLib" prefix="hbj" %></b>

<hbj:content

id="myContext">

<hbj:page

title="PageTitle">

<hbj:form

id="myFormId">

............... Your code ...............

</hbj:form>

</hbj:page>

</hbj:content>

You have added the correct tags. Just check for the change I have suggested..

Hope this solves the problem..

Regards

Pravesh

PS: Please consider awarding Points if useful.