Redirect to error.jsp

Hi,
I am getting Http 500 Internal server error from tomcat. I have follwing Jsp fragment, that is throwing this error.
<c:if test="${ empty userId}">
     <c:forEach var='thisCookie' items='${cookie}'>
     <c:if test='${thisCookie.key == "NWPUSERNAME"}'>
<c:set target='${SharedCookieBean}' property='val' value='${thisCookie.value.value}' />
          <c:if test='${SharedCookieBean.valid == "true"}'>
     <c:set target='${UserBean}' property='userId' value='${SharedCookieBean.username}' />                
               <c:if test='${SharedCookieBean.fflag == "true"} || ${UserBean.userFlag == "true"}'>
               <c:redirect url="error.jsp?error=2" />               
               </c:if>
     <c:set target='${UpdateUserAuthenticatedBean}' property='userId' value='${SharedCookieBean.username}' />
<c:set target='${SetSessionParamsBasedOnUserIdBean}' property='req' value='${pageContext.request}' />
<c:set target='${SetSessionParamsBasedOnUserIdBean}' property='userId' value='${SharedCookieBean.username}' />
</c:if>
</c:if>
</c:forEach>
</c:if>
This happend when I give a bogus userid say xdf which is NOT present in the database during the authentication. server sends error 500, which i like to suppress and rather redirect to error.jsp(My redirect attempt in above code is NOT working). It does not redirect to error.jsp. It shows errro 500 Internal server error in the browser.
any help in redirecting it correctly to error.jsp??
pp

My guess would be there is an exception happening in the database lookup code. If you set a generic errorPage for your jsp page, you should be able to redirect properly.
Where does this occur - when you set the SharedCookieBean value?
You might also try the <c:catch> tag. Put it around the bit of code creating the error.
eg...
<c:catch var="except">
    // the bit of code that creates the exception
   <c:set target='${SharedCookieBean}' property='val' value='${thisCookie.value.value}' />
</c:catch>
<c:if ${not empty except}">
  An exception occured - <c:out value="${except.message}"/>
</c:if>Cheers,
evnafets

