Form Based Auth Scheme on IIS not working

Hi All
I am facing some issues while using Form Based Authentication scheme to protect a resource which is on IIS 6.0. The problem comes only when the action URL is other than "/access/oblix/apps/webgate/bin/webgate.dll".
The form reappears even after submitting the correct credentials. The login form also having a same action URL as of Authentication scheme and also it (action URL) has been protected with Anonymous Authentication scheme.
The same scenario works when there is GET in the login form. But when I use POST, it does not work. I have also made sure that the registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Oblix\Oblix COREid\version\WebGate\postdata="yes" has been correctly set. Policy Manager and WebGate have been installed in the same folder.
Any suggestion on what I might be missing in the configuration?

Hi,
Thank you very much for your valuable inputs on this topic. I tried the changes to my web service configuration as per your suggestions & also made the remote web application adhere to form based authentication but i still see the login page everytime i create a new session with the portal. My web.xml file for remote web app looks like this now:
<web-app>
<security-constraint>
<display-name>Example Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/protected/*</url-pattern>
     <http-method>DELETE</http-method>
<http-method>GET</http-method>
<http-method>POST</http-method>
     <http-method>PUT</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
<user-data-constraint><transport-guarantee>NONE</transport-guarantee></user-data-constraint>
</security-constraint>
<!-- Default login configuration uses form-based authentication -->
<login-config>
<auth-method>FORM</auth-method>
<realm-name>Example Form-Based Authentication Area</realm-name>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/error.jsp</form-error-page>
</form-login-config>
</login-config>
<security-role>
<description> An administrator </description>
<role-name>
manager
</role-name>
</security-role>
</web-app>
Now, my portlet url is http://pc:8080/TestLoginApp/protected/index.jsp
& login & post urls are:
http://pc:8080/TestLoginApp/login.jsp &
http://pc:8080/TestLoginApp/protected/index.jsp respectively.
What is it that i am still missing? Any help in resolving this would be greatly appreciated.
Thanks
Ankur

Similar Messages

  • Problem with JAAS Form Based Auth

    Hello
    I have JAAS form based auth almost working. I have an app and when I try to access it the login page comes up as planned. So far so good. Then problem is when I feed it a bad login password, it comes up with a 403 forbidden error (you are not authorized). What I want (and expected) to have happen was my custom jsp AuthFailed.jsp to come up.
    If i go directly to /AuthFailed.jsp it comes up just fine (without logging in). Is there something else i need to do to get this to come up? Any help greatly appreciated. I configured these two forms by right clicking web.xml and choosing properties then under the proper menu I picked form based.
    Thanks
    troy

    Hi,
    You'll want to add something similar to the following in your web.xml file:
      <login-config>
        <auth-method>FORM</auth-method>
        <form-login-config>
          <form-login-page>Login.jsp</form-login-page>
          <form-error-page>LoginError.jsp</form-error-page>
        </form-login-config>
      </login-config>

  • Form-based Auth for DefaultWebApp

    I'm using WLS 6.0 SP2 on WIN2K. I tested the sample security
    web app that uses form-based auth and am trying to do something
    similar w/ the default web app in mydomain.
    Here's my web.xml:
    <?xml version="1.0" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 1.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <!--
    Authentication
    -->
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Default</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>system</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.jsp</form-login-page>
    <form-error-page>/fail_login.html</form-error-page>
    </form-login-config>
    </login-config>
    <!-- Security role which is global to the application -->
    <security-role>
    <role-name>administrators</role-name>
    </security-role>
    </web-app>
    When I try to access a web page, http://localhost:7001/res/hello.html,
    the browser keeps trying to open that
    page. It goes on and on.... I never
    get challenged w/ the login form, nor
    seeing the page. However, when I change
    FORM to BASIC, and delete the "form-login-config"
    settings, I get challenged w/ the HTTP
    basic auth dialog. Enter my credentials
    and I get the page.
    How do I config the default web app to use form-based
    auth?
    Thanks for any help you can provide.
    -Muwon

    Problem solved. The definition of your <url-pattern>
    (within <web-resource-collection>) can't inlcude where
    your logon form is.
    "Muwon" <[email protected]> wrote:
    >
    I'm using WLS 6.0 SP2 on WIN2K. I tested the sample security
    web app that uses form-based auth and am trying to do something
    similar w/ the default web app in mydomain.
    Here's my web.xml:
    <?xml version="1.0" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
    1.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <!--
    Authentication
    -->
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Default</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>system</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.jsp</form-login-page>
    <form-error-page>/fail_login.html</form-error-page>
    </form-login-config>
    </login-config>
    <!-- Security role which is global to the application -->
    <security-role>
    <role-name>administrators</role-name>
    </security-role>
    </web-app>
    When I try to access a web page, http://localhost:7001/res/hello.html,
    the browser keeps trying to open that
    page. It goes on and on.... I never
    get challenged w/ the login form, nor
    seeing the page. However, when I change
    FORM to BASIC, and delete the "form-login-config"
    settings, I get challenged w/ the HTTP
    basic auth dialog. Enter my credentials
    and I get the page.
    How do I config the default web app to use form-based
    auth?
    Thanks for any help you can provide.
    -Muwon

  • Sun AppServer 9.0 Update 1 on Solaris not supporting form-based auth

    Ok, I installed Appserver 9 on a Solaris box and then started up the default domain1. When I point the browser to http://localhost:4848 I am not pointed to the login page for the admingui, it just bypasses the authentication and I am allowed to perform all admin actions without logging in. I then deployed a custom web application that uses form-based authentication that works correctly on Sun Appserver 8.1. However it behaves the same way as the admingui application (I am not presented with a login page). After setting some of the log levels to FINEST and looking at the logs it appears that when these requests are coming in they are not matching any constraint (but the constraints are defined in the web.xml). Installing Appserver 9 on a win2k box does not have this issue. Has anyone else seen this problem? Is there some security setting that is not turned on by default from the solaris install????

    Ok if anyone is interested I was able to fix my problem. It looks like the issue is the version of java used with Appserver 9 on Solaris. The latest version of java i have on the machine is Java 1.5.0_06, but everytime I try to install the Appserver with this version it hangs at 39% into the installation. The next latest version of Java i have on the machine is 1.5.0_02, so that is the version I was using to install and the install works perfectly. However, after the install the form-based authentication does not work with this version of Java on Solaris.
    They way I fixed this was to modify the asenv.conf file in the Appserver_Install dirrectory to point to the Java 1.5.0_06 installation and started the domain, now the form-based authentication is working as expected.
    I guess my question now is does anyone know why I can't install the server with Java 1.5.0_06? But it looks like I need that version to actually run things correctly.

  • Windows NT - Weblogic 12c Form based Auth ?

    Hello,
    I am migrating an EAR from Websphere to Weblogic. One of the WARs inside the EAR uses a Login that is written with Form based authentication. In Windows, I have set up the users and groups. The client browser for WAR should be able to login with the local OS username.
    The code and cofig are written as specified in a [weblogic |http://docs.oracle.com/cd/E24329_01/web.1211/e24485/thin_client.htm#i1034590] tutorial. One difference between the example in the tutorial and my config is, the tuitorial relies on the default security realm is considered but my code, there is 'ES Manager realm'. I believed the ES Manager realm will provide the link between weblogic-my WAR-Local Win NT OS-users & groups. I have configured the Auth provider as WinNT and expected to choose the Win NT users that I wanted my WAR to use. But that did not happen.
    The web.xml, weblogic.xml, java code and jsp are fine. I guess the configuration in the weblogic admin console is the missing link.
    Can you please help me on what has to be done in the admin console.
    regards,
    Raj

    Hello,
    I entered the values at Home >Summary of Security Realms >ESP Manager Application >Users and Groups >Providers >MyDomain for the 'Provider Specific' values. The provider is LDAP. I have no clue what values are expected, as my context based help is not working in the admin console. I managed to fill values using a client called Microsoft Active Directory Explorer for LDAP. I should have filled the wrong values because when I access the Users and Groups, I get the following error in the startWeblogic command prompt.
    <01-Feb-2013 16:14:01 o'clock GMT> <Warning> <Security> <BEA-099117> <The LDAP authentication provider named "MyDom
    ain" failed to make connection to ldap server at ldaps://192.168.0.125:389, the error cause is: Connection reset.>
    <01-Feb-2013 16:14:01 o'clock GMT> <Error> <Console> <BEA-240003> <Administration Console encountered the following erro
    r: weblogic.security.providers.authentication.LDAPAtnDelegateException: [Security:090294]could not get connection
    at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3492)
    at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3479)
    at weblogic.security.providers.authentication.LDAPAtnDelegate.listUsers(LDAPAtnDelegate.java:2267)
    at weblogic.security.providers.authentication.LDAPAuthenticatorImpl.listUsers(LDAPAuthenticatorImpl.java:178)
    at weblogic.security.providers.authentication.LDAPAuthenticatorMBeanImpl.listUsers(LDAPAuthenticatorMBeanImpl.ja
    va:328)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:437)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:791)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:4
    49)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:4
    47)
    at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:263)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:4
    49)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:4
    47)
    at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.
    java:663)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.ja
    va:661)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.ja
    va:654)
    at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1486)
    at javax.management.remote.rmi.RMIConnectionImpl.access$300(RMIConnectionImpl.java:96)
    at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1327)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1426)
    at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:847)
    at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:201)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:299)
    at javax.management.remote.rmi.RMIConnectionImpl_1211_WLStub.invoke(Unknown Source)
    at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:1017)
    at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:544)
    at weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380)
    at $Proxy72.listUsers(Unknown Source)
    at com.bea.console.utils.security.UserUtils.getUsers(UserUtils.java:78)
    at com.bea.console.actions.security.users.UserTableAction.getCollection(UserTableAction.java:100)
    at com.bea.console.actions.security.ManagementBaseTableAction.execute(ManagementBaseTableAction.java:82)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java
    :2044)
    at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptor
    s.java:91)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java
    :2116)
    at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor
    .java:261)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
    at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
    at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
    at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:262)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
    at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:134)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
    at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1129)
    at com.bea.portlet.adapter.scopedcontent.framework.internal.PageFlowUtilsBeehiveDelegate.strutsLookupInternal(Pa
    geFlowUtilsBeehiveDelegate.java:43)
    at com.bea.portlet.adapter.scopedcontent.framework.PageFlowUtils.strutsLookup(PageFlowUtils.java:108)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.jav
    a:707)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.ja
    va:265)
    at com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:103)
    at com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:292)
    at com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:428)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)
    at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
    at com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:465)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:291)
    at com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:231)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:216)
    at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:275)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
    at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:64)
    at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:125)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:242)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:216)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:132)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:338)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3288
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3254)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2163)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2089)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2074)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1513)
    at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.ja
    va:254)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: java.lang.reflect.InvocationTargetException
    at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4166)
    at weblogic.security.utils.Pool.newInstance(Pool.java:37)
    at weblogic.security.utils.Pool.getInstance(Pool.java:33)
    at weblogic.security.providers.authentication.LDAPAtnDelegate.getConnection(LDAPAtnDelegate.java:3487)
    ... 128 more
    Caused by: netscape.ldap.LDAPException: Connection reset (91); Cannot connect to the LDAP server
    at weblogic.security.providers.authentication.LDAPAtnDelegate$AtnLDAPSSLSocketFactory.makeSocket(LDAPAtnDelegate
    .java:4647)
    at netscape.ldap.LDAPConnSetupMgr.connectServer(Unknown Source)
    at netscape.ldap.LDAPConnSetupMgr.openSerial(Unknown Source)
    at netscape.ldap.LDAPConnSetupMgr.connect(Unknown Source)
    at netscape.ldap.LDAPConnSetupMgr.openConnection(Unknown Source)
    at netscape.ldap.LDAPConnThread.connect(Unknown Source)
    at netscape.ldap.LDAPConnection.connect(Unknown Source)
    at netscape.ldap.LDAPConnection.connect(Unknown Source)
    at netscape.ldap.LDAPConnection.connect(Unknown Source)
    at weblogic.security.providers.authentication.LDAPAtnDelegate$LDAPFactory.newInstance(LDAPAtnDelegate.java:4141)
    ... 131 more
    Caused by: java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(SocketInputStream.java:189)
    at java.net.SocketInputStream.read(SocketInputStream.java:121)
    at weblogic.socket.JSSEFilterImpl.readFromNetwork(JSSEFilterImpl.java:445)
    at weblogic.socket.JSSEFilterImpl.handleUnwrapResults(JSSEFilterImpl.java:616)
    at weblogic.socket.JSSEFilterImpl.unwrapAndHandleResults(JSSEFilterImpl.java:498)
    at weblogic.socket.JSSEFilterImpl.doHandshake(JSSEFilterImpl.java:93)
    at weblogic.socket.JSSEFilterImpl.doHandshake(JSSEFilterImpl.java:71)
    at weblogic.socket.JSSESocket.startHandshake(JSSESocket.java:170)
    at weblogic.security.providers.authentication.LDAPAtnDelegate$AtnLDAPSSLSocketFactory.makeSocket(LDAPAtnDelegate
    .java:4644)
    ... 140 more
    >
    Can you please tell me some information link for Oracle 12c.
    Thanks,
    Raj

  • GR based IV for delivery costs not working

    Hi Gurus,
    GR based IV is not working for certain delivery costs. I have not assigned any accrual key to the condition type in the calculation schema.
    When I try to perform invoice verification for the delivery cost, the GR quantity / value does not appear automatically.
    Is there anything I need to do with the schema / condition type?
    Regards,
    Aroop

    Hi Kumar,
    I had missed out the Vendor in GR option 2 in the condition type configuration: I changed it to 2, but the problem remains.
    During PO creation, the vendor gets mentioned against the condition type automatically.
    Any further idea on this?
    Regards,
    Aroop

  • Form Based Authentication Scheme

    Hello!
    I was trying to set up Form Based Authentication as part of which I have created and html form
    But where should I be store it on the server.
    I placed it in two places /webserver/conf/login.html
    and also under netpoint/access/oblix/lang/en-us
    What is the correct location?
    and my form based authentication has the following values:
    Name           Form Authentication
    Description           Test Form authentication
    Level           1
    Challenge Method           Form
    Challenge Parameter           
    action:/access/dummy.cgi
    form:/login.html
    creds:username password
    SSL Required           No
    Challenge Redirect           
    Enabled           Yes
    credential_mapping      obMappingBase="dc=host,dc=com",obMappingFilter="(&(objectclass=inetorgperson)(uid=%ssousername%))"
    validate_password      ObCredentialPassword="password"

    Your form should be in your web server's docroot, of course.
    Also, there is another problem that you'll run into sooner or later. Your scheme supplies the "creds:username password", but the plugin uses a credential "%ssousername" which OAM will does not know where to get. Also make sure that the creds you are passing in tune with the form code itself.
    -Vinod

  • Associate Form Design in Content Services ES2 not working

    The Associate Form Design feature in Content Servies ES2 is not working.  I am using a LiveCycle PDF with an embedded XSD schema.  The only error message I get is: Failed to retrieve form design fields from the document.  Does this feature really work?
    Thanks,
    Toni

    Hi Toni,
    The feature does work and has been QE'ed well. Can you attach the error logs and server environment details (appserver etc) so that the team can have a look.

  • 10g forms developed using windows machine is not working in Solaris machine

    I have developed a form using the following version of Oracle Developer suit 10g Fomrs using WINDOWS machine.
    My Application server is in a SOLARIS machine. All the .fmx are copied in the same SOLARIS machine in a directory.
    I have copied the form (.fmx) in the same directories where the other forms are, in the SOLARIS machine.
    Now i click on the menu item (menu item was already present there before developing the form in the menu. I did not have to create a new menu item in the Menu) in the windows machine.
    The form doesnt appear.
    Could you please tell me wheather i have to compile the form that i have developed in WINDOWS machine in some format of SOLARIS machine, or I have to do something else so that on the click of Menu item in Windows machine that form appears. Or Ihave to develop the form using SOLARIS machine?
    Please help me.
    I am working on the following version of Oracle Developer suit 10g Fomrs
    orms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production

    hi
    still its not working
    Please I need help
    bash-2.05$
    bash-2.05$ /u02/oradata/data/PROJ/APPS/bin/frmcmp userid=xxx/xxx@xxx batch=yes module=AB.fmb module_type=form compile_all=yes window_state=minimize
    FRM-91500: Unable to start/complete the build.
    bash-2.05$
    I have set the following environment variables.
    LD_LIBRARY_PATH=/u02/oradata/data/PROJ/APPS/lib32:/u02/oradata/data/PROJ/APPS/jdk/jre/lib/sparc:/u02/oradata/data/PROJ/APPS/jdk/jre/lib/sparc/native_threads:/tmp/OraInstall2008-07-11_03-00-49PM/jre/1.4.2/lib/sparc/client:/tmp/OraInstall2008-07-11_03-00-49PM/jre/1.4.2/lib/sparc:/tmp/OraInstall2008-07-11_03-00-49PM/jre/1.4.2/../lib/sparc:/usr/lib:/usr/ccs/lib:/u01/oracle/product/10.2.0/lib:/usr/lib
    ORA_NLS10=/u01/oracle/product/10.2.0/nls/data
    JAVA_HOME=/u02/oradata/data/PROJ/APPS/jdk
    ORACLE_HOME=/u02/oradata/data/PROJ/APPS
    ORACLE_TERM=vt100
    FORMS_PATH=/u02/oradata/data/PROJ/APPS/forms
    TERM=vt100
    PATH=/usr/bin:/usr/ccs/bin:/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/boapp/oracle/product/9.2.0/bin:/usr/lib
    NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    TNS_ADMIN=/u02/oradata/data/PROJ/APPS/network/admin
    OSTYPE=solaris5.9
    regards

  • Master details form: in the details form the List of values is not working

    The master details have an upper form and a lower form OK
    So, the List of values of values in the upper is working fine,
    the lower form or the details form the list of values not working on it and the code is right, and mean not working like when you press on it its not showing any thing
    also is work on a regular form like a tabular form .
    so please help !!!
    Edited by: user8925579 on May 12, 2011 2:28 PM
    Edited by: user8925579 on May 12, 2011 2:37 PM
    Edited by: user8925579 on May 12, 2011 2:37 PM

    SOLVED
         CMC -> Connections
    -     Right click connection name, Click u201CTools > Check Relationshipu201D
    -     In u201CQuery Resultsu201D, Right click Connections, Click u201CUser Securityu201D
    -     Assign Security for u201CEveryoneu201D
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D
         CMC -> Universes
    -     Right click u201CUniversesu201D folder, click u201CPropertiesu201D
    -     Under u201CUser Securityu201D, click Everyone and assign security
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D

  • BUG: Oracle Schema Processor does not work in Servlets

    We found a bug with Oracle's Schema Processor. It does not work in Servlets.
    When we try to validate a XML document in a Servlet it does not work, but we can execute the same code in a stand alone application and it works.
    The following is the code we are using:
    try {
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    } catch(Exception e){System.out.println("there is Error"+e.getMessage());}
    null

    I don't think this is related to Servlets per se.
    Check that the Schema processor classes used by the servlet container, and your application are the same.
    Java does not have proper versioning of classes, I have seen many applications collapse. People compiled their code on developer machines, where it worked fine, but when moved to a production machine they failed because the production machine had a different version of classes. Usually the name of the class doesn't change, but either a method or a variable is missing in several classes. VM doesn't complain but simply crashes.
    In your Schema Processor classes that are used by the servlet engine might be different from the one that the app uses. Do a search on the file system to see how many copy of the same class bundle (zip, jar) you have on the system.

  • Page Authorization Scheme OK button not working

    Hi All,
    I have a Page Level Authorization scheme, which makes a PL/SQL Function call to determine whether the logged in user should have access to the Page. This works well and displays an 'Access denied by Page security check' error message, but the OK Hyperlink that is displayed does not work as I would expect as I am not returned to the calling page.
    The pages in question are Popups and when I hover over the OK Hyperlink, the Javascript in the Taskbar shows javascript:window.history.go(-1). Is this the route of my problem, and is there any way around this when using Popup windows?
    Thanks,
    Mike

    Scott,
    Thanks for your response. Yes you have the sequence right: "User clicks on link to popup page from base page and the link is to a forbidden page"
    "The basic question is why would you ever show a link to a forbidden page to the user?"
    The main reason is time, ideally yes we would like to hide links to forbidden pages but it will take time to implement due to complexity of role combinations and number of pages. So for now, we are confident in our method for denying access to forbidden pages.
    The error message that is displayed on the forbidden page is set in the Authorization Scheme, but how do I alter the OK link? Isn't this generated 'behind the scenes'?
    Thanks,
    Mike

  • Oracle Form Services Installation (Test.fmx) Trigger Not working

    Hi
    I install oracle BI and forms Services on oracle application infrastructure after installation i run the following command "http://ora.server.com:7778/forms/frmservlet?config=testfrm" it will show the form "form services install sucessfully" but when i do a certain cusmization on it i.e. put a one text box on that text put put a key_next tigger in which i show a alert message only. After Customization i run a same URL it will again show that form with the changes but the trigger (Key_next) will not fire
    I don't understatnd why tigger is not working or fire.

    So we understand things correctly,
    You are running a form and a trigger won't fire. What kind of trigger? A when-button-pressed, or a key-next-item, or something else? I don't believe key_next is a valid trigger.
    If you are using a key trigger, you need to make sure that the keys are mapped as you expect. You can see how the keys are mapped in the menu under Help => Keys when you run the form. Make sure the button is mapped like you expect. Additionally, you can modify the mapping by updating the resource file, but that's kind of outside the scope of this...
    This type of questions really is suited for the Forms forum under Developer Tools => Forms at: Forms
    If you need more help, post there. The focus of that section if Forms.

  • Sorting based on a parameter does not work

    Hi All
    I am using BI Publisher Reports with Siebel CRM 8.1.1.6. I have declared a parameter called "inputsort" in the CRM application as well as in the template by using <?param@begin:inputsort?> within the template. I can display the current value of the parameter using <?$inputsort?> without issues.
    However, when I try using this parameter for sorting, it doesn work:
    The report is created for a list of event attendees. When I do this, sorting works:
    <?for-each:EeventsEventCheckAttendee?><?sort:ContactLastName?>
    BUT when I do this, sorting does not work:
    <?for-each:EeventsEventCheckAttendee?><?sort:$inputsort?>
    although the parameter $inputsort does have a value of "ContactLastName".
    What could be the reason??

    never mind, I found the solution myself. For some reason, the correct way is:
    <?for-each:EeventsEventCheckAttendee?><?sort:./*[name(.) = $inputsort]?>
    I don't know why, but it works.

  • JQuery "setting all items to READONLY based on a page item" not working

    I am attempting to use jQuery to set all input fields to "readonly" if the question is in "locked" status (i.e., if P2_QUESTION_LOCKED page item is set to yes ("Y")). The following is the code that I placed in the page attributes (in the javascript section):
    if ($x('P2_QUESTION_LOCKED') )
       if ($x('P2_QUESTION_LOCKED') == 'Y')
           $(document).ready(
           function() {    $('input').attr('readonly','readonly'); });
       }It is not working. All input fields are available for input. I used Firefox 1.6 and Firebug and I have no errors. What am I missing?
    An example is set up in APEX.ORACLE.COM:
    Workspace: RGWORK
    Application: Financial Disclosure (Application 45806)
    User Name: TESTER
    Password: test123
    Run the application, and click on 'Update Current Year's' from the list.
    Robert
    http://apexjscss.blogspot.com
    PLEASE IGNORE THIS THREAD. A THREAD IS ALREADY OPEN. HAD A HICCUP WITH THE INTERNET.
    Robert
    Edited by: sect55 on Dec 12, 2010 3:11 PM

    Hi Robert,
    I have changed your code to
    if ($x('P2_QUESTION_LOCKED') )
       if ($v('P2_QUESTION_LOCKED') === 'Y')
            $('input').attr('readonly','readonly');
       }Especially the
    $x('P2_QUESTION_LOCKED') == 'Y'to
    $v('P2_QUESTION_LOCKED') === 'Y'I have also moved your code into "Execute when Page Loads".
    Couldn't try the code because I was not able to login, but I think the code should work.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

Maybe you are looking for

  • Repeated blue screen crash when running labview 8.2 on Dell optiplex GX620

    Hi, I have recently experienced a series of 'blue screen' crashes on a Dell Optiplex GX620 while running Labview 8.2. The dell is running Windows XP SP2 with an ATI Radeon X600 graphics card. Labview is interfacing with a NI DAQPad 6015 device. The c

  • FICA outgoing payment cheque from FI

    Dear Experts, I have a query like how we can generate FICA Outgoing Payment Cheque (for eg. Refund of Security Deposit) from SAP FI. My client requirement is like that they want all the outgoing payments from FI only. So what are the configuration I

  • Linking Custom Document Properties to SharePoint

    We currently have a Microsoft Office Add-in that, among other things, reads and writes Custom Document Properties. Our add-in includes a user-dialogue through which these values are captured and subsequently displayed within the document. We now have

  • Editing Speech Metadata (Timecodes) in Premiere Pro / After Effects?

    I want to edit the timecodes of metadata words in Premiere and find it not possible. In After Effects, after importing the video file, it now allows me to edit the timecodes, yet incredibly enough, After Effects cannot let me play the video with both

  • Can't suspend activity, sleep ... MBP 10.4.7

    Hi all, first of all sorry for my bad english... Few days ago my battery crash: after 5 min my computer shutdown. They exchange my bat and now i cant make my computer sleep... When i close my computer or when i click on "suspend activity", the screen