Strange pageContext.forward Error

Hello,
We're migrating from Weblogic 10 to 11g1 using MyFaces 1.2.
And have encountered with one JSF page with pageContext.forward problem.
java.lang.IllegalStateException
     at org.apache.myfaces.application.jsp.ViewResponseWrapper.getWriter(ViewResponseWrapper.java:140)
     at javax.faces.webapp._ErrorPageWriter.handleThrowable(_ErrorPageWriter.java:492)
     at javax.faces.webapp._ErrorPageWriter.handleException(_ErrorPageWriter.java:479)
     at javax.faces.webapp.FacesServlet.handleLifecycleException(FacesServlet.java:294)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:192)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
     at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
     at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:160)
     at jsp_servlet.__query._jspService(__query.java:180)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:35)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
     at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
     at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:341)
     at org.apache.myfaces.application.jsp.JspViewHandlerImpl.buildView(JspViewHandlerImpl.java:486)
     at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:337)
     at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
     at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:187)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
     at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:287)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
     at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:351)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
     at com.cht.morder.web.sessionFilter.doFilter(sessionFilter.java:396)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
     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)
The problem looks like MYFACES-1955
https://issues.apache.org/jira/browse/MYFACES-1955
But when I change the line from pageContext.forward to response.sendRedirect, it works.
Anyone has also got this problem?
Is it the problem of Weblogic like the discussion in MYFACES-1955?
Thank you for your help.
Edited by: user12024433 on 2011/11/21 下午 7:33

Howdy,
You've already written to you JSP output, and in this situation you can't forward 'cause it's automatically flushed.
try changing your forward method position, befor any out.print() or like that.
OR use this trick,
<%@ page autoFlush="false" %>
// Write to JSP and other stuffs...
// Forward to another content...
// Do your stuffs...
response.flushBuffer();

