HI,
HI Mario,
I followed 8.1 extensions and built my custom extensions, still I am getting error.
<%@ taglib prefix="vcm" uri="http://ui.vignette.com/vcm" %>, I couldn’t find uri=http://ui.vignette.com/vcm in ay web.xml, and unable to access this URL.
contentInstance.jsp:123:2: This tag is not recognized.
<vcm:renderWidgets ids="*"/>
My requirement here is I just want to display one extra field on CIF – Content Workspaces.
I copy pasted the existing contentInstace.jsp from vcm-ui.war.
Any idea how to go about this?
Thanks,
Gangi.
I was missing jars in WEB-INF/lib, after adding the jars I am not getting the tag lib error, but this time I am getting the following Error.
Any Idea?
2011-05-11 19:36:25,880 | ERROR | ette.ui.service.ServiceFactory | | Unable to find a service bean [[ACTIVE] ExecuteThread: '2' for queue: 'weblog
Caused by: java.lang.NullPointerException
at com.vignette.ui.util.RequestUtil.getRequest(RequestUtil.java:56)
at com.vignette.ui.web.tag.AbstractTag.getRequest(AbstractTag.java:76)
at com.vignette.ui.vcm.web.tag.RenderWidgetsTag.doStartTag(RenderWidgetsTag.java:132)
at jsp_servlet._theme._corporate._template._editor.__contentinstance._jsp__tag0(__contentinstance.java:300)
at jsp_servlet._theme._corporate._template._editor.__contentinstance._jspService(__contentinstance.java:267)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
Hi Mario,
My web.xml is similar to the below.
But still I am getting
In RequestUtil its trying to get “service” bean, but unable to get it
2011-05-12 08:55:41,195 | ERROR | ette.ui.service.ServiceFactory | | Unable to find a service bean [[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'] [com.vignette.ui.service.ServiceFactory]
2011-05-12 0”
Now my custom contentInstance.jsp is working.
But I am having one problem here:
I overrided one of my CTD content instance Editor
<c:template key="vui-editor:ContentInstance:EOC" path="/customcif/theme/corporate/template/editor/contentInstance.jsp"/>
But I overrided “vcm-widget-text” for the same CTD and overrided for TITLE field. Similarly I overrided for four fields in my CTD.
<c:template key="vcm-widget-text:ContentInstance:EOC:TITLE" path="/customcif/common/widgets/textWithProdURL.jsp"/>
<c:template key="vcm-widget-text" path="/customcif/common/widgets/text.jsp"/>
I this case textWithProdURL.jsp is not taking, but its taking my custom text.jsp.
This happening only if I override contentInstace editor. Without overriding contentInstace.jsp this was working as expected.
If I override contentInstace.jsp is there any changes I have to made?