cancel
Showing results for 
Search instead for 
Did you mean: 

ACCESS.ERROR: Authorization check for caller assignment to J2EE security ro

Former Member
0 Kudos

when I preview a view in the portal. and the ivew componet is a jsp in the project portal application

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

any updates?

Is this problem resolved? Please tel me the solution, if resolved.

Thanks in adv

Kapil

Former Member
0 Kudos

yes the question have been resolved,the reason may be the portalapp.xml is configed wrong.

the element <property name="AuthScheme" value="anonymous"/> should be in the <component-profile> not <component-config>, the following is my portalapp.xml hope can help you!good luck

<?xml version="1.0" encoding="utf-8"?>

<application>

<application-config>

<property name="PrivateSharingReference" value="com.sap.portal.htmlb,com.sap.portal.ivs.connectorservice"/>

<property name="SharingReference" value="htmlb"/>

</application-config>

<components>

<component name="Admin">

<component-config>

<property name="ClassName" value="admin.Admin"/>

<property name="JSP" value="pagelet/admin.jsp"/>

<property name="SafetyLevel" value="low_safety"/>

</component-config>

<component-profile>

<property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>

<property name="CachingLevel" value="None"/>

<property name="com.sap.portal.ivew.ShowTray" value="false"/>

<property name="com.sap.portal.reserved.ivew.IsolationMode" value="URL"/>

<property name="AuthScheme" value="anonymous"/>

</component-profile>

</component>

</components>

<services/>

</application>