Similar Messages

  • PageContext.forward causes strange exception

    Hi,
    I've found a strange exception using pageContext.forward.
    The code is as follows:
    try {
    } catch (Exception e) {
    out.println (...); //for debugging purposes
    pageContext.forward (errorPage);
    pageContext.forward throws an "IllegalStateException: Attempt to clear a buffer that's already been flushed". (I think that this is the right translation, the original is in Spanish).
    I think that there is a very similar problem described in this forum:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=343314
    Has anyone found a similar problem (with its solution, if possible ;=)
    Thanx

    Howdy,
    You've already written to you JSP output, and in this situation you can't forward 'cause it's automatically flushed.
    try changing your forward method position, befor any out.print() or like that.
    OR use this trick,
    <%@ page autoFlush="false" %>
    // Write to JSP and other stuffs...
    // Forward to another content...
    // Do your stuffs...
    response.flushBuffer();

  • Problem forwarding error message

    Please advise how I can get the error message to show up on the feedback.jsp page.
    My action page here:
    <%
    String email = request.getParameter("txtEmail");
    if (email == null || email.equals("")) {
    String msg = "Please enter an email address";
    session.setAttribute("ERRORMSG",msg);
    pageContext.forward("feedback.jsp");
    %>The feedback.jsp page gives me error saying problem with msg variable.
    Here is what I have on feedback.jsp:
    <html>
    <body>
    <%
    String myText = session.getAttribute("msg");
    out.println(myText);
    </body>
    </html>
    %>

    You are using different names for the attribute in your get/set calls.
    // if you set the variable like this
    session.setAttribute("ERRORMSG",msg);
    // retrieve it like this
    String myText = (String)session.getAttribute("ERRORMSG"); Cheers,
    evnafets

  • JSP page and the pageContext.forward() method

    I am running JSP pages on a coldfusion site so that a CF page (i.e. login.cfm) hosts my login.jsp page. I want to reload the JSP page without having to reload the cfm page each time. pageContext.forward() does do this, however, it only forwards on to a new page. I want to be able to reload a page with the new URL parameters (e.g. when there is an error, login.jsp will reload and give the user an error). What is a method to reload the page with the proper URL variables?
    The following code does not work:
    pageContext.forward("login.jsp?operation=user_edit&jsessionid=" + f_URLEncode(session.getId()));
    Because it runs from the login.jsp page (the forward command only goes to a new page)

    Just to clarify...
    I log into your site. The first page shown is the CF page. The CF page automatically redirects me to the JSP page. Then what, exactly?
    Does the login page automatically determine my URL, attempt to validate it, and if it doesn't work, it reloads the page?
    The reason I ask is because there is a difference between the resulting HTML page and the JSP class file that generates that HTML page. Generally speaking, most web servers, particularly Tomcat, do not recompile the JSP class file, they just simply pass the parameters to the existing class file, and a new HTML page is generated.
    So technically speaking, every time you visit the login.jsp page, you will get a brand new HTML page. The contents of that page are the same because you presumably pass the same parameters to the class which hasn't changed. But in other words, no, you can't forward to an "old" page that was previously generated by the class - each time the web server calls that class, it creates a "new" page.
    Or are you saying that every time you attempt to forward to the login.jsp page, the system erronously calls the CF page instead?

  • Strange system log error from Photoshop CS4

    Hi.
    I keep getting this strange system log error from Photoshop CS4.
    It comes after a wile when using PS CS4.
    I tried to chance the memory settings and scratch disc to see if that helped. It didn't.
    I also checked all my ram for anything bad. 16GB in my Mac Pro Intel OS X 10.5.6
    Everything is updated to latest included Adobe apps.
    This is the system log error
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** set a breakpoint in malloc_error_break to debug
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: Adobe Photoshop CS4(305,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr  7 16:04:03 mugge [0x0-0x28028].com.adobe.Photoshop[305]: *** error: can't allocate region
    And it keeps on until i close Photoshop.
    Please anybody ?? i cant figure out what this means.
    Thx for help.
    Erik S

    Now i get this system log error ?
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: Adobe Photoshop CS4(651,0x6a73720) malloc: *** mmap(size=132911104) failed (error code=12)
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** error: can't allocate region
    Apr 29 14:45:02 mugge [0x0-0x32032].com.adobe.Photoshop[651]: *** set a breakpoint in malloc_error_break to debug
    and this from Bridge ???
    Apr 29 16:35:45 mugge Adobe Bridge CS4[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0x29777980: double free\n*** set a breakpoint in malloc_error_break to debug
    Apr 29 16:35:45 mugge Adobe Bridge CS4[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0xcb73827b: Non-aligned pointer being freed\n*** set a breakpoint in malloc_error_break to debug
    Apr 29 16:35:45 mugge Adobe Bridge CS4[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0x29777980: Non-aligned pointer being freed (2)\n*** set a breakpoint in malloc_error_break to debug
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0x29777980: double free
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0xcb73827b: Non-aligned pointer being freed
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: *** set a breakpoint in malloc_error_break to debug
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: Adobe Bridge CS4(650,0xb0e8f000) malloc: *** error for object 0x29777980: Non-aligned pointer being freed (2)
    Apr 29 16:35:45 mugge [0x0-0x31031].com.adobe.bridge3[650]: *** set a breakpoint in malloc_error_break to debug
    Chris. also read my post just before this one plase.  thx

  • How to activate Forward Error Handling in SRM

    Hello Gurus,
    I got an requirement to activate Forward Error Handling in SRM. I have searched on SDN but didn't find appropriate answer on it.
    Even I found some link: PI/XI: Forward Error Handling (FEH) for asynchronous proxy calls with the use of Error and Conflict Handler (ECH)
    It explains me some points like activating FEH from SRM in SPRO. I have activated the same, plz check the screen shot:
    It also follows some development for the same.
    Here my concern is, should I follow this document? Does it applicable to all to all the scenarios?
    Step 8: it assign object id and type what does it mean...
    Does any one can explain me in detail..... Please provide me any document to configure the FEH in SRM.
    I am trying to implement FEH in my SRM system. So that when even XML fails due to error, I should be able to reprocess/restart it with some editing to the XML.
    My receiver interface for XML is PurchaseRequestERPSourcingRequest_In
    I think this is standard one and no need to make any custom code for it. SAP has all ready given solution for it with some Configuration.
    I have made some configurations like:
    The view FEHV_ACTIVE must have the status active.
    In transaction /SAPPO/LOGSYS , the logical system must be defined for the software component SRM-EBP-ESA .
    As stated in in the link :
    http://esworkplace.sap.com/socoview%28bD1lbiZjPTAwMSZkPW1pbg==%29/render.asp?id=2BAABCB0D30111DC2B8D000F20FCB6A9&fragID=…
    Also I have made some configuration according to the Note: 1973768 - No reprocess option is available in FEH for failed in XML in SRM
    Resulted, the “Process” button get activated in the XML Post Processing screen.
    But can I reprocess my XML with edited value from there..?
    All the  configuration part of PI  is already done .
    I wanted to know  about the  FEH  Part. what are the  steps   i am  missing  or where  i am  going  wrong ?
    Please let me help.
    Thanks
    Regards
    Karan

    Dear Raz,
    I have gone with above mentioned note, it explains about creating Custom Proxy and configuration with PI scenario. Even the link in my previous post, explains about the custom proxies and configuration..
    I think I should must be descriptive about my issue.
    I am trying to implement FEH in my SRM system. So that when even XML fails due to error, I should be able to reprocess/restart it with some editing to the XML.
    My receiver interface for XML is PurchaseRequestERPSourcingRequest_In
    I think this is standard one and no need to make any custom code for it. SAP has all ready given solution for it with some Configuration.
    I have made some configurations like:
    The view FEHV_ACTIVE must have the status active.
    In transaction /SAPPO/LOGSYS , the logical system must be defined for the software component SRM-EBP-ESA .
    As stated in in the link :
    http://esworkplace.sap.com/socoview%28bD1lbiZjPTAwMSZkPW1pbg==%29/render.asp?id=2BAABCB0D30111DC2B8D000F20FCB6A9&fragID=…
    Also I have made some configuration according to the Note: 1973768 - No reprocess option is available in FEH for failed in XML in SRM
    Resulted, the “Process” button get activated in the XML Post Processing screen.
    But can I reprocess my XML with edited value from there..?
    Can any one tell me, what are the steps I am missing here. As this is my first time to implement FEH, I am confused.
    Please let me help.
    Regards,
    Chandan

  • How to Setup Forward Error Handling in PI Scenarios. Can you help me with the same with screen shots if possible?

    Dear all
    How to Setup Forward Error Handling in PI Scenarios. Can you help me with the same with screen shots if possible?
    Thanks
    Regards
    karan

    Hello
    These are the following errors
    1. Trace level="1" type="T">no interface action for sender or receiver found</Trace>
    2. <Trace level="1" type="System_Error">Application-Error exception return from pipeline processing!
    3.
    <Trace level="1" type="T">Application Error at Receiver... => ROLLBACK WORK</Trace>  
    <Trace level="1" type="T">System Error at Receiver... => ROLLBACK WORK</Trace>  
    <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />  
    <Trace level="1" type="System_Error">Application-Error exception return from pipeline processing!</
    Trace level="3" type="T">No persisting of message after plsrv call, because of config</Trace>Trace level="3" type="T">Error of the prevous version:</TraceTrace level="3" type="T">Error ID APPLICATION_ERROR</Trace>
    tThere are repeating errors also.
    TThanks
    Regards
    kkaran

  • Forward Error Correction

    I'm trying to find a way to implement Forward Error Correction (FEC) in Java, and if possible, find a code that someone has wirtten b4.
    Can any1 plz help me? I need this FEC in a one way communication.

    BTW, I want this in native Java (not C, like swarmcast)

  • NAT forwarding error?

    I have an Airport Extreme Base Station which I'm running with 3 pcs and a 12 inch powerbook - I used the powerbook to configure it. Everything works fine, except for 2 problems at specific online locations, which I suspect may be related. My online bridge club will not let me host a table because I have a "NAT forwarding error". I have read up and understand what that is, but the instructions I can find to fix it aren't very clear - can anyone give me better ones? The instructions I do have say I will have to set up a static address for each computer - my ISP requires a dynamic address. Is there a way round this? Also, the customer service page at my ISP's web site won't load - I get an Internal Service Error 500 message. Tech support at the ISP told me that "sometimes routers act like firewalls" and had me plug the modem directly into my computer - it then worked. Apple tech support said they'd never heard of such a thing. Could this also be a NAT forwarding error?
    Power Book G4, Airport extreme, 3 PCs   Mac OS X (10.4.6)   Windows XP on the PCS
    Dell Latitude CPx   Windows XP Pro  

    The instructions I do have say I will have to set up a static address for each computer - my ISP requires a dynamic address. Is there a way round this?
    The AirPort Extreme base station (AEBS) will continue to get it's address from your ISP via DHCP. You will need to give your computer a local static IP address. You will find the information you need in Steve Newstrum's user tip "How do I use Port Mapping (Part I)".

  • Sql...forward error recovery

    in the recovery technique know as forward error recovery, on the detection of a particular error in a system, the recovery procedure consists of adjusting the state of the system to recover from the error. Can such a technique be used in a DBMS to recover from the system crashes with the loss of volatile storage? thank you.

    Randy,
    This sounds like an issue with the BRTOOLs then. 1722 is a rare error where the SQL statement attempts to convert a string into a number - like a date in this instance.
    You may need to open a ticket with SAP Support and have them look at the issue, as you may need  a fix for the toolset itself.
    Sorry I could not be of more assisatance Randy.
    -Tim

  • Forward Error Handling

    Hi,
    Does anyone know where I can find more information on SAP Forward Error Handling? The only info I have found so far is here  [<clicky>|http://esoadocu.sap.com/socoview%28bD1lbiZjPTAwMSZkPW1pbg==%29/render.asp?sap-unique=125551&sap-params=cGFja2FnZWlkPURDQkQzMTVCNkQ3MjU1RjE5QUYyMDAxNDM4QzNCQzA4JmlkPTYyMTEwMEJBRkQ4NDQzQjBCNjkyN0FERjNGNkQ3MkZBJnBhY2thZ2VpZD1ERTA0Mjg0Njg3QkVCREYxOTUxNTAwMUE2NEQzRjQ2Mg%3d%3d]
    I have found the correct place in the IMG but there is not much additional documentation there either.
    Thanks
    Manish

    Goto SAP service marketplace and search for
    SAP Reference Implementation Guide -> Cross-Application Components -> Processes and Tools for Enterprise Applications -> Enterprise Services -> Error and Conflict Handling .
    Your link is not correct, I found one: http://esoadocu.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?sap-unique=122005&sap-params=cGFja2FnZWlkPURDQkQzMTVCNkQ3MjU1RjE5QUYyMDAxNDM4QzNCQzA4JmlkPTYyMTEwMEJBRkQ4NDQzQjBCNjkyN0FERjNGNkQ3MkZBJnBhY2thZ2VpZD1ERTA0Mjg0Njg3QkVCREYxOTUxNTAwMUE2NEQzRjQ2Mg%3d%3d
    Reards,
    Gourav

  • Forward Error Handling (FEH) framework?

    Hi all
    Forward Error Handling (FEH) framework - can any one expalin this?
    Muthu

    Hi,
    Forward Error Handling (FEH) is a framework in SOA for performing error processing in
    asynchronous communication on the receiver side. Please check the troubleshooting document.
    https://service.sap.com/sap/support/notes/1270081
    Regards,
    Masa

  • Forward Error Handling - File interfaces?

    Hello Experts,
    Can we use Forward Error Handling (FEH) for implementing error handling in File Interfaces ?
    Like for simple Application Server file interfaces, if something goes wrong during the process of writing/reading a file on App Server, can we use FEH for showing the log?
    I know it is a concept used for PI...so we want to know if it can be used for file interfaces as well? Just want to keep similar approach for error handling and logging (for both PI and File Interfaces).
    Thanks.

    Edit 1 May 2015: Added inbound
    Just a slight correction.
    FEH is used in the ABAP backend systems and are only for asynchronous inbound proxy interfaces. It is not available for sync proxies, IDocs, BAPIs. Neither is it available for any error handling on the PI system itself.
    PI/XI: Forward Error Handling (FEH) for asynchronous proxy calls with the use of Error and Conflict Handler (ECH)
    Message was edited by: Eng Swee Yeoh

  • Strange ORA-01044 error

    Hi Guys,
    I'm getting a very strange ORA-01044 error:
    Oracle.DataAccess.Client.OracleException ORA-01044: size 87160000 of buffer bound to variable exceeds maximum 288212783965667328    at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx pOpoSqlValCtx, Object src, String procedure)*
    at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, String procedure, IntPtr opsErrCtx, OpoSqlValCtx pOpoSqlValCtx, Object src)*
    at Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
    As you can see, the buffer size does not exceed the maximum stated, yet it is still causing an exception.
    Some background.. A new parameter has been added to a stored proc that was originally working fine, this new parameter is an associative array of numbers.
    On the ODP.Net side, I create a parameter that has a collection type of "*PLSQLAssociativeArray*" and Oracle DB Type of "*Int32*".
    Any ideas as to what might be causing this problem?

    Hi,
    What db version?
    There is an older bug where this error would be raised if the requested buffer size exceeded the granule size of the SGA. That was from the 9.2 timeframe as I recall.
    Regards,
    Mark

  • Fast forward error

    My Ipod is half full of mp3 files that I have ripped from my CD collection. Suddenly (this is new) when I try to fast forward in a song by clicking on the center button so that the triangle pops up, the song will jump back to the beginning after I scroll to the location in the song where I want to be. I flashed my player with the new software the other night, so I don't know if this is related or not.
    Any ideas? Thanks for your help.
    Ipod 30 GB video (5th Gen.)   Windows XP  

    foutrelis wrote:
    To understand the non-fast forward error you're receiving, do a `git help push' and read the section titled "NOTE ABOUT FAST-FORWARDS". I'm not sure what the exact situation of your local repository is, but `gitk' may be able to give you a visual indication of where your local branch has diverged and causes the push to not be fast forward.
    When you're in doubt, `git help <command>' comes in handy.
    Git does has awesome man pages. Still not sure how this happened though as I'm the on person on the project.  Did a 'git push --force' that fixed it but lost my history which I guess isn't a big deal. 
    foutrelis wrote:First of all, `git reset --hard' doesn't do anything as there are no pending local changes (you've committed them in the previous step) and you're not specifying a commit to reset to so it picks HEAD which is the commit you're currently at. It is considered a powerful (read dangerous) command, and is mostly used for throwing away unwanted uncommitted changes.
    Ok, so how do I then do a git push that will assure that the local and remote repository are in sync (i.e. deleted folders... that have been erased on the local are also not on the remote repository)?  Before I was getting old scripts and such that I had deleted being left on the github repository.  The 'git reset --hard' seems to have fixed it as I'm pretty sure I didn't do any other changes after I added that, but maybe it was something else?
    Last edited by Gen2ly (2009-11-04 17:08:54)

Maybe you are looking for

  • Mail and the spinning wheel of death

    we have a office macbook pro running 10.4.11 that is having some problems with mail. normal email are sending and coming in fine, however emails going or coming with attachments are causing mail to lock up. when mail is locked up you can not force qu

  • AFW to IS Communication Error?

    I am having trouble setting up a file adapter on the central adapter engine for XI 3.0 The adapter engine is able to pick up the files, but has a communication failure sending the message to the integration server. No xml message arrives in SAP_MONI,

  • Sychronization

    When you call synchronized(this) inside an instance of a class, does it just synchronize directly on that instance or does it synchronize on objects that that class holds references to also? EDIT: Also, this might seem like a weird question, but in a

  • Iphone6 not charging ... Charging port not working

    I Bought iPhone 6 recently and it started acted funny with charging. It would charge only if I pally pressure on the cable at certain angle. Then I tried changing cables to even new ones and the pproblem did not go away. Then I visited the Apple stro

  • How to mark Autoplay in Compressor?

    I need to set the automatically play flag on a bunch of Quicktime videos and would LOVE to do this as I run them through Compressor, but I can't seem to find where to set it. I can't set it in the incredibly horrible and lacking any useful feature Qu