hi there..im trying to create a jsp page with flex content ..im using
the flex tag lib... getting the following xception on runnin..
=======================================================================
Error 500--Internal Server Error 
java.lang.NoSuchMethodError:
flex.services.config.CacheConfiguration.getJspSourceCacheSize()I
        at flex2.server.j2ee.jsp.SourceCache.getInstance(SourceCache.java:64)
        at flex2.server.j2ee.jsp.MxmlTagImpl.initCache(MxmlTagImpl.java:162)
        at flex2.server.j2ee.jsp.MxmlTagImpl.doStartTag(MxmlTagImpl.java:110)
        at flex.bootstrap.BootstrapTag.doStartTag(BootstrapTag.java:77)
        at jsp_servlet._users.__trial._jsp__tag0(__trial.java:117)
        at jsp_servlet._users.__trial._jspService(__trial.java:93)
        at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
        at
weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
        at
weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
        at
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
        at
weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:391)
        at
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
        at
weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
        at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3214)
        at
weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at
weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
        at
weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
        at
weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1890)
        at
weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
 
=======================================================================
my jsp looks like this
========================================================
<%@ taglib uri="FlexTagLib" prefix="mm" %>
<html>
<body> 
<h3>Introduction</h3>
 <p>This is an example of writing MXML in a JSP.</p> 
<h3>My App</h3> 

<mm:mxml border="1"> 
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
layout="absolute">
        <mx:Label x="20" y="60" text="Email"/>
        <mx:TextInput y="60" left="90" right="60"/>
        <mx:Label x="20" y="90" text="Comments"/>
        <mx:TextArea left="90" right="60" top="90" bottom="190"/>
        <mx:Button label="Send" right="60" bottom="150"/>
</mx:Application>
</mm:mxml> 
</body>
</html> 
=====================================================
Ive fds installed and taglib tag included in web.xml

can someone please help me out?


ps: ive also done the following

Copy flex-bootstrap-jsp.jar into the /WEB-INF/lib directory
Copy flex-webtier-jsp.jar into /WEB-INF/flex/jars directory

Reply via email to