BPEL invocation securely from client using JAZN security not working.

HI,
We are trying to invoke the BPEL process securely from the client application using JAZN security settings, this is not working, with any credentilas or with out providing the security credentilas BPEL invocation is happening. Need the solution for this security credentials while invoking the BPEL process.
Please provide the update at the earliest. Thanks in advance. Your quick update is greatly appreciated.

Hi James,
Thanks for the update.
Please find the attached docs.
Bpel.xml:
<?xml version = '1.0' encoding = 'UTF-8'?>
<BPELSuitcase>
<BPELProcess id="HelloWorld" src="HelloWorld.bpel">
<partnerLinkBindings>
<partnerLinkBinding name="client">
<property name="wsdlLocation">HelloWorld.wsdl</property>
</partnerLinkBinding>
</partnerLinkBindings>
<configurations>
<property name="role">oc4j-administrators</property>
</configurations>
</BPELProcess>
</BPELSuitcase>
orion-application.xml: folder location: C:\product1\10.1.3.1\OracleAS_1\j2ee\home\applications\orabpel\META-INF\orion-application.xml
<?xml version="1.0"?>
<orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd"
schema-major-version="10"
schema-minor-version="0" component-classification="internal-BPEL">
<connectors path="./oc4j-connectors.xml"/>
     <ejb-module remote="false" path="ejb_ob_engine.jar" />
     <ejb-module remote="false" path="ejb_services.jar" />
     <web-module id="httpbinding" path="httpbinding.war" />
     <web-module id="admin_war" path="admin_war" />
     <web-module id="startup_war" path="startup_war" />
     <web-module id="console_war" path="console_war" />
     <persistence path="persistence" />
     <principals path="principals.xml" />
     <jazn provider="XML" location="../../config/system-jazn-data.xml" jaas-mode="doAsPrivileged">
     <!-- <jazn-web-app auth-method="CUSTOM_AUTH"/> -->
</jazn>
<imported-shared-libraries>
     <inherited-shared-libraries/>
     <import-shared-library name="oracle.bpel.common" parent="api" />
     <import-shared-library name="oracle.ws.client" parent="oracle.ws.jaxrpc" version="10.1.3" />
     <import-shared-library name="oracle.ws.jaxrpc" />
     <import-shared-library name="oracle.toplink" />
     <import-shared-library name="oracle.ws.testpage" />
     </imported-shared-libraries>
     <log>
          <file path="application.log" />
     </log>
     <namespace-access>
          <read-access>
               <namespace-resource root="">
                    <security-role-mapping name="oc4j-administrators">
                         <group name="oc4j-administrators" />
                    </security-role-mapping>
               </namespace-resource>
          </read-access>
          <write-access>
               <namespace-resource root="">
                    <security-role-mapping name="oc4j-administrators">
                         <group name="oc4j-administrators" />
                    </security-role-mapping>
               </namespace-resource>
          </write-access>
     </namespace-access>
     <security-role-mapping name="PUBLIC">
          <group name="{{PUBLIC}}" />
     </security-role-mapping>
</orion-application>
web.xml file: C:\product1\10.1.3.1\OracleAS_1\j2ee\home\applications\orabpel\startup\WEB-INF\web.xml
<?xml version="1.0" ?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app id="StartupWebApp_Id">
<!--servlet id="BPEL_Axis_Servlet_Id">
<servlet-name>BPEL_Axis_Servlet</servlet-name>
<display-name>BPEL Axis Servlet</display-name>
<servlet-class>com.collaxa.cube.ws.soap.axis.BPELAxisServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet-->
<servlet id="BPEL_OC4J_Servlet_Id">
<servlet-name>BPEL_OC4J_Servlet</servlet-name>
<display-name>BPEL OC4J JAX/RPC Servlet</display-name>
<description>BPEL endpoint Provider Port via oc4j jax/rpc</description>
<servlet-class>com.collaxa.cube.ws.soap.oc4j.BPELOC4JServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet id="LoaderServlet_Id">
<servlet-name>cxloader</servlet-name>
<servlet-class>com.collaxa.cube.admin.CXLoaderServlet</servlet-class>
<load-on-startup>3</load-on-startup>
</servlet>
     <!--servlet-mapping id="BPEL_Axis_Servlet_Mapping_id">
