Bad pointer exception in Debug mode.. CView in CDockable pane MFC Feature pack

Hi
I have attached a CView in  CDockablePane and it works fine
in Release mode but it throws bad memory pointer in
debug mode while closing the application.(Crashing during close).
Please advise...
Find the code below how I had attached the View to Dockable pane
//===================================================
BOOL COutputWnd::AddView ( CRuntimeClass *pRuntimeViewClass, LPCTSTR lpcszTitle, int nIconIndex,int nTabIndex )
if ( !pRuntimeViewClass )
return FALSE;
int nTabIndex = 0;
CWnd *pWnd = NULL;
CCreateContext newContext;
CTestView *pView = NULL;
newContext.m_pCurrentDoc = NULL;
newContext.m_pNewViewClass = pRuntimeViewClass;
newContext.m_pNewDocTemplate = NULL;
TRY
pWnd = ( CWnd* ) pRuntimeViewClass->CreateObject ( );
if ( NULL == pWnd )
AfxThrowMemoryException ( );
CATCH_ALL ( e )
TRACE0 ( "Out of memory creating a view\n" );
return FALSE;
END_CATCH_ALL
if ( !pWnd->Create ( NULL, NULL, WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, CRect ( 0, 0, 0, 0 ), &m_wndTabs, AFX_IDW_PANE_FIRST + nTabIndex, NULL ) )
TRACE0 ( "Create view failed\n" );
return FALSE;
m_wndTabs.AddTab( pWnd, _T("Browser Tab"), (UINT)m_wndTabs.GetTabsNum());
pWnd->SendMessage ( WM_INITIALUPDATE );
pWnd->SetOwner ( this );
pView = ( CTestView* ) pWnd;
if ( NULL != pView )
pView->Navigate2 ( lpcszTitle );
return TRUE;
}//===================================================
Thanks
Shajeer

