How to use form-login in iPlanet?

Hi guys:
I tried to use J2EE form-based login feature to trigger user authentication,
but I can only specify the login page and the login error page, so how to
redirector the location after user login successful?
Thanks

You need to try to reach a page/servlet/pattern that is protected. Then the j_security_check action in your form-login page will be populated with the relevant parameters. You will be presented with a login page when you try to access the servlet, then you will be redirected to the appropriate protected resource.

Similar Messages

  • How to use form has online exam

    Hi,
    I need to configure a form as an exam. The user fills the form but has to have all the rigth "answers" before an e-mail is sent to him stating that he has completed the training.
    Thank you for any clues the would help me do this.
    Mathieu

    How much would you charge me to setup the basic code that I could manage myself afterwards.
    I am a quick learner.
    I did the whole site by myself with your help and BC. www.geppp.com
    I just need to have an e-mail send if a user has all the right answers to the an online exam.
    Le 2013-10-08 à 20:54, Liam Dilley <[email protected]> a écrit :
    Re: How to use form has online exam
    created by Liam Dilley in Business Catalyst - View the full discussion
    You will need to do some javascript and a matrix system to know what the options are and what the right answers are relevent to those.
    How is your knowledge in this area?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5746256#5746256
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5746256#5746256
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5746256#5746256. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Business Catalyst at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Mathieu Norton-Poulin, M.Ps., psychologue
    Institut de Psychologie Clinique de Gatineau
    4 Impasse de la Gare-Talon
    Suite 202
    Gatineau, Qc
    J8T 0B1
    Courriel: [email protected]
    Web: www.mnppsychologue.com
    Web: www.pftgatineau.com

  • How to use forms trace file for performance tuning

    I am trying to use forms trace file in order to find cause of forms application performance problem.
    I have read the document B14032-03 where is described how to turn on tracing and how to convert binary trace file to xml or html format. However these xml/html files are useless because they only contain series of forms events, without possibility for grouping or sorting. Actually, they are like to database raw trace file. I need some tool, like tkprof for database trace, that will process xml/html file and generate some more useful format.
    Further, I have tried to load forms trace file into relational database tables in order to use SQL for performance problem investigation. I have followed procedure described in document A92175-01, but without success.
    Is there any way to process xml/html file with grouping, orderering or summing event duration or way to load either binary, xml or html trace file into structured data in database.

    Al-Salamu Alikum user630033
    It's not : elegant at all to thank people 4 No help,it's not their problem that u don't search enough, or u don't have access to db.
    We should always say thank ,or 'Jazak Allah Khiern' on both cases even they could or couldn't help u.
    Finally,i expect ' an appologize or even a thankful word ' and the kindness i am sure u had to publish the solution u found in order to share it with people who had same problem or at least to give them the info to get the appreciation or the thanksful word u deserve.
    Rem.Never give a bad feedback to people who tried to help u.
    Regards,
    Abdetu..

  • How to use form personalization to lunch concurrent program

    Hi,
    Now I am using the form personalization to lunch a concurrent program with global variables.But how to post the global variables to the program parameters.
    Thanks and best regards
    Fang
    Edited by: 895910 on Dec 25, 2011 7:54 PM

    Hi,
    I have defined global variables using form personalization. But how should i launch a SRS Form to submit a request and pass the variables as parameters. What should the syntax be.
    Thanks and best regards,
    Fang

  • How to use Form?

    Hi,
    I got some problems when using Form:
    java.lang.ClassCastException
    at com.sun.faces.taglib.html_basic.FormTag.setProperties(FormTag.java:160).
    Here is my jsp:
    <%@ page contentType="text/html; charset=ISO-8859-1" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="jsfh" %>
    <html>
         <head>
              <title>Login</title>
         </head>
         <body>
         <!--
         <p align="center"> WOW - Logon Page </p>
              -->
              <jsfh:form id="frmLog">
                   <!-- user infomation input -->
         <table cellpadding="0" cellspacing="1" >
         <tr>
              <td> Username </td>
         <td>
         <jsfh:inputText id="name" size="10" value="#{user.username}"/>
         </td>
         <td> <font color="#FF0000" size-2> * Required for Register and Logon </font> </td>
         </tr>
         <tr>
              <td> Email </td>
         <td>
         <jsfh:inputText id="email" size="30" value="#{user.email}"/>
         </td>
         <td> * Optional for Register and Logon </td>
         </tr>
         <tr>
              <td> Password </td>
         <td>
         <jsfh:inputSecret id="password" size="8" value="#{user.password}"/>
         </td>
         <td> * Required for Register and Logon </td>
         </tr>
         </table>
                   <!-- command buttons -->
         <table>
         <tr>
              <td>
         <jsfh:commandButton id="cmdRegister" value="Register" disabled="{user.isLoggon}"
    action="#{user.register}" />
         </td>
              <td>
         <jsfh:commandButton id="cmdLogon" value="Logon" disabled="{user.isLoggon}"
    action="#{user.logon}" />
         </td>
              <td>
         <jsfh:commandButton id="cmdLogout" value="Logout" disabled="{user.isLoggon}"
    action="#{user.logout}" />
         </td>
         </tr>
         </table>
         </jsfh:form>
         <H3> Usage: </H3>
         <UL>
              <LI>If you are new to WOW, please click button "Register" fisrt; </LI>
              <LI>If you already have an account, please click button "Logon"; </LI>
              <LI>If you already logged in WOW and want to take off, please click button "Logout". </LI>
         </UL>
         <p> Go back to WOW main page for more information about this system. </p>
         </body>
    </html>
    thanks,
    Guangming

    Hi,
    This forum is exclusively for the Sun Java Studio Creator related discussions. Could you please post your question in the appropriate forum.
    Thanks,
    Creator Team.

  • HELP: do u know how to use forms pluggable java component...

    Hi all,
    I'm looking for a sample for using java component within Forms: how to installl them? how to use them? ...
    Cyryl from france

    Did you already check the demos on OTN at:
    http://otn.oracle.com/sample_code/products/forms/content.html
    Check the viewlets to see how to develop and deploy them and you can even get code to use them.

  • How to use Form tracking (T.code-J1IUN)

    Hi all,
    How to use the form tracking.and How to use the J1IUN. Can anybody help give a details idea how to track the C form wether the customer is giving the form againt the billing document .
    Thanks in advance.
    Regards,
    Abhijit.

    hi
    As per indian C form business process J1IUN will not meet the requirements.
    we have to develop Z programme for this, logic is
    1. Transaction one is  all CST 4 % or 3 %  invoices we have to store in Z table. (daily by creating Z tcode)
    2. second  transaction is maintain the C from numbers for respective invoice numbers ( by crating Z code)
    3.develop 2 reports, one is invoices with C from numbers another one is invoices with out c form numbers.
    so by sitting with u r abaper u can give above solution

  • How to use form components in canvas

    Hai folks
    Im bit cofused here. Some say that v can use forms in canvas and some say cant. Im in a hurry in developing a real time appln. Please any one come up with a solution. Is it difficult to use J2ME Polish.

    Hi,
    the installer jar is a jar file that needs to be un-jarred, usually by double clicking the jar file. Once you (install) un-jar the
    1) For example, if you download the latest solutions catalog from
    https://blueprints.dev.java.net/servlets/ProjectDocumentList?folderID=4144&expandFolder=4144&folderID=0
    you will download bpcatalog-ee5-ea-0.6-installer.jar
    2) then you have to install/unjar it
    To Install: Double-click the jar file bpcatalog-ee5-ea-0.6-installer.jar, or run 'java -jar bpcatalog-ee5-ea-0.6-installer.jar'      
    3)This creates a folder bpcatalog-ee5-ea-0.6/ which has the contents of the blueprints solutions catalog, including the JSF component libraries.
    4) then if you want to use a JSF component library such as bp-ui-14.jar which contains the calendar component, then move/copy the bp-ui-14.jar to your application that you want to us it in.
    Then you use it like any JSF component library (see the links I put on previous posting if need more detail on that)
    I think the confusion you were having is that you were using the installation jar bpcatalog-1.0.1_01-installer.jar instead of the JSF component library bp-ui-14.jar in your app?
    hth,
    Sean
    Thank you for Reply.
    hen i use
    "bpcatalog-1.0.1_01-installer.jar" in
    my projects lib folder its not working
    an exception occurred
    Jan 4, 2007 6:01:49 AM
    org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw
    exception
    org.apache.jasper.JasperException: The absolute uri:
    http://java.sun.com/blueprints/ui/14 cannot be
    resolved in either web.xml or the jar files deployed
    with this application
    at
    t
    org.apache.jasper.compiler.DefaultErrorHandler.jspErro
    r(DefaultErrorHandler.java:50)....
    can you tell me what are all the java blueprint jar
    file should be placed in my project....
    Since bpcatalog-1.0.1_01-installer.jar is in
    installation type...... plz tell me a step by step
    process....

  • How to use tld files in iPlanet

    Hai Friends,
    I don't know basic stuff of iPlanet. plz help me. I have developed one application in tomcat. Now i need to move that application from tomcat to iPlanet 6.0(Solaris). When i deployed it in iPlanet i am geting following exceptions plz guide me
    [02/May/2006:17:40:18] failure (26802): Internal error: servlet service function had thrown ServletException (uri=/ACM/jsp/bottom_pa
    ge1.jsp): org.apache.jasper.compiler.ParseException: /user3/acm/iplanet/servers/ACM/jsp/bottom_page1.jsp(2,0) Page directive: Invali
    d attribute, pageEncoding, stack: org.apache.jasper.compiler.ParseException: /user3/acm/iplanet/servers/ACM/jsp/bottom_page1.jsp(2,0
    ) Page directive: Invalid attribute, pageEncoding
    at org.apache.jasper.compiler.JspUtil.checkAttributes(JspUtil.java:237)
    at org.apache.jasper.compiler.Parser$Directive.accept(Parser.java:194)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1077)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1042)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1038)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:218)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadJSP(JspServlet.java:193)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$4(JspServlet.java:167)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:477)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:589)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:897)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1065)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:959)
    , root cause:
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element tag-class in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element body-content in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element tag-class in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element body-content in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] info (26802): JSP11 Log:Warning: Unknown element variable in tag
    [02/May/2006:17:40:18] failure (26802): Internal error: servlet service function had thrown ServletException (uri=/ACM/jsp/header.js
    p): org.apache.jasper.compiler.CompileException: /user3/acm/iplanet/servers/ACM/jsp/header.jsp(101,0) Unable to load class null, sta
    ck: org.apache.jasper.compiler.CompileException: /user3/acm/iplanet/servers/ACM/jsp/header.jsp(101,0) Unable to load class null
    at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:128)
    at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:753)
    at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:132)
    at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:903)
    at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:188)
    at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:825)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1077)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1042)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1038)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:218)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadJSP(JspServlet.java:193)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$4(JspServlet.java:167)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:477)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:589)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:897)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1065)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:959)
    , root cause:
    (END)

    Thank u Very much.
    And small doubt again. I am writing one custom tag in my application for that we need one tld file. In tomcat i wrote like this
    <tag>
    <name>Menu</name>
    <tag-class>com.citigroup.acm.taglib.MenuTag</tag-class>
    <body-content>JSP</body-content>
    <variable><name-given>parentId</name-given></variable>
    </tag>
    but in iPlanet i modified(insted of tag-class i used tagclass) like the following, b'coz i got some exceptions
    <tag>
    <name>Menu</name>
    <tagclass>com.citigroup.acm.taglib.MenuTag</tagclass>
    <body-content>JSP</body-content>
    <variable><name-given>parentId</name-given></variable>
    </tag>
    Now i am getting error at <variable> how to handle that plz help me

  • How to use Form Procedure/Function in Jdeveloper

    As we use in Oracle Form Procedure and Functions, but in Jdeveloper how can I use....??? Like
    in Oracle Forms after saving following auto number generate in Customer table......
    SELECT MAX(CUST_CODE)+1
    INTO :cust_code
    FROM CUSTOMER
    but in Oracle Jdeveloper how to do this.................?????

    Hi,
    have a read here: http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvgen.htm#sm0297
    In Java you don't directly write into a input text fiel. So if the above is not what you need, then you
    1. get access to the transaction exposed through the ApplicationModule in ADF BC (assuming you use ADF BC)
    2. Create a prepared statement to read from the DB and o write back to a variable in Java
    3. Get a handle to the UI component and set this value
    Frank
    Edited by: Frank Nimphius on Apr 13, 2010 2:11 PM

  • How to use form name in struts html:form tag

    Hi,
    I want to validate text box value, if it is ordinary html form I would have done like this <form name="myform" action="xxxx.jsp" onsubmit="return validate()">
    But am using struts html:form tags. In this case how can I use/specify name for a form.
    Can any one help me.
    Thanks

    The name of the form comes from the actionForm you have defined backing it.
    View source on the generated page to see what HTML it constructs.
    You are able to use the onsubmit event with the <html:form> tag just like the standard one, so if all you want to do is that:
    <html:form action="/saveUser" onsubmit="return validate()">
    ...You can also give it a styleId, which will generate an id in the HTML.
    See the tag documentation for details: http://struts.apache.org/1.2.x/userGuide/struts-html.html#form

  • How to use Forms Default Database Connection in java class

    When a form based application is started, a connection is made with underlying database. This is the Default (Primay) Database Connection.
    The problem is I have some of my business logic implemented in a java class. In this class I have to make a another connection with the same database. What I want to do is to use the original Database Connection in the java class. In this I may avoid the overhead of reconnection.
    Could anyone pls guide me in this way...

    you can't share the forms connection. Sorry :(

  • How to use form connect to MS SqlServer?

    Hi,
    I want to use form9i connect to MS Sqlserver.
    I try to use this to test connect.
    =========================================
    declare
    connection_id EXEC_SQL.ConnType;
    cursor_number EXEC_SQL.CursType;
    -- Variables for the data to be returned into
    begin
    connection_id := EXEC_SQL.OPEN_CONNECTION('sa/pwd@odbc:sqlserver1');
    if EXEC_SQL.IS_CONNECTED(connection_id) then
    message('Connected to sqlserver');
    else
    message('ERROR: No connection established');
    end if;
    end;
    =====================
    But It's not work.
    It's show message 'Frm-40735 and ora-306500.'
    Please help me .
    Thank you.

    Hi,
    Forms 9i doesn't support ODBC. You would need a transparent Gateway to connect to non Oracle databases
    Frank

  • How to use Form Debugger

    i want to user oracle 10gDS form debugger. ive used the method described in help but no avail. plz someone help me. i'll be very thankful to u

    It would help us if we knew what was not happening for you..are you getting errors? what steps are you following?
    Regards
    Grant Ronald
    Forms Product Management
    http://www.groundside.com/blog/content/GrantRonald/

  • How to use FORM syntax?

    I wrote a short program about FORM syntax and planned to test this.
    But when I built it, have an error message. Would you help me check the program where is the mistake.
    The display message is “statement is not accessible”.
    The cursors focus the “PERFORM TABTEST1.”.
    *& Module Pool       ZSKY0614INCOM
    PROGRAM  ZSKY0614INCOM.
    TABLES SFLIGHT.
    PERFORM TABTEST1.
    WRITE : / SFLIGHT-PLANETYPE , SFLIGHT-PRICE.
    FORM TABTEST1.
      LOCAL SFLIGHT.
      SFLIGHT-PLANETYPE = 'A310'.
      SFLIGHT-PRICE = '100.00'.
      WRITE : / SFLIGHT-PLANETYPE, SFLIGHT-PRICE.
    ENDFORM.
    Regards,
    tom

    hi ,
    try like this,
    TABLES SFLIGHT. [ declare this as a global one in includes ]
    PROGRAM  ZSKY0614INCOM.
    write all this code in pbo event...............
    PERFORM TABTEST1.
    WRITE : / SFLIGHT-PLANETYPE , SFLIGHT-PRICE.
    FORM TABTEST1.
      LOCAL SFLIGHT.
      SFLIGHT-PLANETYPE = 'A310'.
      SFLIGHT-PRICE = '100.00'.
      WRITE : / SFLIGHT-PLANETYPE, SFLIGHT-PRICE.
    ENDFORM.
    if useful reward some points.
    with regards,
    suresh.
    Regards,
    suresh.

