cancel
Showing results for 
Search instead for 
Did you mean: 

SAP ME 6.0 SDK WPMF Plugin

former_member210324
Participant
0 Kudos

Hello,

I am trying to write a WPMF plugin but currently this stops at:

java.lang.IllegalStateException at

com.sun.faces.context.FacesContextImpl.assertNotReleased(FacesContextImpl.java:395) at

com.sun.faces.context.FacesContextImpl.getExternalContext(FacesContextImpl.java:147) at

com.sun.faces.util.RequestStateManager.getStateMap(RequestStateManager.java:276) at

com.sun.faces.util.RequestStateManager.remove(RequestStateManager.java:243) at

com.sun.faces.context.FacesContextImpl.release(FacesContextImpl.java:345) at

com.sap.tc.ls.faces.context.UCFFacesContext.release(UCFFacesContext.java:341) at

javax.faces.webapp.FacesServlet.service(FacesServlet.java:283) at

...

The JSP is as following:

<%@page pageEncoding="UTF-8"%>

<%@ page language="java"%>

<%@ taglib prefix="h" uri="http://java.sap.com/jsf/html"%>

<%@ taglib prefix="f" uri="http://java.sap.com/jsf/core"%>

<%@ taglib prefix="sap" uri="http://java.sap.com/jsf/html/extended"%>

<%@ taglib prefix="ls" uri="http://java.sap.com/jsf/html/internal"%>

<f:subview id="SOInfoView">

Test

    <ls:panel facet="content" id="soInfoPluginContainer"

        binding="#{soInfoPluginBackingBean.container}" title="Default Plugin"

        width="100%" height="100%" hasEditableTitle="false"

        isCollapsible="false" collapsed="false" enabled="true"

        headerDesign="STANDARD" borderDesign="BOX" scrollingMode="NONE"

        isDragHandle="false" contentPadding="STANDARD">

        <f:attribute name="sap-delta-id"

            value="#{sap:toClientId('soInfoPluginContainer')}" />

    </ls:panel>

</f:subview>

A bean and a backing bean have also been defined.

Any hints to the cause of the error?

Kind Regards,

Christoph Mertins

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member210324
Participant
0 Kudos

Hi,

just an update. The problem was that the JSP should have been named only in lower case.

Kind Regards,

Christoph Mertins