Hi
I am calling the AddView from OnCreate of COutputWnd as below
int COutputWnd::OnCreate(LPCREATESTRUCT lpCreateStruct){
if (CDockablePane::OnCreate(lpCreateStruct) == -1) return -1;
m_Font.CreateStockObject(DEFAULT_GUI_FONT);
CRect rectDummy;
rectDummy.SetRectEmpty();
// Create tabs window:
if (!m_wndTabs.Create(CMFCTabCtrl::STYLE_FLAT, rectDummy, this, 1)){
TRACE0("Failed to create output tab window\n");
return -1; // fail to create}
AddView( RUNTIME_CLASS(CBrowserView),_T("www.google.com"),-1,0);
return 0;
Find below the call stack when it crashes
Bad_Pointer.exe!AfxAssertValidObject(const CObject * pOb=0x00b7e838, const char * lpszFileName=0x014c58c8, int nLine=2372)  Line 99 + 0xa bytes C++
  Bad_Pointer.exe!CFrameWnd::AssertValid()  Line 2373 C++
  Bad_Pointer.exe!CMDIFrameWnd::AssertValid()  Line 384 C++
  Bad_Pointer.exe!CMainFrame::AssertValid()  Line 271 C++
  Bad_Pointer.exe!AfxAssertValidObject(const CObject * pOb=0x00b70068, const char * lpszFileName=0x014d5404, int nLine=288)  Line 107 C++
  Bad_Pointer.exe!CBasePane::GetParentMiniFrame(int bNoAssert=0)  Line 291 C++
  Bad_Pointer.exe!CDockablePane::OnDestroy()  Line 2579 + 0x12 bytes C++
  Bad_Pointer.exe!CTabbedPane::OnDestroy()  Line 215 C++
  Bad_Pointer.exe!CWnd::OnWndMsg(unsigned int message=2, unsigned int wParam=0, long lParam=0, long * pResult=0x001ae47c)  Line 2042 C++
  Bad_Pointer.exe!CWnd::WindowProc(unsigned int message=2, unsigned int wParam=0, long lParam=0)  Line 1755 + 0x20 bytes C++
  Bad_Pointer.exe!CBasePane::WindowProc(unsigned int message=2, unsigned int wParam=0, long lParam=0)  Line 1011 + 0x14 bytes C++
  Bad_Pointer.exe!AfxCallWndProc(CWnd * pWnd=0x00b90af0, HWND__ * hWnd=0x000114d8, unsigned int nMsg=2, unsigned int wParam=0, long lParam=0)  Line 240 + 0x1c bytes C++
  Bad_Pointer.exe!AfxWndProc(HWND__ * hWnd=0x000114d8, unsigned int nMsg=2, unsigned int wParam=0, long lParam=0)  Line 403 C++
  user32.dll!7787f8d2()  
  [Frames below may be incorrect and/or missing, no symbols loaded for user32.dll] 
  user32.dll!7787f794()  
  user32.dll!7787f73d()  
  user32.dll!77880817()  
  user32.dll!77880a65()  
  ntdll.dll!776f99ce()  
  user32.dll!778714c8()  
  Bad_Pointer.exe!CMDIFrameWndEx::OnDestroy()  Line 777 C++
  90909090()
Thanks!
Shaj

Similar Messages

  • Oracle 10g JDev IDE 9.0.5.2 Null Pointer Exception while debugging

    Hi,
    In windows XP m/c, I am facing following Null Pointer
    Exception while debugging basic Java application through
    10g JDev 9.0.5.2, and it failed in debugging that application...
    May I know, How to get it out of this problem..., am
    suspecting Is it related to any of my windows XP configuration?
    Here's the stack trace shown in the 10g JDev console while
    debugging simple java application..,
    java.lang.NullPointerException
    at javax.swing.border.EmptyBorder.<init>(EmptyBorder.java:54)
    at com.sun.java.swing.plaf.windows.WindowsTableHeaderUI$XPDefaultRendere
    r.getTableCellRendererComponent(WindowsTableHeaderUI.java:63)
    at oracle.jdevimpl.runner.debug.ThreadsPanel$3.getTableCellRendererCompo
    nent(ThreadsPanel.java:306)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderRenderer(BasicTabl
    eHeaderUI.java:394)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getHeaderHeight(BasicTableH
    eaderUI.java:428)
    at javax.swing.plaf.basic.BasicTableHeaderUI.createHeaderSize(BasicTable
    HeaderUI.java:454)
    at javax.swing.plaf.basic.BasicTableHeaderUI.getPreferredSize(BasicTable
    HeaderUI.java:485)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:1275)
    at oracle.jdevimpl.runner.debug.ThreadsPanel.threadsPanelSettingsChanged
    (ThreadsPanel.java:538)
    at oracle.jdevimpl.runner.debug.ThreadsWindow$AllThreadsPanel.threadsWin
    dowSettingsChanged(ThreadsWindow.java:408)
    at oracle.jdevimpl.runner.debug.ThreadsWindow.threadsWindowSettingsChang
    ed(ThreadsWindow.java:138)
    at oracle.jdevimpl.runner.debug.ThreadsWindow.<init>(ThreadsWindow.java:
    112)
    at oracle.jdevimpl.runner.debug.JDebugger.getThreadsWindow(JDebugger.jav
    a:3048)
    at oracle.jdevimpl.runner.debug.DebuggingProcess.selected(DebuggingProce
    ss.java:565)
    at oracle.ideimpl.runner.RunManager.viewSelectionChanged(RunManager.java
    :467)
    at oracle.ide.addin.AbstractView.fireViewSelectionChanged(AbstractView.j
    ava:484)
    at oracle.ideri.navigator.DefaultNavigatorWindow.fireViewSelectionChange
    d(DefaultNavigatorWindow.java:791)
    at oracle.ideri.navigator.DefaultNavigatorWindow$3.viewSelectionChanged(
    DefaultNavigatorWindow.java:1218)
    at oracle.ide.addin.AbstractView.fireViewSelectionChanged(AbstractView.j
    ava:484)
    at oracle.ideimpl.explorer.BaseTreeExplorer.actionPerformed(BaseTreeExpl
    orer.java:2077)
    at javax.swing.Timer.fireActionPerformed(Timer.java:271)
    at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh

    John,
    You mentioned "I closed the IDE so that the TopLink project would pick up the changes..."
    1. We need to find out why you needed to close the IDE? Was TopLink mapping editor not picking up your changes?
    2. I am sure you did not modified .java outside of Jdev, but in case if you did, let me know.
    3. After removing a superclass attribute, did you save all changes?
    4. We tried various combinations, but were unable to reproduce the project reopen issue that you mentioned was fixed by changing the ClassDescriptor.xml. It would be extremely helpful if you could either send us (anuj dot k dot jain at oracle dot com) a project that can reproduce this issue, or outline the exact steps.

  • Regarding Exception in Debug mode.

    Hi All,
    when i am starting Debugger,
    it is giving an error like:-
    Exception occured during creating launch configuration tabd.
    reason:-No tab group define for launch configuration type com.sap.ide.webdynpro.projecrbrowser..launch.configtype.debug
    Any idea?
    how to correct it?

    Hi,<br>
    Did you check in your plug ins first if that <br>com.sap.ide.webdynpro.projecrbrowser is avail or not.<br>
    <b>how to check this?</b><br>
    Otherwise in technically server mode should be in debug <br>mode and launch your application in debug mode I Mean<br> to say go run-debug-create new web dynpro <br>application and select your project and webdynpro <br>application and checked the create and deploy the <br>archive and click on run then it will wok<br>
    <b>The server mode is ON. While launching my application <br>in debug mode, i am getting this message. it won't <br>allow to create or edit configuration<br>
    </b>

  • Badi working only in Debug mode

    Hi experts,
    It's my first time with Badi, and I'm facing a issue I can't understand.
    I've activated badi ME_PROCESS_PO_CUST , and everything work's fine .
    From the method "Close" I call a Z... function which writes data on a custom table.
    I've tested  it and the system correctly update the table , but when I deactivate  the debug  in the badi's method , it looks like the badi is not implemented and the system doesn't pass trough the function. 
    Can somebody adress me to solve it ?
    Thank you in advance for any help.
    Ciao.

    Thank you for your help Sudhir , but the table update it's done by the custom function which should be called by the BAdI. My issue is that the BAdI's method works only if I set a break-point on it. If I do not put a break-point on the BAdI , the function is not called at all !!.
    Thanks again for your suggestion.

  • ABAP Runtime error in debug mode

    Hi all,
    I am facing foll. run time error in debug mode
    Runtime Error          DBIF_RSQL_INVALID_CURSOR
    Except.                CX_SY_OPEN_SQL_DB
    Possible causes in the application program:                       
    Within a loop (SELECT/LOOP/EXEC SQL), one of the following        
    statements is used:                                               
    - MESSAGE (apart from MESSAGE S...)                               
    - COMMIT WORK                                                     
    - ROLLBACK WORK                                                   
    - CALL SCREEN                                                     
    - CALL DIALOG                                                     
    - CALL TRANSACTION                                                
    - SUBMIT                                                          
    - BREAK-POINT                                                     
    - WAIT                                                            
    In debugging mode, a program sometimes triggers                   
    a "COMMIT WORK" during the database selection. As a result        
    this termination may also occur in debugging mode with a correct  
    program.                                                          
    A "COMMIT WORK" during debugging may be due to the following reason
    1. A program or screen was regenerated                            
       and updated in the database.                                   
    2. Each user needs a private process in debugging mode, but       
       the number of available processes is restricted. If this       
       limit is exceeded, each debugging step then requires a         
       "COMMIT WORK".       
    its urgent.
    if i run the prg directly to tcode der is not ne error.
    but i want to execute the prg. in the debug mode.
    its a ZPRG.
    with regards,
    Purva.

    hi,
    You need to change your logic.
    Then , i hope your problem wil be solved.
    Because of nested select statements, you are getting that error.
    Declare seperate Internal tables for VBRK,VBRP, KNA!,j_1iexchdr, j_1imtchid.
    Declare Itab_final with all required fields from all tables.
    Dont use select-endselect anywhere.
    I am giving Pseudo code here.
    Try to use this logic.
    I used question mark in code : there you need to use ur required field names.
    Hope it wil help you.
    select vbeln kunrg zterm bukrs knumv netwr kunrg from vbrk into corresponding fields of table itab1
    where vbeln = docno.
    select matnr posnr arktx fkimg meins netwr werks aubel from vbrp into corresponding fields of table itab2 for all entries in itab1
    where vbeln = itab-vbeln.
    select name1 stras pstlz ort01 land1 from kna1 into corresponding fields of table itab3 for all entries in itab1
    where kunnr = itab1-kunrg.
    select preprn exdat docno from j_1iexchdr into corresponding fields of  table itab4  for all entries in itab1
    where rdoc = itab1-vbeln.
    select j_1ichid from j_1imtchid into corresponding fields of table itab5 for all entries in itab2
    where matnr = itab2-matnr.
    Loop at itab1 into wa_itab1.
    read table itab2 into wa_itab2 index sy-tabix.
    read table itab3 into wa_itab2 index sy-tabix.
    read table itab4 into wa_itab2 index sy-tabix.
    read table itab5 into wa_itab2 index sy-tabix.
    itab_final = itab1-?
    itab_final = itab1-?
    itab_final = itab2-?
    itab_final = itab3-?
    itab_final = itab4-?
    itab_final = itab5-?
    append itab.
    endloop.
    select eikto from knb1 into table wa_knb1
    where kunnr = itab_fianl-kunrg
    and bukrs = itab-bukrs.
    select kawrt kbetr kwert kschl kposn knumv from konv into corresponding fields of wa_konv
    where knumv = itab_fianl-knumv
    and kposn = itab_final-posnr.
    append wa_konv.
    endselect.
    Regards
    Sandeep Reddy

  • SRM 7.0 - Unable / How to get into DEBUGGING mode in BADI

    Hello SAPions,
    I am unable to get into debugging mode from WebDynpro Portal screen to R/3 BADI in SRM 7.0 .
    I placed a breakpoint in the BADI, and logged into the portal screen.
    However, in SRM5.0, to get into debugging mode from ITS, we place a break point in the BADI, when we browse the ITS link from the IE browser, we will be able to get into debuggin mode.
    Any other way ?
    Regards,
    Ashwin.

    Hello,
    Please check the following:
    1. Application server name, the SAP GUI and the portal should be logged into the same application server.
    2. You should be logged in with the same User in both SAP GUI and the Portal.
    3. External debugging should be enabled for the User in SAP GUI.
    4. Also try checking the check box , IP Matching . This can be done as below:
    Utilities -> Settings ->  ABAP Editor -> Debugging ->  IP Matching.
    Also please check the following in the above link , if you have the same user name here with which you have logged onto Portal and the New Debugger Radio Button is Selected.
    Hope this helps.
    Best Regards,
    Sapna

  • Reg usage of break point in debug mode

    Dear experts,
       I want to know how to go to a particular line in debugging mode. Suppose for example, if a program contains main program and includes.  I want to go to a particular line in debugging mode in the includes. How can i go? kindly help me.
    tks

    Hi Prabhakar,
    Using break points you can stop the execution control at that break point.
    If you use only F5, F6, F7 for debugging you don't need of break points.
    But if you want to stop at particular statement while running the report (using F8) you should use Break Point. Ofcourse you can use watchpoints also.
    Watchpoint --- If you put watch point execution control stops at the particular statement when the value of watchpoint is reached.
    Reward If Helpful.
    Regards
    Sasidhar Reddy Matli.

  • OracleJSP exception in JDeveloper debug mode

    Hi all.
    I have a strange problem. Only one JSP in my entire application fails to appear when I debug with local (embeded) OC4J. These are the first lines of the exception message:
    Exception:
    java.lang.NoClassDefFoundError: _addFile
         java.lang.Class java.lang.ClassLoader.defineClass0(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
              native code
    The class _addFile is generated from addFile.jsp and is available in the output directory. Production application doesn't display the same behavior, this only happens in DEBUG mode in JDeveloper.
    OS: win2000
    JDK: 1.3.1
    JDevaloper is 9.0.2.. something.
    Struts
    Thanks people.

    A few quick questions:
    1. Can you run (not debug) the application?
    2. Have you tried specifically compiling the file addfile.jsp in JDeveloper? - This will usually show the error before attempting to
    run it.
    To do this, select the file in the navigator and do a right-click Rebuild or Make..

  • Web part throwing exception at run time but not in debug mode

    The below code is throwing exception at run time but does not throw exception while debugging in Visual Studio. This is really causing difficulty for me to detect the cause of exception. Below I have also placed the exception image for reference.
    namespace CheckforContractorLogin.VisualWebPart1
    public partial class VisualWebPart1UserControl : UserControl
    protected void Page_Load(object sender, EventArgs e)
    if (!IsPostBack)
    string loginName = string.Empty;
    string coc_url = string.Empty;
    SPQuery spQuery = new SPQuery();
    spQuery.Query = "<Where><Eq><FieldRef Name='LoginName' /><Value Type='Text'>" + currentUser + "</Value></Eq></Where>";
    Guid _spSiteID = SPContext.Current.Site.ID;
    Guid _spWebID = SPContext.Current.Site.OpenWeb().ID;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite _spSite = new SPSite(_spSiteID))
    using (SPWeb _spWeb = _spSite.OpenWeb(_spWebID))
    //if user has already accepted the COC
    SPList getSPList = _spWeb.Lists["RedirectUrl"];
    SPListItemCollection getspItemColl = getSPList.Items;
    foreach (SPListItem item in getspItemColl)
    if (Convert.ToString(item["Title"]) == "Policy Acceptance")
    coc_url = Convert.ToString(item["Url"]);
    SPList spList = _spWeb.Lists["Policy Acceptance Status"];
    SPListItemCollection spItemColl = spList.GetItems(spQuery);
    bool result = getADUserInfo();
    if ((spItemColl.Count == 0) && (result))
    Response.Redirect(coc_url);
    protected string currentUser
    get
    string currentUser1 = HttpContext.Current.User.Identity.ToString();
    int index = currentUser1.IndexOf("\\") + 1;
    string currentLoginUser = currentUser1.Substring(index);
    return currentLoginUser;
    protected bool getADUserInfo()
    DirectoryEntry dentry = null;
    DirectorySearcher dsearcher = null;
    string ldap = string.Empty;
    string empID = string.Empty;
    string _empID = string.Empty;
    try
    Guid spSiteGUID = SPContext.Current.Site.ID;
    Guid spWebGUID = SPContext.Current.Site.OpenWeb().ID;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite elevatedSiteColl = new SPSite(spSiteGUID))
    using (SPWeb elevatedWeb = elevatedSiteColl.OpenWeb(spWebGUID))
    SPList spList = elevatedWeb.Lists["LDAP_Paths"];
    SPQuery spQuery = new SPQuery();
    spQuery.Query = "<Where><Eq><FieldRef Name='OU'/>"
    + "<Value Type='Text'>QD</Value></Eq></Where>";
    SPListItem spItem = spList.GetItemById(1);
    ldap = spItem["Path"].ToString();
    dentry = new DirectoryEntry();
    dentry.Path = ldap;
    dentry.Username = "******\\sp_admin";
    dentry.Password = "******";
    dsearcher = new DirectorySearcher(dentry);
    dsearcher.Filter = String.Format("(&(ObjectCategory=Person)(sAMAccountName=" + currentUser + "))");
    SearchResult searchResult = dsearcher.FindOne();
    dentry = searchResult.GetDirectoryEntry();
    if (searchResult != null)
    if (dentry.Properties.Contains("physicalDeliveryOfficeName"))
    empID = dentry.Properties["physicalDeliveryOfficeName"][0].ToString();
    if (empID.Contains("QA-"))
    return true;
    else
    return false;
    catch (Exception e)
    throw e;
    finally
    dentry.Close();
    dentry.Dispose();
    dsearcher.Dispose();

    Hi Zakir,
    I am not sure but it would be nice if you can do following
    Try search ULS log with correlation id and find exact error and share here. If not able to find do following
    Or in catch block write
    Response.Write(ex.ToString());
    and check what exception its giving.

  • ADF_FACES-60098 and null pointer exception at oracle.adfinternal.controller.debug.ActivityBreakpointFacadeImpl$1.afterPhase(ActivityBreakpointFacadeImpl.java:111)

    Can you please look at this stack trace to see if you can identify a reason why this error happens when I leave a page open in my ADF application for 3 minutes or longer?
    Target URL -- http://127.0.0.1:7101/PTS/faces/dashboard.jsf
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuSearch-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuSearch-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'view1'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuEst-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-menuEst-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'createProjEstimate'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'basicEstimator'].>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewXmlImpl> <parse> ADFc: Failed to find/parse page name for view activity.>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: /WEB-INF/adfc-toolBoxMenu-config.xml:>
    <Nov 8, 2013 2:24:52 PM CST> <Notice> <Stdout> <BEA-000000> <<ActivityXmlImpl> <parse> ADFc: Activity metadata could not be parsed. [Activity Type, ID] = ['view', 'writeReport'].>
    <Nov 8, 2013 2:24:53 PM CST> <Notice> <Stdout> <BEA-000000> <<ViewHandlerImpl> <_checkTimestamp> Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml>
    <Nov 8, 2013 2:24:59 PM CST> <Notice> <Stdout> <BEA-000000> <<UIXEditableValue> <_isBeanValidationAvailable> A Bean Validation provider is not present, therefore bean validation is disabled>
    <Nov 8, 2013 2:25:16 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:25:22 PM CST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 8, 2013 2:25:22 PM CST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log03208. Log messages will continue to be logged in C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 8, 2013 2:25:23 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:26:14 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:26:18 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:26:19 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:28:40 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:28:48 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,697 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,696 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,698 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:05 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:29:10 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,704 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:29:19 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:31:19 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:31:46 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:32:06 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:32:12 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:33:23 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,740 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,738 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:35 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,739 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:33:59 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:37:13 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:37:17 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:38:43 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:38:48 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:40:54 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:41:00 PM CST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 127.0.0.1:57,790 during the configured idle timeout of 5 secs>
    <Nov 8, 2013 2:46:53 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    [02:50:22 PM] Updated /C:/Users/kri/AppData/Roaming/JDeveloper/system11.1.2.3.39.62.76.1/o.j2ee/drs/PTS_MavenProjectTrackingSys/PTS_ViewControllerWebApp.war
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/projectPlan-task-flow/projectPlan'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilter.doFilter(ApplicationSessionExpiryFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at nagiworld.net.filters.gzip.GZIPFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.net.ProtocolException: EOF after reading only: '0' of: '16' promised bytes, out of which at least: '0' were already buffered
    at weblogic.servlet.internal.PostInputStream.complain(PostInputStream.java:93)
    at weblogic.servlet.internal.PostInputStream.read(PostInputStream.java:179)
    at weblogic.servlet.internal.ServletInputStreamImpl.read(ServletInputStreamImpl.java:228)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2118)
    ... 43 more>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log03209. Log messages will continue to be logged in C:\Users\kri\AppData\Roaming\JDeveloper\system11.1.2.3.39.62.76.1\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 8, 2013 2:50:43 PM CST> <Notice> <Stdout> <BEA-000000> <<TrainRenderer> <encodeAll> Either a MenuModel object was not provided or an invalid object was provided.>
    <Nov 8, 2013 2:50:52 PM CST> <Notice> <Stdout> <BEA-000000> <<GlobalConfiguratorImpl> <_startConfiguratorServiceRequest>
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PTS/faces/dashboard.jsf'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:2144)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:2024)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1918)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getParameter(ServletRequestImpl.java:1995)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.access$800(ServletRequestImpl.java:1817)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:804)
    at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:169)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:43)
    at org.apache.myfaces.trinidadinternal.context.external.ServletRequestParameterMap.getAttribute(ServletRequestParameterMap.java:31)
    at org.apache.myfaces.trinidadinternal.context.external.AbstractAttributeMap.get(AbstractAttributeMap.java:73)
    at oracle.adfinternal.controller.state.ControllerState.getRootViewPortFromRequest(ControllerState.java:788)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:185)
    at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79)
    at oracle.adfinternal.controller.application.AdfcConfigurator.beginRequest(AdfcConfigurator.java:53)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:562)
    at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:212)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:174)
    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at main.java.com.dairynet.pts.util.ApplicationSessionExpiryFilte

    Frank,
    I do not get this error when I run the application on the Weblogic standalone server. I do not get this error when I run the application on my integrated weblogic server, unless I run it is debug mode. I do get it on my integrated weblogic server if I run in debug mode.
    Can you please give me an idea of where I can look for settings on the other weblogic servers where this is happening to see if I can chase this down? I am not a weblogic server admin by any means, but I have looked at the Debug tab for the server to see if I can see anything enabled. Unfortunately, I may not be looking in the right place to know if there is some kind of debug setting enabled.
    Any assistance would be greatly appreciated! This is happening to our users on our production server as well.
    Thank you!

  • Null pointer exception while inserting a new row in ADF with jdev

    Hi,
    In ADF, I have retrieved some user information from LDAP server and I want to insert those values in to my table. But when I do this, I am getting a null pointer exception when I get the view object (ViewObject vo=getCRUIP002_1();). I am not sure why this happens.
    Here is my code. It is urgent.
    and please some one help me in fixing the issue.
    ViewObject vo=getCRUIP002_1();
    vo.clearCache();
    vo.setMaxFetchSize(0);
    vo.executeQuery();
    Row newRow=vo.createRow();
    vo.insertRow(newRow);
    SearchResult res = (SearchResult)results.next();
    Attributes attrs = res.getAttributes();
    // Row newRow = vo.getCurrentRow();
    newRow.setAttribute("LOGINNAME",(Object)attrs.get("sn").get().toString());
    newRow.setAttribute("PASSWORDVALUE","x");
    newRow.setAttribute("FIRSTNAME",(Object)attrs.get("sn").get().toString());
    newRow.setAttribute("LASTNAME",(Object)attrs.get("sn").get().toString());
    newRow.setAttribute("EMAIL",(Object)attrs.get("mail").get().toString());
    Thanks,
    Priya.S

    assuming ur jdev version is 10.1.2
    ViewObject vo=getCRUIP002_1();i dont think ur getting the view object hence null pointer expception.
    ViewObject vo = findViewObject("MyView1");
    if u r in the object class then first get the root application module and then access the View obejct from there.
    In ADF if u assign a null value, u will always get the null pointer exception coz of java. Run the app in debug mode and check the values step by step, by the way there is not exception handling in ur code either, Do u know how to debug in Jdev ?
    zaibi.

  • JDeveloper 11.1.2.1.0  Hangs in Debug Mode Running in Windows 7 OS

    Hi All,
    i am working with JDeveloper 11.1.2.1.0 version,intel core i3 -2120 CPU,@3.30GHZ,4GB RAM, Windows 7 32 bit OS
    i am facing Jdeveloper Hangingness when loading BTF inside a popup and making a call to java code on any action if any debug point is avilable inside java file,JDeveloper is getting hanged and the only way to come out of this issue is by killing the process and restarting the JDeveloper.
    certain cases when integrated server is started with debug mode(intial startup ) also Jdeveloper is getting hanged and there is no way to get out of this except restart.
    if i see memory parameters from Java VisualVM console
    Heap is avilable
    and the other process are running with out any issue.
    is this problem is with configuration settigns ?
    what steps/settings/patches i need to follow to get out of this problem ?

    is this happening after removing the system folder also?

  • Finding Events in debug mode?

    Dear All,
    I found a list of events which will be used for the transaction EA10 by the method mentioned in the video.
    http://www.sap-isu.net/video/fica-events.
    Out of the many events which are triggerred one of them is R431.
    Right now the function module in this has no code . Accept the function start and end syntax.
    When I try to put the breakpoint in this and run the transaction in the debugging mode , the flow of the program doesnt stop at the debug point.
    Why such analomy?
    Edited by: Rahul_paldiwal on Jan 6, 2010 11:30 AM

    Hi,
      If you go to the code of program LE21AF08. You will see that program will not go to the code if the function module is 'ISU_SAMPLE_R431'.
    FORM event_r431  TABLES   p_contrcl STRUCTURE t_contrcl
                     CHANGING p_iiu   TYPE isu21_invoice_unit
                              p_param TYPE isu21_invoice_param.
      PERFORM get_user_exit_function USING 'R431'.
      REFRESH: t_vkk_doc_id.
      LOOP AT t_fbstab WHERE funcc NE 'ISU_SAMPLE_R431'.
        t_vkk_doc_id  = p_iiu-t_vkk_doc_id.
        wa_t_bill_doc = p_iiu-t_bill_doc.
        CALL FUNCTION t_fbstab-funcc
          EXPORTING
            x_printdoc    = p_iiu-print_doc
            x_bldat       = p_param-bldat
            x_budat       = p_param-budat
            x_bupa        = p_iiu-bupa
            x_fkkvkp      = p_iiu-acc-fkkvkp
          TABLES
            t_contrcl     = p_contrcl
            t_bill_doc    = wa_t_bill_doc
            t_vkk_doc_id  = t_vkk_doc_id
          EXCEPTIONS
            error_message = 1.
        IF sy-subrc <> 0.
          mac_msg_putx co_msg_error sy-msgno sy-msgid
          sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 iu_error.
        ENDIF.
        FREE: wa_t_bill_doc.
      ENDLOOP.
    * for cross reference purpose only
      SET EXTENDED CHECK OFF.
      IF 1 = 2. CALL FUNCTION 'ISU_SAMPLE_R431'. ENDIF.
      SET EXTENDED CHECK ON.
    ENDFORM.                                                    "EVENT_R431
      most of time if I know the event, I just where use list the function module and go into the code and set the break-point a little bit earlier.
    Cheers,
    Chaiphon

  • Deserialization works only in debug mode

    When I try to deserialize an XML document (defined via File-Connection) it works fine in debug mode but I get an error in non-debug-mode. What's the problem here?
    Error: 2011-12-29 19:31:40.25
    Code: 0x00000001
    Source: Read data from SAP
    Description: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: There is an error in X
    ML document (0, 0). ---> System.TypeInitializationException: The type initializer for 'Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1' threw an exception
    . ---> System.NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..cctor()
    --- End of inner exception stack trace ---
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderList1..ctor()
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializerContract.get_Reader()
    at System.Xml.Serialization.TempAssembly.InvokeReader(XmlMapping mapping, XmlReader xmlReader, XmlDeserializationEvents events, String encodingStyle)
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    at System.Xml.Serialization.XmlSerializer.Deserialize(TextReader textReader)

    Yes, there is a potential for a bug. Thus, feel free to log it in
    MS Connect.
    You need to deploy it to the GAC, too. I will better point you to a blog post that covers this: http://www.hoekstra.co.uk/index.php/software-mainmenu-36/ssis-mainmenu-75/73-create-and-use-a-c-assembly-for-ssis.html?start=1
    I suggest when you go live you create a script that will take care of all, but it is not too too laborious.
    Arthur My Blog
    Are you 100% sure? Because I can see that SSIS seeks for the dll in ...DTS/binn. So I see no need to pollute the GAC with this dll.
    My dll is not deployed into the GAC and when I remove it, it will no longer work. I think it works in DTS/binn because the DTExec.exe is located there?
    LOG: This bind starts in default load context.
    LOG: Using application configuration file: c:\Program Files\Microsoft SQL Server\100\DTS\binn\DTExec.exe.Config
    LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
    LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.DLL.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1.EXE.
    LOG: Attempting download of new URL file:///c:/Program Files/Microsoft SQL Server/100/DTS/binn/ClassLibrary1/ClassLibrary1.EXE.

  • WaitFor() works only when in debugging mode!

    Hi, im having a problem with making my function waits for a process to end while in run mode!
    The function always run and exists while the process is still running...
    I checked it in debugging mode and it worked just fine, but i cant seem to be able to make it work in the run mode!
    Any hints???
    Here is my code:
    public void executeBatch (){
    try{
    Runtime runtime = Runtime.getRuntime();
    Process batchProcess = runtime.exec(new String[] {"cmd.exe", "/c", "FetchFiles.bat"}, null, new File(BATCH_FILES_PATH));
    BufferedReader b = new BufferedReader(new InputStreamReader(batchProcess.getErrorStream()));
    if (b.ready()){
    String line=null;
    while ( (line = b.readLine()) != null) {
    System.out.println(line);
    line = b.readLine();
    int exitVal = batchProcess.waitFor();
    System.out.println("Exit Value = " + exitVal);
    } else {
    b = new BufferedReader(new InputStreamReader(batchProcess.getInputStream()));
    if (b.ready()){
    String line=null;
    while ( (line = b.readLine()) != null) {
    System.out.println(line);
    line = b.readLine();
    int exitVal = batchProcess.waitFor();
    System.out.println("Exit Value = " + exitVal);
    } catch ( Exception ex ){
    System.out.println("executeBatch : " + ex.getMessage());
    btw, the process is a batch that connects to a linux server and "mget" files from some directories in the server...

    what the ....???
    the "BadExecWinDir.java" bad approach is all about
    not using an executable command like "dir"... which
    im not using at all...More than that but secondary.
    >
    and for the "GoodWindowsExec.java" concept
    demonstrates that you should handle the standard
    error and standard input streams and emptying them
    both together, which what i exactly did. i USED the
    concept...
    My piece of code is the same as the
    "GoodWindowsExec.java" code except that i made the
    code of the StreamGobbler class comes inside the
    function directly, and that i didn't use a checkup on
    the operating system to decide wither it's a Windows
    NT or Windows 95 to decide the command prompt
    executable name...StreamGobbler runs as a thread so both streams are emptied in parallel. In your code
               String line=null;
                while ( (line = brError.readLine()) != null)
                    System.out.println(line);this will only terminate when the process terminates and closes stderr. This means that the following code
              while ( (line = brInput.readLine()) != null)
                    System.out.println(line);
                only starts to run once the process terminates.
    BUT, the stderr stream and stdout streams have a limited buffer and block when this buffer becomes full. So, if the stdout stream produces more than a buffer full then it blocks until more room is avaialable and the process cannot terminate so the error stream cannot be closed so the code to empty stdout cannot run to make room in the buffer to put more output. Phew!
    If you change the order of emptying the two streams then you have a simillar effect.
    The only way I know of dealing with this is to empty both streams at the same time so you need two threads. You can use the default thread for one but you MUST use another thread for the other. Since I use stdout, stderr and stdin I use 3 threads!
    >
    thats all...Please read the article again.

Maybe you are looking for

  • Where can i get top games for my macbook pro retina

    is there anyway i can get top games that can be played on my macbook apart from those from the app world or anything i can purchase that can help 

  • Index an array of images only the last image shows

    Hi everyone, I try to index an array of images and all but the last element give me the error: "not an image." Here is a picture of the vi. The first for loop loads the images and stores them in an auto indexed tunnel. Every diagnostic I ran on this

  • Document without items

    Hi, i find a document without any item (type : AB), and i don't know where it come and is it possible to have a document without items. i hope your help. regards

  • WEB DYNPRO ALV GRID  GET SELECTED ROWS...

    I'm reusing component ALV Grid ... How can i get selected rows...

  • Software Developer / Cyber Security

    Moderator edit - content deleted, not in accordance with forum guidelines. zantzz - your interest is appreciated, but this forum is not the appropriate place for your request. Tom K. Closed.