<servlet-name>BPEL_Axis_Servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping-->
<servlet-mapping id="BPEL_OC4J_Servlet_Mapping_Id">
<servlet-name>BPEL_OC4J_Servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<security-constraint>
     <web-resource-collection>
          <web-resource-name>Default Domain Pages</web-resource-name>
          <description>These pages are only accessible by authenticated users.</description>
          <url-pattern>*orabpel/default/HelloWorld/v2010_05_02__62961</url-pattern>
     </web-resource-collection>
     <auth-constraint>
     <role-name>oc4j-administrators</role-name>
     </auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>jazn.com</realm-name>
</login-config>
<security-role>
<description>BPEL Admins</description>
<role-name>oc4j-administrators</role-name>
</security-role>
<distributable/>
<resource-ref id="ResRef_BPELContainerDataSource_Id">
<res-ref-name>jdbc/BPELServerDataSource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<!--ejb-local-ref id="EjbRef_AdaptorManager_Id">
<ejb-ref-name>ejb/local/AdaptorManagerLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.collaxa.cube.engine.ejb.interfaces.IAdaptorManagerLocalBeanHome</local-home>
<local>com.collaxa.cube.engine.ejb.interfaces.IAdaptorManagerLocalBean</local>
<ejb-link>AdaptorManagerBean</ejb-link>
</ejb-local-ref>
-->
<ejb-ref id="EjbRef_CubeFinder_Id">
<ejb-ref-name>ejb/collaxa/system/CubeFinderBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<home>com.collaxa.cube.engine.ejb.interfaces.ICubeFinderBeanHome</home>
<remote>com.collaxa.cube.engine.ejb.interfaces.ICubeFinderBean</remote>
</ejb-ref>
<ejb-ref id="EjbRef_Dispatcher_Id">
<ejb-ref-name>ejb/collaxa/system/DispatcherBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<home>com.collaxa.cube.engine.ejb.interfaces.IDispatcherBeanHome</home>
<remote>com.collaxa.cube.engine.ejb.interfaces.IDispatcherBean</remote>
</ejb-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/CubeEngineLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.collaxa.cube.engine.ejb.interfaces.ICubeEngineLocalBeanHome</local-home>
<local>com.collaxa.cube.engine.ejb.interfaces.ICubeEngineLocalBean</local>
<ejb-link>CubeEngineBean</ejb-link>
</ejb-local-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/ProcessManagerLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.oracle.bpel.client.ejb.interfaces.IBPELProcessManagerLocalBeanHome</local-home>
<local>com.oracle.bpel.client.ejb.interfaces.IBPELProcessManagerLocalBean</local>
<ejb-link>ProcessManagerBean</ejb-link>
</ejb-local-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/CubeDeliveryLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.collaxa.cube.engine.ejb.interfaces.ICubeDeliveryLocalBeanHome</local-home>
<local>com.collaxa.cube.engine.ejb.interfaces.ICubeDeliveryLocalBean</local>
<ejb-link>CubeDeliveryBean</ejb-link>
</ejb-local-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/KeyGeneratorLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.collaxa.cube.engine.ejb.interfaces.IKeyGeneratorLocalBeanHome</local-home>
<local>com.collaxa.cube.engine.ejb.interfaces.IKeyGeneratorLocalBean</local>
<ejb-link>KeyGeneratorBean</ejb-link>
</ejb-local-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/MessageLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.collaxa.cube.engine.ejb.interfaces.IMessageLocalBeanHome</local-home>
<local>com.collaxa.cube.engine.ejb.interfaces.IMessageLocalBean</local>
<ejb-link>MessageBean</ejb-link>
</ejb-local-ref>
<ejb-local-ref>
<ejb-ref-name>ejb/local/ServerLocalBean</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
     <local-home>com.oracle.bpel.client.ejb.interfaces.IServerLocalBeanHome</local-home>
