I am attempting to create my own taglib, ala framework and layout taglibs, but am running into errors picking up the taglib.
I've followed the steps in this document which does exactly what I want to do: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40599e45-8cf9-2910-cbaa-d4cd8e15ff34
However, I receive the following ParseException in the stack trace: Error in parsing taglib 'minimalLayout' tag in web.xml or .tld file of the taglib library. I am attempting to access the TLD in the same manner that I am pulling the TLD for htmlb or framework tags. They should be accessible from any PAR that I'm creating if I define it in the portalapp.xml file:
<property name="com.sap.portal.reserved.layout.TagLibLayout" value="/SERVICE/com.sap.portal.pagebuilder/taglib/layout.tld"/> <property name="minimalLayout" value="/SERVICE/com.myapp.portal.framework.tags/taglib/minimalLayout.tld"/>
Really struggling to understand what I'm missing here. Any ideas?