Maybe you are looking for

  • Album not appearing in iTunes!

    I am a new user of an IPad and using it with iTunes.  I have a good selection of purcahsed via iTunes music and that's all downloaded fine.  I also have been ripping some of my purchased CDs using iTunes and in the main this works great.  I have some

  • Photo Stream only Uploading Some Photos

    Has anyone else noticed this?  If I take a picture on my iPhone 5, sometimes it shows in my camera roll and in Photo Stream.  Sometimes, it only shows in my camera roll.  Likewise, the Photo Stream library on my iPad 4 isn't picking up the new photos

  • Firefox keeps talking to me. I have already disabled MS Narrator. How do I fix this?

    As I type this question, there is an ad talking to me even though there is nothing on the screen. I have already disabled MS Narrator and checked the settings in Firefox and can't find anywhere to turn OFF this annoying audio. I have Googled the prob

  • Quality loss when importing/exporting in premiere pro cs4

    Hi, I am fairly new to premiere pro cs4, but have some experience in final cut and after effects cs4, and I have a problem thats been bugging me for awhile. I decided to try out premiere pro again [only used two or three times] I made a new project a

  • Javacard and database

    Am back! this time, i need to implement an offline smart card solution(ie one that implements most of the functionality-almost all- on the card itself) for security application in buildings. And i intend to use Javacard. I need to know if i need a da