<local>com.oracle.bpel.client.ejb.interfaces.IServerLocalBean</local>
<ejb-link>ServerBean</ejb-link>
</ejb-local-ref>
</web-app>
jazn.xml : C:\product1\10.1.3.1\OracleAS_1\j2ee\home\config
<?xml version = '1.0' encoding = 'UTF-8' standalone = 'yes'?>
<jazn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/jazn-10_0.xsd" schema-major-version="10" schema-minor-version="0" provider="XML" location="./system-jazn-data.xml" default-realm="jazn.com" persistence="ALL">
     <property name="custom.sso.url.login" value="/jsso/SSOLogin"/>
     <property name="custom.sso.key.alias" value="{AES-128}dpvTz49oIQWnM1gZfdpZ1w=="/>
     <property name="idm.token.asserter.class" value="oracle.security.jazn.sso.SSOCookieTokenAsserter"/>
     <property name="idm.token.collector.class" value="oracle.security.jazn.sso.SSOCookieTokenCollector"/>
     <property name="idm.token.type" value="HTTP_COOKIE"/>
     <property name="idm.token.collector.cookie.1" value="ORA_OC4J_SSO"/>
     <property name="custom.sso.url.logout" value="/jsso/SSOLogout"/>
     <property name="idm.authentication.name" value="JavaSSO"/>
</jazn>
system-jazn-data.xml
<?xml version="1.0" encoding="UTF-8" standalone='yes'?>
<jazn-data
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/jazn-data-10_0.xsd"
schema-major-version="10"
schema-minor-version="0"
>
<!-- JAZN Realm Data -->
<jazn-realm>
     <realm>
          <name>jazn.com</name>
          <users>
               <user>
                    <name>Bharani</name>
                    <guid>99116C7155E211DFBFB59D7811B59628</guid>
                    <credentials>{903}26NFSvxAeBAo3nBkbvJ/e2BCD+actZzi</credentials>
               </user>
          </users>
               <role>
                    <name>oc4j-administrators</name>
                    <display-name>OC4J Admin Role</display-name>
                    <description>Administrative role for OC4J</description>
                    <guid>8A00C8701A0511DFBF99734349FF0592</guid>
                    <members>
                         <member>
                              <type>user</type>
                              <name>oc4jadmin</name>
                         </member>
                    </members>
               </role>
          </roles>
     </realm>
