FORM design customization - help needed!!

Hi,
I'm working on several forms for a project and I was wondering:
1. How do I change the color of a PUSH BUTTON? The default is gray and changing either foreground/background color don't do anything.... I also tried applying visual attributes and SET_ITEM_PROPERTY built-ins but still couldn't resolve it.
2. Any way I can also change the color scheme of the WINDOW itself during run-time? The default is blue gradient on the top and gray all over. I know this might be a hard one as it might involve editing some default setting of FORMS...
Any help is appreciated!
Regards,
Erica

Erica, I assume you are having this problem on Windows. Windows does not expose the button color as runtime property and so Forms cannot set this. This is controlled by the Forms window manager so if you want a button to be green you have to see the windows setting - and this means all buttons will be green.
Is a limitation of Windows.
Regards
Grant Ronald
Forms Product Management

Similar Messages

  • Web Form Editor - basic help needed!

    I must be the world's dumbest designer. I am trying to create a contact form in Business Catalyst to be placed in Muse. Now, I use Muse because I know very little about coding, so that is probably why I am struggling so bad creating this form. Typically, I use the form building widget in Muse to create my forms, but my client would like to include a dropdown list and an "add file" function to the form. I have watched a couple videos on youtube on how to set up a form, but I am getting hung up on the formatting. The form technically has everything I need, but it is horribly ugly! I have tried using the "Customize Web Form" option within BC (as well as the Style Builder), but nothing I do makes any difference.
    See for yourself:
    THis is what the form looks like in Muse. I manually added the blue box in Muse. There are so many things wrong I don't know where to start! The form fields are too small, I can't change the font or color and I want to get rid of the Title. I have tried playing with the code, but nothing works. Is there a tutorial somewhere teaching us how to edit a form using the built in web form editor?
    Thank you so much for your help!

    You need to assign a class to each input element and then target those classes with CSS.
    Example:
    <input type="text" name="FirstName" id="FirstName" class="cat_textbox" maxlength="255">
    CSS:
    .cat_textbox {
    width: 300px;
    height: 25px;
    border-radius: 3px;
    box-shadow: inset 1px 1px 2px 0 #DADADA;
    -webkit-box-shadow: inset 1px 1px 2px 0 #DADADA;
    border-color: #B6B6B6;
    border-style: solid;
    border-width: 1px;
    I can help you out more in a few hours. I highly recommend learning as much CSS & HTML as you can.
    -Ryan

  • PDF form field calculation help needed

    I need to make some simple calculations on a pdf form and need some help.
    I have a form field for number of guests.
    A field for a set cost for various tickets (there are 3 levels of ticket prices) (I might not need this field).
    A subtotal of the guests attending and ticket price.
    A grand total of the subtotals.
    I can't figure out how to either put in a fixed cost in a form field or input a calculation so that the number of tickets is muliplied by a fixed number and gives me a subtotal.
    Thanks.

    Ok. I finally got the calculations to work. But..... when I save and open in Reader, they don't work. Go back to Pro, they don't work there now either. They also don't show up under the Set Field Order Calculations. To reset them, i have to erase the calculations, save, redo the calculations. Preview the form and everything works — calculations happen and i get a total.
    Adobe Reader usage rights are enabled.
    Why is this so hard?
    I found this thread http://forums.adobe.com/message/1152890#1152890 about it. Is this bug still going on since 2009?
    Ok. Apparently you have to enable reader rights after the form is done. It seems to work now. What a pain.

  • PDF form javascript time help needed

    I am creating a fillable form using time formats and I need help with 2 parts. First part is at the top. I would like the total time to display in hours. It should take total loaded departed minus total loaded arrived time and total it into the first Total Time box as hours but I can only get it to display as a number. Every time I tried to format it as a time it would give me an error.
    Second part I need help with is down toward the bottom. It's called 030-LOAD DELAY. This will also display as a time format. It will take that top Loaded Time Total and subtract an hour. How do I do that?
    I have been googling for hours and hours on this. There's so many ways to do this but every time I try different ways, it doesn't work and I end up confusing myself even more.
    (and btw, I'm using acrobat version 9)

    Ok. I finally got the calculations to work. But..... when I save and open in Reader, they don't work. Go back to Pro, they don't work there now either. They also don't show up under the Set Field Order Calculations. To reset them, i have to erase the calculations, save, redo the calculations. Preview the form and everything works — calculations happen and i get a total.
    Adobe Reader usage rights are enabled.
    Why is this so hard?
    I found this thread http://forums.adobe.com/message/1152890#1152890 about it. Is this bug still going on since 2009?
    Ok. Apparently you have to enable reader rights after the form is done. It seems to work now. What a pain.

  • Order Form Processing - Urgent help needed

    Hi All,
    I am in deep trouble trying to sort this out. Please help me get out of this as soon as possible. I am using JSP, MySQL and Tomcat for development of my company's web site. I have a dealer section where dealers can login and place orders online. Given this scenario following are my worries.
    Suppose all the entries in the form are OK and the form is submitted following has to happen.
    The entry goes to the Order table with status as NEW. This happens and works fine now.
    A copy of acknowledgement is mailed to the dealer. Also possible with JavaMail.
    The order acknowledgement letter is printed automatically without any human intervention. i.e. window.print() method is not to be used.
    Or simply put the user has to click a single button and all these 3 actions should take place, he should not be made to click "Send Message" or "Print" > OK.
    Please anybody and everybody who can help reply.
    Rgds,
    REDAM

    I can help u for sending acknowledgement on clicking submit button.
    u add following code in ur form and ucan send the mail.
    But other things are not clear pl. make them clear,
    Bye
    Samir
    //put mail api and set the classpath, if u need help write again
    <%@ page import="java.awt.*,java.util.*, javax.mail.*, javax.mail.internet.*" %>//import these
    Properties props = new Properties();
    props.put("mail.smtp.host", "urmailserver");//add here ur mail server ip aa 198.1.1.xx or name
    Session s = Session.getInstance(props,null);
         /*String      NAME=request.getParameter("NAME");
         String      COMMANDO=request.getParameter("COMMANDO");
         String      GGBS=request.getParameter("GGBS");
         String      ADDRESS=request.getParameter("ADDRESS");
         //String      NAME=request.getParameter("NAME");
         ///String      NAME=request.getParameter("NAME");*/ change it according to ur need
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress("[email protected]");
    message.setFrom(from);
    InternetAddress to = new InternetAddress("[email protected]");
    message.addRecipient(Message.RecipientType.TO, to);
    message.setSubject("Test from JavaMail.");
    message.setText("Order from * "+DEL_NAME+ " *\n\n "+"Commando Quantity= "+COMMANDO_QTY+"\n\n "+"GGBS Quantity= "+GGBS_QTY+"\n\n "+"Delivery At # "+REC_ADDR1+"\n"+REC_ADDR2+" #\n\n ");//change this to ur need
    Transport.send(message);
         response.sendRedirect("/indorama/jsp/orderconfirm.jsp");

  • Oracle forms installation - some help need

    I am trying to install Oracle forms - but get the follwing message:
    Checking swap space: 576 MB available, 1535 MB required. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    actually - I have no choice to choose y and try what's going on - so - is this means that I shoul add some 1.5 GB of RAM to my computer? (I have already 700MB, only 300 of them are used)? I am using WinXP, free HD is above 3.5 GB, 2.4GHz processor.
    Can I try to find some workaround - e.g. simply try to copy jar's from 'stage' (direcotry in installation disk) in Oracle application server's lib directory (where it is in Oracle_Home directory?)?
    Any experience with installing Oracle forms?
    This was trying to run setup.exe, but when I am trying to run wsf.exe - I get:
    SEVERE: Unable to locate the MDAC Update Status registry key value, probably because the installation was aborted.
    MDAC possibly stands for Microsoft Data Access Components? If so - where is problem - I can run a lot of DB servers, including Oracle server itself normally?
    BTW - is there any free service available for Oracle Forms skills development (e.g. as for Oracle SQL the Intel test drive is available?)
    user454720

    OK - now I increased the max limit of my page file and now I achieved this:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors . Actual
    4294967296 Passed
    Checking swap space: must be greater than 1535 MB . Actual 1600MB Passed
    Checking Temp space: must be greater than 150 MB . Actual 1942 MB Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2006-03-18_01-57-43PM. Please wait ...
    however - after this I receive the standard messgae:
    'setup.exe has encountered a problem and need to close. we are sorry for the inconvenience..... Please tell Microsoft about thsi problem'
    actually - I have little ideas what to do further - maybe I should look for other Oracle Installer version? I am using:
    Oracle Universal Installer version: 10.1.0.2.0
    and I am trying to install
    Oracle Deveoper Suite: 10.1.2.0.2 (so - a bit higher)
    I can run OUI without any problems, my Default JRE is 1.5_1 - so - all seems to be OK?
    Please - if any idea - help me :))
    Thanks in advance!

  • Web forms issue clashed - help needed!

    hello experts,
    i need an urgent as my website is now live, its beyond post-deadline. So I know a kind helpful solution to my problem. Ok here's the thing. I am unable to upload two webform in a single page. If i do add several web form into one page, the email notification won’t work. in other words, i will not receive any enquiries from customers. why is it not possible? i need to add different  web form to different pricing option. please check out what i mean at my photography webpage at http://www.purpleperfect.com/wedding-offer-pricing.html
    please help me resolve this issue, thank you in advance.

    i guess that makes sense.... at least i need to add a second form at the bottom of the page, right on "click here". 
    btw, i have tested the forms, and it works fine. but if i add two different forms from bc into a single page, none of the forms will work within that page. i had this issue previously with my client website, but i never needed two webforms in a single page until today. do help me out.

  • Apex form and LOV help needed

    Hello everyone would anyone be able to help me on a project that im working on basically there are forms with different regions on them and in each of these regions there is a list of values which would be agree, neutral  or disagree now these three drop down values must have a percentage assigned to them like agree would have 60% assigned to it neutral would have 0 assigned to it and disagree would have 20% assigned to it . Heres the thing  how do i assign percentages to those list of values and then have them inserted into a database . So that with more users using this app i could create a chart of the data inputted by the list of values .  [email protected]   

    More details of this can be found in this link:
    http://java.sun.com/webservices/docs/1.2/tutorial/doc/Security5.html

  • Sql Forms 2.3 help needed urgent

    I have a situation here.How to navigate to the next blk, And If we make any changes in the .inp file will it help?
    My client here uses Forms 2.3 for there Oracle Apps 10.7c

    Use the block level trigger FND_NXTBLK, or if not in an AOL environment use NXT_BLK (if I recall correctly). This is how you navigate from block to block. The command would be
    #EXEMACRO exetrg FND_NXTBLK;
    or you could use go_blk
    #EXEMACRO GO_BLK block_name;
    The .inp file is your form. Don't edit it unless you know what you are doing. Use the SQL*Forms tool and you'll be safer.
    Hope this helps. Not much detail in your posting. - Tristan

  • Design / Formatting Help Needed

    Good Afternoon,
    I am in the process of developing a help system to support a
    proprietary green screen application that we use in our
    organization… the green screen application is very convoluted
    and all steps/processes etc to be completed in the system have many
    many steps to complete. In order to not overwhelm the end user, in
    any given help topic there are multiple subtopics that are
    “hidden” until the DHTML dropdown hot spot is
    activated.
    Within each hotspot, there are also “sub hot
    spots”. However, this is confusing to the user… there
    are so many hotspots etc (both hotspots from the main topic page
    and “sub” hotspots within a hotspot) that the user is
    losing track of where they are at.
    I was wondering if anyone had an general design
    recommendations or best practice recommendations that I should be
    adhering to in order to eliminate this confusion.
    Thanks!

    I've used hotspots within hotspots without issues. I suggest
    you break the information into smaller chunks if you can. If a
    particular task is very long, consider making it a book instead of
    a single topic. For example, if you assign one topic to each of
    five tasks, but the third task involves six steps, turn the third
    task into six steps/topics, and bind them as a book in your Help
    file. So you'll go from this:
    1. Task 1 (single topic)
    2. Task 2 (single topic)
    3. Task 3 (single topic)
    4. Task 4 (single topic)
    5. Task 5 (single topic)
    To this:
    1. Task 1 (single topic)
    2. Task 2 (single topic)
    3. Task 3 (one book with six topics)
    4. Task 4 (single topic)
    5. Task 5 (single topic)
    This kind of solution should cut down on some of the
    nesting.

  • CDONTS Form Mail question - help needed

    I have a form on my asp page called MyMail.asp. The form is
    linked to cdonts.asp_form.asp which sends an email of filled in
    text boxes and comboboxes to my email address.
    It works fine when all the fields (eight of them) are filled
    in, but doesnt send the email if any of the textboxes are left
    blank. How can I make it send the email if some of the textboxes
    are blank? I have downloaded Yaromat, but it only seems to make
    fields become "required". I want to be able to send the email with
    say 3 of the eight fields filled out - ie not all of them are
    compulsary.
    Regards
    Billy

    Here is the code -
    Firstly the form itself (mymail.asp) -
    <form action="/cdonts_form.asp" method="post"
    name="MyForm" id="MyForm">
    <table width="200" border="1" align="center"
    bordercolor="#999999" bgcolor="#CCCCCC">
    <tr>
    <td>Title</td>
    <td><select name="MyTitle" id="MyTitle">
    <option value="Mr">Mr</option>
    <option value="Mrs">Mrs</option>
    <option value="Miss">Miss</option>
    <option value="Ms">Ms</option>
    <option value="Dr">Dr</option>
    <option value="Please Select" selected>Please
    Select</option>
    </select></td>
    </tr>
    <tr>
    <td>First Name </td>
    <td><input name="firstname" type="text"
    id="firstname2" size="30"></td>
    </tr>
    <tr>
    <td>Last Name </td>
    <td><input name="lastname" type="text"
    id="lastname2" size="30"></td>
    </tr>
    <tr>
    <td valign="top">Address</td>
    <td><textarea name="MyAddress" cols="28" rows="6"
    id="MyAddress"></textarea></td>
    </tr>
    <tr>
    <td>Email Address </td>
    <td><input name="email" type="text" id="email3"
    size="30"></td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td>Telephone</td>
    <td><input name="MyTelephone" type="text"
    id="MyTelephone"></td>
    </tr>
    <tr>
    <td>Mobile Phone </td>
    <td><input name="MyMobile" type="text"
    id="MyMobile"></td>
    </tr>
    <tr>
    <td>Where did you hear about us?</td>
    <td>red
    <input name="colour1" type="checkbox" id="colour12"
    value="red">
    blue
    <input name="colour2" type="checkbox" id="colour22"
    value="blue">
    green
    <input name="colour3" type="checkbox" id="colour32"
    value="green"></td>
    </tr>
    <tr>
    <td valign="top"><p>Enquiry /
    Comments</p></td>
    <td><textarea name="comments" cols="28" rows="6"
    wrap="VIRTUAL" id="textarea"></textarea></td>
    </tr>
    <tr>
    <td> </td>
    <td><select name="test" id="select">
    <option value="test1">test1</option>
    <option value="test2">test2</option>
    <option value="test3">test3</option>
    </select></td>
    </tr>
    <tr>
    <td> </td>
    <td><input name="send" type="submit" id="send"
    value="Submit Form"></td>
    </tr>
    </table>
    </form>
    Next the code from the cdonts_form.asp page (the page which
    will send the email) -
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <%
    Dim MyMail
    Dim MyBody
    Dim MyEmail
    Dim MyFirstname
    Dim MyLastname
    Dim MyColour1
    Dim MyColour2
    Dim MyColour3
    Dim MyComments
    Dim MyTest
    Dim MyTitle
    Dim MyAddress
    Dim MyTelephone
    Dim MyMobile
    MyEmail = Request.Form("email")
    MyFirstname = Request.Form("firstname")
    MyLastname = Request.Form("lastname")
    MyColour1 = Request.Form("colour1")
    MyColour2 = Request.Form("colour2")
    MyColour3 = Request.Form("colour3")
    MyComments = Request.Form("comments")
    MyTest = Request.Form("test")
    MyTitle = Request.Form("MyTitle")
    MyAddress = Request.Form("MyAddress")
    MyTelephone = Request.Form("MyTelephone")
    MyMobile = Request.Form("MyMobile")
    MyBody = "First Name: "& MyFirstName & vbcrlf
    MyBody = MyBody & "Last Name: "& MyLastName &
    vbcrlf & vbcrlf
    MyBody = MyBody & "Email: "& MyEmail & vbcrlf
    MyBody = MyBody & "Colour 1: "& MyColour1 &
    vbcrlf
    MyBody = MyBody & "Colour 2: "& MyColour2 &
    vbcrlf
    MyBody = MyBody & "Colour 3: "& MyColour3 &
    vbcrlf & vbcrlf
    MyBody = MyBody & "Comments:" & vbcrlf
    MyBody = MyBody & MyComments & vbcrlf & vbcrlf
    'vbcrlf - Visual Basic Carriage Return Line Feed means leave a
    space!
    MyBody = MyBody & "Test:"& vbcrlf
    MyBody = MyBody & MyTest & vbcrlf & vbcrlf
    MyBody = MyBody & "Title: "& MyTitle & vbcrlf
    MyBody = MyBody & "Address: "& MyAddress & vbcrlf
    MyBody = MyBody & "Telephone: "& MyTelephone &
    vbcrlf
    MyBody = MyBody & "Mobile Number: "& MyMobile &
    Vbcrlf
    Set MyMail = Server.CreateObject ("CDONTS.NewMail")
    MyMail.From = MyEmail
    MyMail.To = "t**********@*******.com"
    MyMail.Subject = "Enquiry for Academy Of Counsellors - sent
    from website"
    MyMail.Body = MyBody
    MyMail.Send
    set MyMail=nothing
    Response.Write("Thankyou, Your e-mail has been sent")
    %>
    Hope this is helpful for you!!
    Regards
    Billy

  • Design Pattern help needed for MDI application

    Hi,
    I am writing an mdi application which contains a JSplitPane. The left pane contains a JTree and the right contains a JDesktopPane which houses n number of JInternalFrames. The JInternal Frames need access to the JTree. Also both panes (objects w/in) need access to elements of the JFrame. I am currently implemeting access by making most of the JFrame objects static and creating getter/setter methods for access. Does anyone know any desing patterns I might use to solve this dilemma?
    Thanks,
    John

    The observer design pattern causes the child objects to chage state when the parent changes state. The type of pattern I need would allow the child objects of the parent JFrame to be available globally without having to make them static. I am wrong in this? Would the observer pattern solve this issue.

  • Personalization Issue with Master Item form EBS R12 -help needed

    There is an existing personalization in EBS 11i on Master Item form (INVIDITM) that is ported over to R12. Personalization prevents one responsibility from making updates/inserts.
    trigger event: WHEN-NEW-FORM-INSTANCE
    responsibiity: INV Inquiry
    Under Action tab:
    Block>MTL_SYSTEM_ITEMS>UPDATE_ALLOWED>FALSE
    Block>MTL_SYSTEM_ITEMS>INSERT_ALLOWED>FALSE
    Block>MTL_SYSTEM_ITEMS>DELETE_ALLOWED>FALSE (although this is not needed since seeded form prevents deletes)
    In 11i this works as intended, i.e. when form is opened no updates or inserts are possible. When block is queried the data is not updatable, no inserts are possible.
    In R12 (12.1.3) when form is opened no updates or inserts are possible. When block is queried the data fields become updatable and can be saved. No inserts are possible though.
    I thought this is an anomaly.
    Has anyone encountered this. If so what is the solution?
    Thanks,
    Sunil

    Are thery any other personalization events in 11i, apart from WHEN-NEW-FORM-INSTANCE which are not migrated to R12?
    Thanks
    Shree

  • Consolidating a poor "Contact us" form from AS1 help needed.

    I've found that the contact form functionality is spread over two symbols a few layers, and a few clips.  I'll do my best to define what and where, as well as the AS code behinf it in a top down manner.
    Symbol: "p4_tblock2" (movie clip) with three objects below it.
        " Layer 11 : Frame 1"     (two frames)
         "Layer 12 : Frame 2 "    (two frames)
          "Message"  Movieclip    (one frame)
              Message on frame one contains the text boxes to be filled in as well as a couple of movie clip buttons which are in the second part of all this
              Layer 12 frame 2 holds the thank you note once the sequence is advanced when the "submit" (movieclip button) is selected.  The other movieclip button "clear" resets the form.
              Layer 11...I'm not sure as I can turn it on and off and not see anything happen.  Also, the two frame icons are different then the others below it (the icons actually IN the timeline.
    Message has this asssociated AS
    onClipEvent(data){
    // show thank you screen
    this.nextFrame();
    The other symbol. "message" Three items below it, and four layers
              "Frame"  (one frame)
              "rd1"  (one frame) movie clip as a button
              "rd1:  (one frame) movie clip as a button
    The two rd1 movie clips hold the AS for the send and clear movieclip buttons.
    At this point I'm not to concerned with the code as KGLAD has been very helpfull.  I just don't think this needs to be spread out so much.
    I've done my best to describe what is going on, but it makes my head spin just trying to follow it.
    The idea is to have the buttons animate when the mouse passes over them, receive user input from four text boxes, and then send or clear the form to start over.
    Thanks

    Sure - here it is:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    <body>
    </body>
    </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Sendemail Script</title>
    </head>
    <body>
    <!-- Reminder: Add the link for the 'next page' (at the bottom) -->
    <!-- Reminder: Change 'YourEmail' to Your real email -->
    <?php
    $ip = $_POST['ip'];
    $httpref = $_POST['httpref'];
    $httpagent = $_POST['httpagent'];
    $visitor = $_POST['visitor'];
    $visitormail = $_POST['visitormail'];
    $notes = $_POST['notes'];
    $attn = $_POST['attn'];
    if(!$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,".")))
    echo "<h2>Use Back - Enter valid e-mail</h2>\n";
    $badinput = "<h2>Feedback was NOT submitted</h2>\n";
    echo $badinput;
    die ("Go back! ! ");
    if(empty($visitor) || empty($visitormail) || empty($notes )) {
    echo "<h2>Use Back - fill in all fields</h2>\n";
    die ("Use back! ! ");
    $todayis = date("l, F j, Y, g:i a") ;
    $attn = $attn ;
    $subject = $attn;
    $notes = stripcslashes($notes);
    $message = " $todayis [EST] \n
    From: $visitor ($visitormail)\n
    Additional Info : IP = $ip \n
    Browser Info: $httpagent \n
    Referral : $httpref \n
    $from = "From: $visitormail\r\n";
    mail("[email protected]", $subject, $message, $from);
    ?>
    <p align="center">
    Date: <?php echo $todayis ?>
    <br />
    Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> )
    <br />
    Attention: <?php echo $attn ?>
    <br />
    Message:<br />
    <?php $notesout = str_replace("\r", "<br/>", $notes);
    echo $notesout; ?>
    <br />
    <?php echo $ip ?>
    <br /><br />
    <a href="thankyou.html"> Next Page </a>
    </p>
    </body>
    </html>
    Thank you!

  • Form based Authentication Help needed.

    I am using form based authentication to validate a user logging into the website.
    In the web.xml I am using code similar to the following:
    <!-- LOGIN AUTHENTICATION -->
    <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>default</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>
    When session times out, and user clicks on any link on the webpage, the user is sent to the main login page, with a new session. I need to display a message on this page stating that the session timed out due to inactivity. How can I go about doing this? Is it possible to send user to a different page with this message? Thanks in advance.

    More details of this can be found in this link:
    http://java.sun.com/webservices/docs/1.2/tutorial/doc/Security5.html

Maybe you are looking for

  • Jabber and Gsm Call status

    Is it possible to automatically update presence status to busy in jabber mobile when the user is attending a gsm call? I've been testing with jabber for iPhone and it doesn't work...

  • Imessage is not connected to my number?

    On my send and recieve on imessage my phone number is not connected... All I can connect are emails but I want people to recieve my number on imessage not my email. Called my service provider and Apple but neither could help? Please help! I have an I

  • ERROR IN ACTIVITY MANAGEMENT

    HI SAP GURUS, I m new to CRM. I have a doubt that when i created an activity of SAMPLE DROPING I faced an error that PHYSICIAN has not maintained in header data. Can any body solve my problem. If possible some 1 can send some document to my mail id  

  • Replicating DDL, but only for ALTER TABLE/CREATE TABLE

    We're looking to use Streams to replicate our database, for Warehouse use. We're not looking to use any ETL, but rather copy the table structures & data over identically as they appear in the source database. We'll add indexes in a custom step. Other

  • Bug when opening and saving site in muse.

    On several occasions, when I launch Muse, it bypasses the welcome screen and goes directly to an open site. I've notice that both the 'Save' and 'Save As' options in the file menu are active as if I had made changes to the site.  When I click on 'Sav