I was trying to create some HTMLB controls in my JSP page but they don't work but if i write just plain text using JSP expression it works fine.Do i need to change something in my Deployment descriptor file?Below is my deployment descriptor and JSP file
-
DEPLOYMENT DESCRIPTOR FILE----
<?xml version="1.0" encoding="utf-8"?>
<application>
<application-config>
<property name="SharingReference" value="htmlb"/>
</application-config>
<components>
<component name="JSPDynPage1">
<component-config>
<property name="ClassName" value="com.nextsap.jsp.JSPDynPage1"/>
<property name="JSP" value="pagelet/JSPPage1.jsp"/>
</component-config>
<component-profile/>
</component>
</components>
<services/>
</application>
-
JSP FILE----
<jsp:useBean id="myBean" scope="request" class="com.nextsap.bean.Bean1" />
<hbj:content id="myContext" >
<hbj:page title="Ashwani First JSPDyn Application">
<hbj:form id="myFormId" >
<%= myBean.getMessage() %>
<hbj:textView
id="Welcome_Message"
text="You are UNKNOWN USER"
design="HEADER1"
/>
</hbj:form>
</hbj:page>
</hbj:content>
-Ashwani