</jazn-realm>
<!-- JACC Repository Data -->
<jacc-repository>
</jacc-repository>
<jazn-policy>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/oc4j-administrators</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$createrole</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$modifyrealmmetadata</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.policy.RoleAdminPermission$jazn.com/*$</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$createrealm</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$droprealm</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$droprole</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.RoleAdminPermission</class>
                    <name>jazn.com/*</name>
               </permission>
               <permission>
                    <class>com.evermind.server.AdministrationPermission</class>
                    <name>administration</name>
                    <actions>administration</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>modifyrealmmetadata</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>createrealm</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>dropuser</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>droprealm</actions>
               </permission>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>subject.propagation</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/ascontrol_admin</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$createrole</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$modifyrealmmetadata</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.policy.RoleAdminPermission$jazn.com/*$</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$createrealm</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$droprealm</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.AdminPermission</class>
                    <name>oracle.security.jazn.realm.RealmPermission$jazn.com$droprole</name>
               </permission>
               <permission>
                    <class>oracle.security.jazn.policy.RoleAdminPermission</class>
                    <name>jazn.com/*</name>
               </permission>
               <permission>
                    <class>com.evermind.server.AdministrationPermission</class>
                    <name>administration</name>
                    <actions>administration</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>modifyrealmmetadata</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>createrealm</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>dropuser</actions>
               </permission>
               <permission>
                    <class>oracle.security.jazn.realm.RealmPermission</class>
                    <name>jazn.com</name>
                    <actions>droprealm</actions>
               </permission>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>subject.propagation</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/oc4j-app-administrators</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/users</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>user</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmUser</class>
                         <name>jazn.com/anonymous</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/BPMSystemAdmin</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.collaxa.security.ServerPermission</class>
                    <name>server</name>
                    <actions>all</actions>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>jazn.com/BPMDefaultDomainAdmin</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.collaxa.security.DomainPermission</class>
                    <name>default</name>
                    <actions>all</actions>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <realm-name>jazn.com</realm-name>
                         <type>role</type>
                         <class>oracle.security.jazn.spi.xml.XMLRealmRole</class>
                         <name>bpel_users</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>com.evermind.server.AdministrationPermission</class>
                    <name>administration</name>
                    <actions>administration</actions>
               </permission>
               <permission>
                    <class>com.evermind.server.rmi.RMIPermission</class>
                    <name>login</name>
               </permission>
          </permissions>
     </grant>
     <grant>
          <grantee>
               <principals>
                    <principal>
                         <class>sun.security.acl.PrincipalImpl</class>
                         <name>oc4j-administrators</name>
                    </principal>
               </principals>
          </grantee>
          <permissions>
               <permission>
                    <class>java.lang.RuntimePermission</class>
                    <name>setContextClassLoader</name>
               </permission>
          </permissions>
     </grant>
</jazn-policy>
<!-- Login Module Data -->
<jazn-loginconfig>
     <application>
          <name>oracle.security.jazn.oc4j.CertificateAuthenticator</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.X509LoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.jazn.tools.Admintool</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.RealmLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.jazn.oc4j.WebCoreIDSSOAuthenticator</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.coreid.CoreIDLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>coreid.name.attribute</name>
                              <value>your credential mapping variable name</value>
                         </option>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                         <option>
                              <name>coreid.resource.operation</name>
                              <value>your oreid resource operation</value>
                         </option>
                         <option>
                              <name>coreid.resource.type</name>
                              <value>your coreid resource type</value>
                         </option>
                         <option>
                              <name>coreid.name.header</name>
                              <value>your http header name variable</value>
                         </option>
                         <option>
                              <name>coreid.resource.name</name>
                              <value>your coreid resource name</value>
                         </option>
                         <option>
                              <name>coreid.password.attribute</name>
                              <value>your password authentication variable</value>
                         </option>
                         <option>
                              <name>coreid.password.header</name>
                              <value>your http header password variable</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.wss.jaas.SAMLAuthManager</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.saml.SAMLLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>issuer.name.1</name>
                              <value>www.oracle.com</value>
                         </option>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.jazn.oc4j.DigestAuthenticator</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.digest.DigestLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.jazn.oc4j.JAZNUserManager</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.RealmLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
     <application>
          <name>oracle.security.wss.jaas.JAASAuthManager</name>
          <login-modules>
               <login-module>
                    <class>oracle.security.jazn.login.module.WSSLoginModule</class>
                    <control-flag>required</control-flag>
                    <options>
                         <option>
                              <name>addAllRoles</name>
                              <value>true</value>
                         </option>
                    </options>
               </login-module>
          </login-modules>
     </application>
</jazn-loginconfig>
<jazn-permission-classes>
</jazn-permission-classes>
</jazn-data>
It is huge to check all these files, but for reference providing all the files for checking the security details.
Thanks for your help...

Similar Messages

  • BIP report security from Dashboard to Publisher is not working

    Hi ,
    I created a BIP report(.xdo) and placed it on Dashboard as a link . As admin , I can see the report . As a user , I am able to get into publisher but not able to see the report . Iam getting the below error message .
    Error : Unauthorized Access: please contact the administrator.
    I suspect that security model from Dashboard through BIP is not working . I tried searching the online resources but couldnt find right help .
    Iam a newbie for BIP , I followed the regular BIP guides , configured eveything as per the docs and things work as admin . But I want to test the security as user .
    Where Iam doing wrong , Any ideas please help .
    Thanks
    Karthik

    Hello Vijay ,
    I have grant permissions to the user and the report in BI webcatalog and also in BIP under admin tab I have addes the role which the user belongs to and also the shared folder . Still the problem exists.
    My BI presentation servcies security is working . My user security is also working , all that I need is the user should be able to see the report when he clicks on BIP link placed in dashboard.

  • Cisco AnyConnect Secure Mobility Client using discrete graphics on Mac

    Hello,
    I use your Cisco AnyConnect Secure Mobility Client to connect to my University's VPN. The programme is supplied to me by my University so I presume it licenses it for its students such as myself.
    I am writing to let you know the Cisco AnyConnect Secure Mobility Client uses the discrete graphics card on my MacBook Pro whenever it is running. I cannot quit the Client, that will end my VPN session, but at the same time using the discrete graphics card is a drain on the battery for no good reason; Cisco AnyConnect does not display any visuals that I am aware would require the use of an NVidia Kepler card with 1GB VRAM. The application's code perhaps needs to be rectified so it does not depend on the discrete graphics card when clearly (as the attachments show) it does not need a discrete graphics card to render its very simple interface.
    Cheers.

    If your company has the Cisco IPSec protocol open you can use the Mac's built-in VPN settings.
    However, if those ports are blocked by your local service (Starbucks or w/e) then you will have to use the AnyConnect VPN, which is done over SSL (https).

  • How to judge a input from client is integer or not?

    I got clients' input from DOS command line with readLine();
    how can I judge if it is a integer and give client a alert if it is not?
    Thanks a lot!

    Thank you!
    I tried
    try {
         Integer.parseInt(str);
         catch(NumberFormatException e) {
         System.out.println("this is not a number");
    }but the program is breaken after a exception is thrown.what can I do if I want contine to give clients another chance to input?
    And if I use
    if(!Character.isDigit(char)) ...
    if that char is what I got from clients?
    for example
    if(!Character.isDigit(str)) ? But what I got from clients is String but not char.
    Thanks again!

  • TS4036 I have moved from one company to another and they both use iphones I backed my phone up before it was shut down I tried to retrieve contacts from my PC it did not work will it work when I get my new iphone?

    I have moved from one company to another and they both use iphones I backed my phone up before it was shut down I tried to retrieve contacts from my PC it did not work will it work when I get my new iphone?

    I updated my iPhone onto my friend's MacBook
    Why would you do that, and not on your own computer?  See the hassle it caused you?
    can he just email me the folder
    Backup files are too big to email.  Use FTP, DropBox, etc...
    how do I then put all that data back into my current phone from the new computer?
    How to restore iPhone:  http://lmgtfy.com/?q=how+to+restore+iphone

  • HT5622 my apple id is not working when i sign in from my laptop it works but when i sign in from my iphone4 then its not working it gives the message of "your aapleid or password is incorrect"? how can i solve this problem please help

    my apple id is not working when i sign in from my laptop it works but when i sign in from my iphone4 then its not working it gives the message of "your aapleid or password is incorrect"? how can i solve this problem please help

    Hey nocillado,
    Thanks for using Apple Support Communities.
    It sounds like you have 2 things you want to address. These articles can help you use iCloud with your existing Apple ID.
    Get help activating your iPhone
    http://support.apple.com/kb/ts3424
    Using your Apple ID for Apple services
    http://support.apple.com/kb/ht4895
    Using the same Apple ID for Store purchases and iCloud (recommended)
    Have a nice day,
    Mario

  • Client Side Javascript Validation not Working in Struts 1.x version

    hi,
    I'm following the steps provioded in the below link for Javascript Client side validation but still it is not working.I'm struggling to get this work.
    [http://www.visualbuilder.com/jsp/struts/tutorial2/pageorder/9/|http://www.visualbuilder.com/jsp/struts/tutorial2/pageorder/9/]
    "The framework automatically generates the browser specific JavaScript and validate the data only at the client side."From the above statement i undertstand that framework itself generates the javascript function for validating the field mentioned in validations.xml file so that we dont have to explicitly write a javascript function for
    validating the fields
    (or)
    Do we need to call an explicit function
    Please need help on this.
    I have followed all the steps mentioned on the above link but Client Side Javascript Validation not Working in Struts 1.x version....
    Thanks and Regards,
    Deepak

    Hi,
    Please find my steps below....still getting an error.
    2> which version of commons-validation.jar needs to be downloaded ...Link please
        downloaded the latest commons-validation.jar and placed in lib.refreshed the project,and did a build.
        3> which DTD name to be specified in "validator-rules.xml" which is in accordance to commons-validator.jar file.
    validator-rules.xml ::
    <!DOCTYPE form-validation PUBLIC
              "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.0//EN"
              "http://jakarta.apache.org/commons/dtds/validator_1_0.dtd">validation.xml:
    <!DOCTYPE form-validation PUBLIC
    "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.0//EN"
    "http://jakarta.apache.org/commons/dtds/validator_1_0.dtd">
    i did as u said and im gettiong the below errorNov 5, 2009 4:33:08 PM org.apache.struts.validator.ValidatorPlugIn initResources
    SEVERE: Invalid byte 2 of 2-byte UTF-8 sequence.
    org.apache.commons.digester.xmlrules.XmlLoadException: Invalid byte 2 of 2-byte UTF-8 sequence.
         at org.apache.commons.digester.xmlrules.FromXmlRuleSet.addRuleInstances(FromXmlRuleSet.java:139)
         at org.apache.commons.digester.Digester.addRuleSet(Digester.java:1610)
         at org.apache.commons.digester.xmlrules.DigesterLoader.createDigester(DigesterLoader.java:89)
         at org.apache.commons.validator.ValidatorResourcesInitializer.initialize(ValidatorResourcesInitializer.java:122)
         at org.apache.struts.validator.ValidatorPlugIn.initResources(ValidatorPlugIn.java:238)
         at org.apache.struts.validator.ValidatorPlugIn.init(ValidatorPlugIn.java:181)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1036)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:455)
         at javax.servlet.GenericServlet.init(GenericServlet.java:212)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1139)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:966)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3996)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4266)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:740)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
         at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:927)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:890)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:492)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1150)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:448)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
    Need help forum members.....
    Please reply to my question 1  which has been asked before as belowDo i need to write explicit javascript function for validation in Struts (or) struts generates the javascript function by itself.??? Please explain with an example....
    Edited by: Deepak_A_L on Nov 5, 2009 4:37 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I bought an unlocked iphone 4s from dubai but it does not work with an indian idea sim..help

    i bought an unlocked iphone 4s from dubai but it does not work with an indian idea sim..help

    If you are both on the T-mobile network, the sim card should work.  If you did a Erase All Content and Settings, then she should be at the point of activation as a new device...talk to T-mobile and be sure the sim she is using is a valid sim card.

  • •I have just bought a Toshiba external hard disk to back up all my work from my macbook and its not working! I have checked the hard disk

    •I have just bought a Toshiba external hard disk to back up all my work from my macbook and its not working! I have checked the hard disk

    its not working: (sorry for being so ambiguous), the computer recognises it, it comes up on my desktop, when i open it and try and drag a file across, it is unable to go into the drive, there is just a symbol indicating 'no' (i've read the instructions from Tosheba and there is no help). I have not partitioned the drive using the GUID partition scheme - i dont know what this means?!

  • Windows Server 2012 - Printing using UNC path not working

    Hi,
    I have a problem printing using the printer's UNC path ("\\Server_Name\Printer_Hostname") to work with a web
    app hosted on IIS 8. With a windows forms application the UNC path is working fine and the app prints.
    With
    the web app I receive an error "The data area passed to a system call is tool small". 
    Also,
    in the event viewer under Applications and Services Logs -> Microsoft -> PrintService -> Operational, I receive the error "The print spooler failed to reopen an existing printer connection because it could not read the configuration information
    from the registry key S-1-5-82-1980832875-2702362896-1795126167-3622310632-1152289074\Printers\Connections. The print spooler could not open the registry key. This can occur if the registry key is corrupt or missing, or if the registry recently became unavailable."

    I have contacted IIS forum support.
    Please review the link: http://forums.iis.net/p/1213109/2079229.aspx?Re+Windows+Server+2012+Printing+using+UNC+path+not+working
    Their final response:
    Printing from ASP.NET using System.Drawing.Printing itself is a horrible approach, as this namespace was designed for Windows Forms only. The designers did not take everything about ASP.NET in mind, so any issue can happen. That can answer why the HP model
    works while the Samsung fails, as the HP one just "happens
    to work",
    http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx
    Similarly, System.Printing was designed just for WPF.
    About which printing API to use in ASP.NET/IIS, there is no clear answer so far. Thus, your only resource is Microsoft support, who can perform further analysis (with their dedicate utilities and of course Windows source code) and might come across a solution
    to help you out. This is not a trivial scenario.

  • Where used list is not working for IMG nodes/Document   in solar01

    hi experts
    In template project , we are using same IMG objects in different business processes and subsequent configuration document is attached to each IMG node in configuration tab.  ( like same IMG node  -  define order types used in different business process configuration tab )
    when i use " where used list " from the configuration tab , its not showing the IMG objects  used in different business processes in the same project. whereas its showing the IMG nodes used in the different project.
    I need to find out the same IMG objects/ document  used in the same project using the " Where used list " button.
    Please provide your answers
    Note : we have linked one configuration document to same IMG nodes used in different business. " where used list " also not working for documents as well
    Thanks
    Sol man

    Hello there,
    I just tried some tests and couldn't face any problem with locating other usages for the objects in configuration tab.
    You mentioned a configuration document, so have in mind that the document usage will only be considered if it is a link to the same document and not just a copy.
    e.g:
    Here I created a document in this node:
    Then I added it as a link here:
    and as a copy here:
    When I go back to the original node and use the where-used, it'll only show the original and the link:
    This happens because after copying a document, it is considered as a new one instead of another usage of the original one.
    best regards,
    Fabricius

  • TS1702 If I purchase an app from iTunes and it does not work or does not meet expectations, is there a way to be refunded the cost of the app?

    If I purchase an app from iTunes and it does not work properly or meet expectations, is there a way to receive refund for the cost of the app?

    First contact the Developer of the App...
    If no joy...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    Did you talk to your carrier?

  • Why copy option from recent call numbers is not working on ios7 [recent call logs in phone]?

    why copy option from recent call numbers is not working on ios7 [recent call logs in phone]?

    Here is a copy of my expressions and a copy of my data. The expressions match up going from left to right
    Code.CalcPTD2(Lookupset(FORMAT(Fields!REALDATE.Value,"Long Date"),FORMAT(Fields!CallbackDate.Value,"Long Date"),Fields!DailyHours.Value,"DataSet4"))
    sum(Code.CalcPTD2(Lookupset(FORMAT(Fields!REALDATE.Value,"Long Date"),FORMAT(Fields!CallbackDate.Value,"Long Date"),Fields!DailyHours.Value,"DataSet4")))
    count(Code.CalcPTD2(Lookupset(FORMAT(Fields!REALDATE.Value,"Long Date"),FORMAT(Fields!CallbackDate.Value,"Long Date"),Fields!DailyHours.Value,"DataSet4")))
    PUBLIC SHARED FUNCTION CalcPTD2(LookupArray AS OBJECT) AS INTEGER
         DIM i,Total AS INTEGER
         Total = 0
         FOR i = 0 to UBOUND(LookupArray)
               Total = Total + CINT(LookupArray(i))
         NEXT i
     NumberTimes  =   NumberTimes +1
    RETURN  Total
    END FUNCTION

  • Update to 10.6.8 and HP F2100 and D2400 Printers stopped working. Restored 10.6.7 and printers from Install CD's but not working,  Same with scanner

    Help....
    Updated to 10.6.8 and HP F2100 and D2400 Printers stopped working.
    Restored 10.6.7 and printers from Install CD's but not working.
    Same with F2100 scanner
    Am I glad I kept Windows desktop as without it I would be scre**ed now
    What is going on with this latest update as its like a return to Windows with things crashing or hanging up every few minutes????
    On a MacBook Air that has not been updated everything still works so what has 10.6.8 done and why won't the restore to 10.6.7 work?
    Steve

    None of those things you mentioned were what I suggested.
    I'm guessing the "ctrl click in printer preferences" means you Reset the Printing System?
    If so, that is what I would have suggested if deleting it by selecting the ( - ) button and then adding it with the ( + ) button.
    But, if HP has a fix, it likely needs to update its drivers.

Maybe you are looking for

  • How to set up Airport Extreme in a Hotel?

    Hi guys, i'm living in a hotel for about a month or so and i don't like the hotel's wireless internet (it's at a Hilton Garden Inn) so i decided to buy this Airport Extreme so i could have a better connection. I like to play xbox 360 also and the lag

  • How do I get rid of an old icloud account that was hacked and i don't have the password for?

    I was hacked awhile back and had to change to a new email. i was able to change my itunes account over but my icloud did not come over to the new account. I can not delete or change the old icloud account because I don't have the password for it.  wh

  • Missing thumbnail images

    I run iPhoto 6 on OSX 10.4.10. For some time, part of the thumbnail view of my library has not been appearing. What I get is a dotted outline where the image should be. It's in one particular, earlier section of my library but not all the earlier sec

  • I purchased songs via my iPhone but lost it when syncing with itunes. How do I get them back?

    Hi everyone, I'm sure this happened to some of you before but I'm not sure what I'm doing wrong. I purchased music direct via my iPhone but when I synced with iTunes some of my albums were missing. What is also weird is that the digital booklets have

  • Posting double invoice - where is the control?

    Hello Gurus, Need your help. Can anyone advice me on where in SPRO I can change so that the system will check the document reference number to determine whether the invoice has been posted before or not? The invoices are being posted in FICO-AP (tran