HI,
i developed custom CIF as follwis, which rendering "SAMPLE-ID1" only.
i bundled this .jsp as war and deployed using confip.
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="com.vignette.as.ui.cm.coe.*,
com.vignette.as.ui.common.widgets.*,
com.vignette.as.client.common.*,
com.vignette.wcm.taglibs.*"%>
<%@ page import="org.apache.struts.action.ActionErrors" %>
<%@ taglib prefix="wcm" uri="/WEB-INF/wcm-appsvcs-cma.tld" %>
<%@ taglib prefix="cma" uri="/WEB-INF/vgn-appsvcs-cma.tld" %>
<%@ taglib prefix="bean" uri="/WEB-INF/struts-bean.tld" %>
<%@ taglib prefix="logic" uri="/WEB-INF/struts-logic.tld" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
* Indicates Bold Only
<cma:transfer />
<wcm:initPage />
<wcm:renderWidgetTitle name="SAMPLE-ID1" />
<wcm:renderWidgetBody name="SAMPLE-ID1" />
The problem here is , the view is coming fine in V7 Style Editor it is displaying only one filed, For the same CI the view is different in V8 Editor Style, it is displaying all the fileds.
After that i modifed the above code to generate compilation errors, and deployed the in correct code.
in this case View is not coming in V7 eidtor style, but in V8 Style editor still i am getting the View(default view same as above). even i added some Sop's in the JSP.
when i access the CI from V7 Style Editor , sop's are printing in the log file, but if i acces the same ci in V8 style editor sop's are not printing.
I feel it is not calling the custom CIF at all in V8 Editor Style.
i developed the custom CIF using the instructions provied in the VCM docs.
any one have sample custom CIF working in both V7 and V8 Style Ediotr.