Similar Messages

  • How to redirect to error.jsp, if servlet encounters error ??

    how do i redirect to error.jsp file , if there is some error in my servlet file.
    can i user response.sendRedirect() in catch clause or i should use RequestDispatcher in catch clause ??

    You can use either way to redirect to error.jsp. If you want to pass your Request, response from servelet to JSP, then better to go for RequestDispatcher.

  • How redirect httpd error response

    I want the http-listener of OAS call my Java program when http-404-error happen
    how can i set OAS-http-listener??

    You can use either way to redirect to error.jsp. If you want to pass your Request, response from servelet to JSP, then better to go for RequestDispatcher.

  • Urgent....How can i redirect to my jsp page from servlet in init() method..

    How can i redirect to my jsp page from servlet in init() method..Becoz that servlet is calling while server startsup..so im writing some piece of code in init() method..after that i want to redirect to some jsp page ...is it possible?
    using RequestDispatcher..its not possible..becoz
    RequestDispatcher rd = sc.getRequestDispatcher("goto.jsp");
    rd.foward(req,res);
    Here the request and response are null objects..
    So mi question can frame as how can i get request/response in servlet's init method()..

    Hi guys
    did any one get a solution for this issue. calling a jsp in the startup of the servlet, i mean in the startup servlet. I do have a same req like i need to call a JSP which does some data reterival and calculations and i am putting the results in the cache. so in the jsp there in no output of HTML. when i use the URLConnection i am getting a error as below.
    java.net.SocketException: Unexpected end of file from server
    at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:707)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:612)
    at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:705)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:612)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:519)
    at com.toysrus.fns.alphablox.Startup.callJSP(Unknown Source)
    at com.toysrus.fns.alphablox.Startup.init(Unknown Source)
    at org.apache.tomcat.core.ServletWrapper.doInit(ServletWrapper.java:317)
    so plz do let me know how to call a jsp in the start up of a servlet.
    Thanks
    Vidya

  • Redirect to Error Page Example ?

    Hi,
    Anybody, have an error page working example of how to redirect to error page in 10.1.3, i tried it many ways , followed the ADF Dev Guide PDF page 395 and 396 and no luck.
    where i should write the <error-page> and <dispatcher>REQUEST</dispatcher>
    and <dispatcher>ERROR</dispatcher>
    tags in web.xml
    any tricks in that ???
    thanks in advance

    Hi Frank,
    thanks for replying , unfortunately it did not work , it give me
    "The page cannot be displayed" , it seems that the Exception have been caught but it can't display the error page
    here is my web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <description>Makes Security View Handler printing debug messages at runtime</description>
    <param-name>com.groundside.jsf.security.print_debug_messages</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <description>Customize error message shown upon unauthorized access attempt</description>
    <param-name>com.groundside.jsf.security.unauthorized_access_error_messages</param-name>
    <param-value>User is not authorized to perform requested action</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>view.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>JsfAuthenticationServlet</servlet-name>
    <servlet-class>com.groundside.jsf.pagesecurity.authentication.J2eeAuthenticationServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>JsfAuthenticationServlet</servlet-name>
    <url-pattern>/jsfauthentication</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <error-page>
    <exception-type>java.lang.Exception</exception-type>
    <location>errorpage.jsp</location>
    </error-page>
    </web-app>
    here is how i make the exception
    public void commandButton1_action() throws Exception {
    throw new java.lang.Exception();
    here is the code of the page that have the button that throws the exception
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"
    import="java.lang.Exception"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view>
    <afh:html binding="#{backing_untitled3.html1}" id="html1">
    <afh:head title="untitled3" binding="#{backing_untitled3.head1}" id="head1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    </afh:head>
    <afh:body binding="#{backing_untitled3.body1}" id="body1">
    <h:form binding="#{backing_untitled3.form1}" id="form1">
    <af:commandButton text="commandButton 1"
    binding="#{backing_untitled3.commandButton1}"
    id="commandButton1"
    action="#{backing_untitled3.commandButton1_action}"/>
    </h:form>
    </afh:body>
    </afh:html>
    </f:view>
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_untitled3--%>
    here is the errorpage.jsp
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view >
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>untitled4</title>
    </head>
    <body>eeeeeror</body>
    </html>
    </f:view>
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_untitled4--%>
    by the way , in the error page if i change the f:view to f:subview , the page itself will not run
    thanks very much for your time.
    Message was edited by:
    bassem.farouk

  • SSO problem when redirecting from a JSP page to an external application

    Hi,
    I try to make a redirect from a JSP page (that is under a SSO protected application on iAS) to another page from another application, on an external iAS server, also protected by (a different) SSO. After the redirection is done, the login window appears, I enter the login name and the password and after that I obtain the followin error:
    "Oracle SSO Failure - Unable to process request
    Either the requested URL was not specified in terms of a fully-qualified host name or OHS single sign-on is incorrectly configured.
    Please notify your administrator."
    In the logs og the server I found the following:
    [OSSO] W05: Requested URL is not specified in terms of fully-qualified host name or invalid SSO partner configuration. Host from request
    mycompany.com:7777, registered host 144.147.147.200:7778.
    (the ip address being the address of the mycompany.com host).
    Any clue about this? Thanks a lot in advance!
    Regards,
    Marinel

    Hi Carlo,
    Thanks for your answer.
    The JSP original page is not added as a partner application to the second SSO server.
    The idea was that the user should insert first the login name/passwd for the first server, after being logged in, then redirected to the second application (on a different server), insert the login name/password for the second application and then load the 2nd application page. It seems that is not working after inserting the password for the 2nd application.
    Coming to a more general question that could help me to avoid this complicated approach: is it possible to have two different applications deployed on two different iAS servers and the two applications to use the same SSO (let's say the one from the first iAS server)? I have to mention that the process scenario is the following: the user load a page from the first application (protected by SSO), then, after successfull login and some processing in the first app, he will be automatically redirected by the first app to the second application, on the second server. I want to have also the second application, on the 2nd server, protected by SSO (ideally would be the same SSO as the first one!). Ideally the scenario would be: if it is redirected from the first app and the user is already authenticated, the automatic redirection should be done transparently for the user (without enetring the password again). If the user goes directly from the browser to a page of the second app, the SSO login window should be displayed and the user should provide his password.
    Is such a scenario possible on two apps deployed on two different servers?!
    Thanks a lot again!
    Regards,
    Marinel

  • Redirect to main jsp when the session expires

    Hi,
    I have a jsp say mainframe.jsp in which I have two frames each having a jsp page say child1.jsp and child2.jsp.
    When the session expires and I when i try do any changes in child2.jsp or child1.jsp, the page redirects to login page and when I login successfully, I am getting redirected to child2.jsp or child1.jsp respectively. But I want it to be redirected to mainframe.jsp.
    Any help is greatly appriciated.
    Thanks in advance.
    Vinod

    I think I am not clear.
    When I try to login after session expiry, I am redirected to child jsp.
    But what I want is that I should be redirected to mainfram.jsp page.
    url in the address shows : ../mainframe.jsp?ID=******
    When my seesion is expired and I try do some manipulation in child1.jsp (which is inside a frame of my mainframe.jsp). it is redirected to login page and from there to child1.jsp instead of mainframe.jsp
    Now the address url shows : ../child1.jsp?ID=********* because of which I am not able to see child2.jsp along with child1.jsp
    What I want : ../mainframe.jsp?ID=********
    this is the code I am using !!
    String destPage = request.getRequestURI();
    response.sendRedirect("../redirect.jsp?dest=" + URLEncoder.encode(destPage));

  • Timed redirection/forward in jsp

    i am trying to forward the request/response to another page after a particular peroid of time say 10 seconds. I need to output the content and wait for 10 seconds till forward happens. I think you got , what i need to do ...
    i know a forward cant happen after buffer is flushed ..
    plz suggest a way
    SHERIN :)
    THIS IS PART OF JSP CODE
    if(reportStat.equals("first"))
    %>
    <FORM action="/IntranetSystem/report" method="post">
         <CENTER>
              <b><FONT color="red">ENTER YOUR DAILY REPORT</FONT></b><br><br><br>
         <TEXTAREA rows="10" name="report" cols="50" ></TEXTAREA>
         <br><br>
         <INPUT type="submit" value=" submit "/>
         <INPUT type="hidden" name="userid" value="<%=userId%>" />
    </FORM>
    <%     }else if (reportStat.equals("success")){   %>
              <CENTER>
              <h3> DAILY REPORT UPDATED </h3><br><br>
              <b><FONT color="red">Redirecting to Home page in 10 seconds...</FONT></b>
              </CENTER>
              <%
                   out.flush();
                   out.append('x');
                   Thread.sleep(10000);
                   out.println("redirecting..");
              %>
              <jsp:forward page="inbox.jsp"> // THIS CAUSES ILLEGALSTATEEXCEPTION
              <jsp:param value="<%=userId%>" name="userid"/>
              </jsp:forward>
    <%     }else{    %>
              <CENTER>
              <FONT color="red">
              <h3> DAILY REPORT UPDATE FAILED </FONT><br>check todays attendance status . you may not have signed in</h3><br><br>
              <FONT color="yellow"><b>Redirecting to Home page in 10 seconds... </b></FONT>
              </CENTER>
              <%
                   out.flush();
                   out.append('x');
                   Thread.sleep(10000);
                   out.println("redirecting..");
              %>
              <jsp:forward page="inbox.jsp">
              <jsp:param value="<%=userId%>" name="userid"/>
              </jsp:forward>
    <% } %>

    But what is the requirement. I dont think really u r going to do some thing in 10seconds.
    u just want to do that,coz u want to show some thing fancy ,to the user. ..lol :)
    That will slightly affect the performence,no doubt on that.

  • How to get the error raised in LoginModule into the error.jsp page?

    Hi,
    I would like to get the Exception message raised in a LoginModule and display it "friendly" into my error.jsp page.
    How to do that?
    Thanks.
    Stephane

    I have posted this question a few times. These forums are useless for all but the simplest of problems.
    Here is what you can do, of course it is unsupported, and may or may not break with a future release - all I can say is that it works in 10.1.3
    In your loginmodule login() method, add the JAZNContextCallback to your callbacks array, then after the callbacks are handled you can access the request in the following way:
    HttpServletRequest request = (HttpServletRequest) ((JAZNContextCallback)callbacks[2]).getContextObject(JAZNContextCallback.HTTP_SERVLET_REQUEST, null);
    You can then add the error message to the request and your jsp or whatever will be able to access it.
    By the way, JAZNContextCallback is contained in the jazncore.jar file.

  • Deployment Error -- JSP Compilation Error: java.lang.OutOfMemoryError -- nu

    When I deploy WAR files with the precompile jsp option, I receive the following error:
    Deployment Error -- JSP Compilation Error: java.lang.OutOfMemoryError -- null
    Is there a way for me to precompile my jsp's without using this process? Once this blows up, the admin server gets hosed. This is very frustrating. Any suggestions would be appreciated.
    Regards,
    Joshua

    You need little more memory :-), use java param -mx512M.
    You can adjust it in OC Server properties
    AS > OC4J_home(demo) > Server Properties
    section Multiple VM Configuration, Command Line Options
    Java Options: -mx512M
    Zajo

  • Redirecting 404 errors

    In the process of setting up a new server, we're trying to keep from having
    to copy over 6+ year old stale files to the new machine.
    I've been given the go ahead, provided that I can redirect 404 errors to the
    old machine, and then after a while, we'll just kill the old machine.
    Unfortunately, I've run into a bit of a headache --
    It seems that iPlanet 4.1SP7 won't let me re-write the 'Status' line in an
    error handler. I know this was possible under Netscape 3.0k, (and
    yesterday, after putting in a ticket with tech support, I verified that I
    wasn't crazy) :
    andrew% telnet [old_server] 80
    Trying 128.164.127.251...
    Connected to [old_server].
    Escape character is '^]'.
    HEAD /~oneiros/blah HTTP/1.0
    HTTP/1.1 302
    Server: Netscape-Enterprise/3.0K
    Date: Thu, 12 Jul 2001 19:17:24 GMT
    Location: http://[dummy_server]/~oneiros/blah
    Content-type: text/html
    Connection: close
    Connection closed by foreign host.
    andrew% telnet [test_server] 80
    Trying 128.164.142.47...
    Connected to [test_server].
    Escape character is '^]'.
    HEAD /~oneiros/blah HTTP/1.0
    HTTP/1.1 404 Not found
    Server: Netscape-Enterprise/4.1
    Date: Thu, 12 Jul 2001 19:16:23 GMT
    Location: http://[old_server]/~oneiros/blah
    Content-type: text/html
    Content-length: 5496
    Connection: close
    The two error handlers are identical, except for the machine they redirect
    to.
    After getting the call back from tech support, I really don't think the
    person I spoke to understood what I was trying to do. [and well, I didn't
    have the working example to show him].
    Although I could do this using meta tags for redirection, that's not going
    to work for images, and we have too many users who have used absolute URLS.
    Does anyone out there know if there's some sort of work around for this
    problem? (iWS 6 may be an alternative if absolutely necessary, but we're
    reluctant to switch to a recently released version due to some history with
    other applications).
    Joe Hourcle
    Networking and Information Technology
    The George Washington University

    Joe Hourcle wrote:
    It seems that iPlanet 4.1SP7 won't let me re-write the 'Status' line in an
    error handler. I know this was possible under Netscape 3.0k, (and
    yesterday, after putting in a ticket with tech support, I verified that I
    wasn't crazy) :Want to paste your code?
    HTTP/1.1 404 Not found
    Server: Netscape-Enterprise/4.1
    Date: Thu, 12 Jul 2001 19:16:23 GMT
    Location: http://[old_server]/~oneiros/blah
    Content-type: text/html
    Content-length: 5496
    Connection: closeWhat's the content of size 5496 that's getting returned?

  • Logon Par - redirect to new JSP

    Hi,
    I've to change the portal logon page.
    My requirement is to redirect the logon page to test.jsp page.
    from umLogonPage.jsp i'm trying to redirect to test.jsp in form method.
    <FORM name="logonForm" method="post" action=test.jsp>
    but the URL is not proper.
    How can i pass the absolute URL for this.
    Thanks and Regards
    Puneet

    Puneeth,
    Its possible to  redirect to a JSP page from portal logon Screen.
    There are several ways of doing this:-
    1. Create a separate portal component (JSP Dynpage) and set the authscheme property is anonymous (because you are calling a portal component from outside) ie.
    <property name="AuthScheme" value="anonymous" />
    You can follow this method If JSP componentu2019s functionality is Independent than any login functionality.
    2. You can modify the SAPMLogonLogic.java file which contains flow logic of all jsp files. The SAPMLogonLogic file is present umelogonbase.jar.
    The umelogonbase.jar is under lib folder of the logon par file. Just extract the logon par file and navigate to PORTAL-INF -> lib to get the umelogonbase.jar
    Ram

  • Redirect Loop Error

    Hi,
    So I use the web player at work, at home and have the spotify app on my Android phone.  I've logged into my premium account through facebook with no problems until yesterday.  Suddenly, no matter what computer I'm on, I get a "redirect loop error."  I can't log into my account to change my premium payment options and I can't log into my phone app.  I've reinstalled the app, cleared all cookies, tried from multiple different browsers and still am getting the same error.  What other things can I try?

    Hey there , welcome to the community!
    I apologize for the late reply. If you are still experiencing this issue, contact the accounts team through the online contact form since you've already tried all troubleshooting steps. If you receive an automated e-mail directing you back to the community, just reply to it and you will be connected with an agent that can assist you.

  • JAAS LoginException, error.jsp

    When I throw a LoginException in my Custom Login Module that my Custom AuthenticationProvider
    and my web.xml file contains
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.jsp</form-login-page>
    <form-error-page>/error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    How do I get the error message displayed on the error.jsp file that weblogic authomatically
    loads
    I tried <% exception.getMessage() %> and I get an exception stating that exception
    doesn't exist.
    thanks for any help
    Chad

    After processing your servlet ,forward it to JSP page and set that exception in object from servlet and accces it in JSP Page and display it.
    Example:
    //Servlet
    String errorMessage;
    if error occurs set errorMessage to that error.
    request.setAttribute("Message",errorMessage);
    //JSP
    Acces Message string from request Object and display it imn JSP page using
    String errorMessage=request.getAttribute("Message");
    This shud work in your case.

  • Redirect Loop Error on Everything

    Hi, I haven't been able to log into the web player or my own account on my desktop, my work computer or my phone because I keep getting the same "redirect loop" error.  I've been trying to log in to change my premium payment option because the card I had it under was cancelled.  I've tried deleting cookies on all my computers, as was suggested somewhere, but it still is giving me the same error.  How can I get into my account to change my payment options?

    Hey there , welcome to the community!
    I apologize for the late reply. If you are still experiencing this issue, contact the accounts team through the online contact form since you've already tried all troubleshooting steps. If you receive an automated e-mail directing you back to the community, just reply to it and you will be connected with an agent that can assist you.

Maybe you are looking for

  • Ipod playlists not all visible

    I manage my music manually and have a mixture of normal and smart playlists on my iPod Touch 2g. I couldn't understand why I can see all my playlists in iTunes on the iPod but not on the iPod itself. So I got fed up and installed another smart playli

  • SAP JPA setMaxResults issue

    Hello, I'm operating on a large table with a few million of records using SAP JPA running on AS Java 7.3.1 and Oracle 11g. While analyzing a performance issue, I came across a DB trace that led me to think that the setMaxResults() method on Query obj

  • Search help for custome field with different data type

    Hi Friends, I have Created a  custom table in which i have created a field is ZMATLONG which stores material number. Now the data element is zdmat which is of char 40.. Now i want to give search help for this field ZMATLONG.. I have tried many ways g

  • InDesign CS6 booklet plugin

    Can anyone recommend a booklet plugin for InDesign CS6? In spite of excellent help from Eugene Tyson which did work, I think I need something a little more specific, and easier to manipulate. I have no idea about plugins if they don't come with the s

  • Save object state but not the data

    Hi Everyone, I'm trying to serialize a form so that I can recover the state information such as size of the form at close, size of splitpane separator, and size of each column of a JTable within the form. However, I don't want to save the JTable's da