HTTP error (server response) during segmentation

Hi
I was testing segmentation on our CRM IDES 2007 and unfortunately I have technical issue which I do not know how to investigate (to find a reason).
Graphical modeler in segmentation seems to work fine, but when do following step I get a popup with error:
1. Right click on the group
2. Press 'Count' ....
OR
1. Right click on the group
2. Choose 'Build Target Group' and then 'In dialog' or 'in background'
For the first time error says its HTTP error 500, but afterwards it is always HTTP error with code 400
(the whole message is something like this:
Server returned HTTP response code: 400 for URL :.....and then very long string, though the beginning is ok since it contains valid domain).
Could anybody give me a hint how can I find a root cause for this error?
The string with error contains at th end /bc/bsp/sap/crm_mkttg_segap/communication.do ...so maybe its something about not running service?
When I start SICF and go in the tree to sap --> crm ..t.hen I do not see anything like crm_mkttg_segap. maybe I am looking at the wrong place ?
regards
Rafal

Hi,
   Take a look at SAP note number  1363871.
Regards,
Arun Prakash

Similar Messages

  • Http error code 503 during sxi_cache refresh

    Hi !
    During the cpa cache refresh the following error occured in in the Integration Directory under the cache_notification menu problem tab:
    Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://erp204s.erp.local:51000/rep/remoteobjectaccess/int?container=ejb" with user "PIDIRUSER". Response code is 503, response message is "Not Ready"
    I must say that the SLD connection is not working properly right now. maybe this is the problem or something in tha java stack is missing?
    Thank you much for your help!

    Hi Robert,
         Http 503 error will occur when server is currently unable to handle the request due to a temporary overloading or maintenance of the server.
    This blog will be helpful for further reference.
    /people/krishna.moorthyp/blog/2006/07/23/http-errors-in-xi
    Thanks,
    Siva.

  • Email error "Server Response: '451 Invalid Smtp l...

    I am repeatedly getting this message when sending mail from smpt mail.btintenet.com :
    Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Subject 'Re: Case AVG#0000334806: [ ref:00D4000000086fU.5004000000ADEMJ:ref ] RE: AVG technical support - e-mail scanner gmail issues', Account: 'mail.btinternet.com', Server: 'mail.btinternet.com', Protocol: SMTP, Server Response: '451 Invalid Smtp line - Should end with CRLF', Port: 25, Secure(SSL): No, Server Error: 451, Error Number: 0x800CCC0F
    I am also getting "password rejected" message.  I have twice re-set my original password on the Servers page of my OE bt account, also in the smtp settigns.  i have visited my BT-Yahoo inbox and find I am still logged in  there, and can receive from there in OE.
    Solved!
    Go to Solution.

    NOT SOLVED YET sorry, it is much more complicated:
    All mails I send out of OE from either bt or gmail accounts, are sent with bt smtp server: mail.btinternet.com .  Outgoing mail is not scanned by AVG n any case, and the problem occurs whether AVG email scanner is enabled or not.
    All the HTML mails that I have created and sent to myself at least for the past month, whether from bt account to gmail or vice versa, or just bt to bt, cause error 451 etc when forwarded as attachments after I have received them.
    BUT the problem does not occur when the original, forwarded email was written in Plain text, even if the mail in which it is forwarded is HTML.
    Also, those same HTML mails that later cause the error when forwarded after they have been received, can be forwarded as attachments OK from the Sent box, but not from the Inbox after receipt.
    But both HTML and plain text mails other people have sent me CAN be forwarded OK as attachments from either account.
    Mails sent to myself from the BY Yahoo and gmail webmail can both be forwarded again in OE to bt without any error (but those from bt to bt  end up in BT Yahoo spam folder, until manually checked as "Not Spam").
    Is something in the bt smtp server causing the problem, since all mails I send from OE go through that server ...?

  • HTTP error 302: response.sendRedirect()

    Hi everybody,
    I have a first servlet (AGSenderServlet) sending a file to a second one (AGReceiverServlet). This second servlet I'm receiving a file and then redirect to a JSP page. But I'm getting the following exception:
    13-Sep-2010 13:20:42 org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet AGSenderServlet threw exception
    java.io.IOException: Received HTTP status code 302
            at AGSenderServlet.doGet(AGSenderServlet.java:43)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    ....I've looked on internet and apparently the error 302 is linked to response.sendRedirect().
    Here is my code:
    public class AGReceiverServlet extends HttpServlet {
         public void doGet(HttpServletRequest request,
                HttpServletResponse response)
         throws ServletException, IOException {
             // Create a factory for disk-based file items
              DiskFileItemFactory factory = new DiskFileItemFactory();
             // Create a new file upload handler
              ServletFileUpload upload = new ServletFileUpload(factory);
              String realPath = this.getServletContext().getRealPath("sync/in");
              List items = null;
                        try {
                             items = upload.parseRequest(request);
                        } catch (FileUploadException e) {
                             e.printStackTrace();
                        // Process the uploaded items
                        Iterator iter = items.iterator();
                        try {
                             String fileName = "blabla";
                             while (iter.hasNext()) {
                                  FileItem item = (FileItem) iter.next();
                                  // Process a file upload
                                  if (!item.isFormField()) {                         
                                       fileName = item.getName();
                                       long sizeInBytes = item.getSize();
                                       //Write to File
                                       if (fileName != null) {
                                          fileName = FilenameUtils.getName(fileName);
                                       File uploadedFile = new File(realPath);
                                       if (!uploadedFile.exists())
                                            uploadedFile.mkdirs();
                                       uploadedFile = new File(realPath+"/"+fileName);
                                       item.write(uploadedFile);
                             System.out.println("http://"+request.getServerName()+':'+request.getServerPort()+"/upTool/filereceived.jsp?filename="+fileName);
                             String redirectURL = "http://"+request.getServerName()+':'+request.getServerPort()+"/upTool/filereceived.jsp?filename="+fileName;
                             response.sendRedirect(redirectURL);                         
                        } catch (Exception e) {
                             e.printStackTrace();
         public void doPost(HttpServletRequest request,
                HttpServletResponse response)
         throws ServletException, IOException {
                   doGet(request, response);
    }The file received is saved properly and is ok.
    Using print out I have discovered that it was the running the whole code but not the code in filereceived.jsp (the JSP of the sendRedirect() ).
    I have tried the url used in the sendRedirect() and it works ok.
    Any idea?
    Cheers.

    The AGSenderServlet is sending a file to the AGReceiverServlet using multipart and Postmethod object. Here is the code.
    public class AGSenderServlet extends HttpServlet {
         public void doGet(HttpServletRequest request,
                HttpServletResponse response)
         throws ServletException, IOException {
              String filename = request.getParameter("filename");
              String ext = request.getParameter("ext");
              String serverName = request.getParameter("serverName");
              String port = request.getParameter("port");
              String path = null;
              String uri = "http://"+serverName+":"+port+"/AGReceiverServlet";
              File file = new File((this.getServletContext().getRealPath("/sync/out"))+"\\"+filename+'.'+ext);
              System.out.println("Test = "+file.getAbsolutePath());
              PostMethod post = new PostMethod(uri);
            Part[] parts = new Part[] {
                new FilePart(file.getName(), file) // File you want to upload
            post.setRequestEntity(new MultipartRequestEntity(parts, post.getParams()));
            // Now perform the POST and check for errors
            HttpClient http = new HttpClient();
            int status = http.executeMethod(post);
            if (status != HttpStatus.SC_OK) {
                throw new IOException("Received HTTP status code " + status);
         public void doPost(HttpServletRequest request,
                HttpServletResponse response)
         throws ServletException, IOException {
                   doGet(request, response);
    }Line 43 is just throw new IOException("Received HTTP status code " + status);What do you mean by " then you should handle it." ? I think I handle it. It redirects to the JSP filereceived.jsp which is hosted and available on the server (tried to access it directly by entering the url and it works).
    Edited by: Foobrother on Sep 13, 2010 7:38 AM

  • HTTP error: 401 unauthorized -error in photo upload

    Hi
    Please suggest in OAAD,how to rectify the error ' HTTP error: 401 unauthorized '  during Photo upload in IT0002.
    Regards
    Ritu Saurabh

    make sure that u have activate the content server in SCIF t code
    if yes check with ur basis team as arun said

  • Server exception during PPR #1

    Hi,
    I use JDeveloper 11g and for the model component I use EJB 3. I want to use a list of values to show list of items from another table, but it doesn't work.
    I have this error: server exception during PPR #1.
    What's the pb?!
    Thank u

    Pb is the atomic symbol for the element Lead.
    It's also sometimes used as an abbreviation for Peanut Butter, as in "I'm eating a PB&J sandwich" to mean that I am eating a peanut butter and jelly sandwich.
    However, I assume you mean the "problem."
    The problem is that some exception happens during the partial page request; it's quite likely to be in your code somewhere. Have you done any of the following:
    * Used the debugger to set a breakpoint on any code that runs so you can find the exception
    * Reviewed the WLS log files to see if there is a related stack trace?
    Best,
    john

  • Segmentation Error : Server returned HTTP response code: 500 for URL

    Hi,
    when we do customer segmentation in Applet Java Builder, we create a target group using 2 or more criterion, then it prompts us an error "Communication Error" - Server returned HTTP response code: 500 for URL: http//xxxxxxxxxxx/bc/bsp/sap/CRM_MKTTG_SEGAP/communication.do
    we're in CRM 7.0 SP 6.
    What we have done
    - activated the service CRM_MKTTG_SEGAP
    - implement sap note 1481289, 1359890, 1161753
    any info is really appreciated.
    Thanks
    JD

    HI ,
    Communication error occurs because of two active versions of segment builder jar files are appearing , deletion of older version resolves this issue .
    Go to SE80 u2013 Select the BSP Application - CRM_MKTTG_SEGAP and check segmentbuilder.jar Segment Builder Applet under MIME folder and check the size and delete the older version .
    Regards,
    Satish Bondu

  • Returns status code '500' (Internal Server Error) in response

    Hi,
    I got error like
    HTTP connection to http://XXX.com:50600/sap/xi/cache?sap-client=001 returns status code '500' (Internal Server Error) in response
    I did check this Discussion HTTP returns status is 500(Internal Server Error)
    But I don't understand can someone help me in detail.
    Thanks
    Kamal

    Hi All,
    When I check RFC destination configuration with following information.
    RFC Destination as "INTEGRATION_DIRECTORY_HMI"
    Connection Type: H
    Under Technical Setting TAB
    Target Host: write the host name
    Path Prefix: /dir/CacheRefresh
    Service No: enter J2ee port no (e.g. 50000)
    Under Logon/Security TAB
    select Basic Authontication radio button
    SSL select inactive
    Under Logon:
    Lang: EN
    Client: enter client
    User: XIISUSER
    Password: *******
    Under Special Option TAB
    HTTP Setting:
    HTTP Ver: HTTP 1.0
    Compression: inactive
    Compressed response: NO
    HTTP Cookies: Yes (All)
    This is the test result.
    Status HTTP response : 403
    Status text : Forbidden
    Duration test call : 163 ms
    Please help me.
    Thanks,
    Kamal

  • HTTP Error with Status code 403 when using ABAP Server Proxies

    Hi All,
    I have been working on ABAP Client and Server proxies in my project. The weblogs by Ravikumar, Prateek Shah,  Siva Maranani & VijayaKumari were very helpful and thank them all for just helpful and guiding postings.
    Interfaces using Client proxies are working fine and have been tested successfully. But I'm facing bit problems with Server Proxies. The scenario is of File to SAP system via XI. Data is coming correct up to Technical routing in pipeline but at call adapter(for Server Proxy to SAP)in XI pipeline I receive Error:
    HTTP response contains status code 403 with the description Business Server Page (BSP) Error Error when sending by HTTP (error code: 403, error text: Business Server Page (BSP) Error)
    Previously I was receiving authentication and authorization related error of status code 401 and then in communication channel I replaced user profile with a user id having role SAP_XI_APPL_SERV_USER. The basis peron has created new user id with role SAP_XI_APPL_SERV_USER  only and that I'm using. I've tried creating a HTTP destination with the created user id and in test connection too receive same error message.
    Please help me out with your inputs and understanding on the topic.
    Thanks and Best Regards
    Prashant Rajani

    Hi Prashant,
    Please take a look at these threads..They deal with the same problem, and they have been resolved here.
    BSP Authorization error
    Service cannot be reached .  error code 403 the reason forbiddn
    403 Error when accessing the server
    Hope your issue gets resolved.
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Delivery fails: "The server response was: 4.7.0 Temporary server error. Please try again later. PRX3"

    Trying to setup an Exchange 2013 server, with the DC and Exchange on same machine. WHen I try to deliver for either of the 2 mailboxes I have setup, I get this error.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    It doesn't seem to be a resource issue (I'm running an XL instance on Azure), and all other connectivity works fine (and fast). I just can't receive email there. 
    Looking in the event logs, I saw one issue related to the Front End HTTP proxy, but I wouldn't assume that's relevant here. (And connectivity via Outlook & OWA seem to be fine, with the exception
    of some redirect issues on the latter).
    I did end up installing Exchange on a secondary drive for space considerations, so the location is different... not sure if that would factor in either.
    Any ideas? I don't even really know where to start debugging this. I'm trying to set this up to work on some event sync/forwarding code.

    Ok, I think I solved my problem but figured I would update here for others who may be running into the same issue.
    In my \Exchange\TransportRoles\Logs\FrontEnd\ProtocolLog\SmtpReceive\*.LOG, I found more detailed information on the issue.
    "Message or connection acked with status Retry and response 
    451 4.4.0 Error encountered while communicating with primary target IP address: ""421 4.2.1 Unable to connect."" 
    Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 10.10.10.1:2525"
    I thought creating an endpoint for 25 would be sufficient, but once I created another endpoint for 2525 then my tests started working.

  • HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

    Well this morning I woke up to see that my site hosted on Windows Azure was producing 50X errors and in general being incredibly slow (up to 60 seconds response time).
    Now after looking through the DetailedErrors folder I see that the error received is:
    HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
    I tried creating a new test website and host it and guess what? I receive the exact same error here as well.
    What could be causing this?

    hi,
    Do you use windows azure website in Europe ? According to azure dashboard shown,
    Some customers may experience intermittent time out errors or slow response when accessing their web sites. Please see this image: 
    And now, you could try it again.
    If I misunderstand, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Consuming portlet get error ADF_FACES-60096:Server Exception during PPR

    hi all,
    i got a strange error when consuming portlet in webcenter portal application.
    i'm using jdeveloper 11.1.1.5 and webcenter framework extension 11.1.1.4
    i have a Portlet Producer Application and a Standards-based Java Portlet (JSR 286) in it.
    The view page of the portlet is a jspx file (view.jspx)
    There is a raw af:table component in the view.jspx file (with no data binding)
    At this time, run the view.jspx in the portlet producer application.
    The view.jspx page shows up in the browser and looks fine just as expected.
    After deploying the portlet to WLS, i include the portlet to the WebCenter Portal Application's home.jspx as an ADF Rich Portlet (from the WSRP Producer in IDE Connections) and run the Portal project.
    Wierd thing happens, a short time after the home page shows up in the browser, the portlet with an af:table in it shows up, but the portlet refresh itself repeatedly and an error is printed in the WLS log:
    [Application wcApp0202 deployed to Server Instance IntegratedWebLogicServer]
    Target URL -- http://127.0.0.1:7101/wcApp0202-Portal-context-root/index.html
    <JUApplicationDefImpl> <logDefaultDynamicPageMapPattern> The definition at portal.DataBindings.cpx, uses a pagemap pattern match that hides other cpx files.
    <SkinFactoryImpl> <getSkin> Cannot find a skin that matches family portal and version v1.1. We will use the skin portal.desktop.
    ADFPortletExternalContextImpl.encodeResourceURL: This resource is not using Stateless Proxying:/testP01/adf/styles/cache/portal-desktop-ctwpkz-zh_CN-ltr-gecko-prtl.css
    <ConfigUtils> <getADFConfig> null
    *<RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #149*
    java.lang.IllegalStateException: The expected request type is not the same as the current request type.
         at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.getExternalContext(GlobalConfiguratorImpl.java:333)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$CacheRenderKit.<init>(FacesContextFactoryImpl.java:86)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:260)
         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:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.bea.portlet.container.PortletRequestDispatcherImpl.forward(PortletRequestDispatcherImpl.java:292)
         at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:1094)
         at javax.portlet.faces.GenericFacesPortlet.doBridgeDispatch(GenericFacesPortlet.java:700)
         at javax.portlet.faces.GenericFacesPortlet.serveResource(GenericFacesPortlet.java:291)
         at oracle.portlet.bridge.adf.application.ADFBridgePortlet.serveResource(ADFBridgePortlet.java:187)
         at com.bea.portlet.container.PortletStub.doResource(PortletStub.java:1043)
         at com.bea.portlet.container.FilterChainGenerator.runFilterChain(FilterChainGenerator.java:141)
         at com.bea.portlet.container.PortletStub.renderResource(PortletStub.java:779)
         at com.bea.portlet.container.AppContainer.invokeResourceStub(AppContainer.java:1376)
         at com.bea.portlet.container.AppContainer.invokeResource(AppContainer.java:1328)
         at com.bea.wsrp.producer.adapter.javaportlet.JavaPortletAdapter.getResource(JavaPortletAdapter.java:694)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doGetResource(MarkupServiceHandler.java:766)
         at com.bea.wsrp.producer.handlers.markup.MarkupServiceHandler.doService(MarkupServiceHandler.java:295)
         at com.bea.wsrp.producer.handlers.AbstractServiceHandler.service(AbstractServiceHandler.java:71)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:349)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:250)
         at com.bea.wsrp.producer.container.ProducerEndPoint.processNow(ProducerEndPoint.java:208)
         at oracle.portlet.server.adapter.web.WSRP_v2_Markup_PortTypeSoapToEndpoint.getResource(WSRP_v2_Markup_PortTypeSoapToEndpoint.java:128)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.invoke_getResource(WSRP_v2_Markup_Binding_SOAP_Tie.java:66)
         at oasis.names.tc.wsrp.v2.bind.runtime.WSRP_v2_Markup_Binding_SOAP_Tie.processingHook(WSRP_v2_Markup_Binding_SOAP_Tie.java:1445)
         at oracle.j2ee.ws.server.StreamingHandler.handle(StreamingHandler.java:299)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doEndpointProcessing(JAXRPCProcessor.java:442)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:1081)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doRequestProcessing(JAXRPCProcessor.java:333)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:232)
         at oracle.j2ee.ws.server.JAXRPCProcessor.doService(JAXRPCProcessor.java:185)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:484)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         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:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.producer.container.endpoint.ProducerEndpointFilter.doFilter(ProducerEndpointFilter.java:34)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         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:136)
         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)
    I tried to delete the af:table from view.jspx, redeploy the portlet and rerun the portal, the home.jspx page shows up in the browser and looks fine just as expected.
    But the same practice goes on well in jdeveloper 11.1.1.3 with webcenter framework extension 11.1.1.3
    What is the problem ?
    Regards,
    Pen-Pen
    Edited by: Pen-Pen on 2012-2-5 下午6:27

    Hi Yannick,
    Thanks for you reply.
    I have edited the question with more details.
    For your questions:
    The error happens when the WLS try to render the portlet for the first time. (a short time after the home page shows up in the browser)
    I'm a starter in webcenter & portlet, so i'm not sure if i use any portlet specific objects. I just create a Standards-based Java Portlet (JSR 286) with almost all the steps in default except in step 3 of 8, i change the view.jsp to view.jspx. In the portlet, i use ADF BC tech & ADF Faces. (There are readonly VO's from database 10g and AMs)
    I think i got the error during PPR. (when the WLS try to render the portlet for the first time)
    BTW: in the WebCenter Portal Application's home.jspx, i include the portlet as an ADF Rich Portlet from the WSRP Producer in IDE Connections.

  • Checkout file failed in JDI (server response: Internal Server Error)

    Hi All,
    I am getting a strange error when I am trying to check out any file. It is not allowing me to checking out any views or controllers. I am not sure what went wrong. It is giving the error as:
    Checkout failed: Checkout file failed (server response: Internal Server Error).
    Any idea why this is happening. I am not able to edit my code. Its really urgent for me.
    Thanks in advance!!!
    Regards,
    Gurmat

    Gurmat,
    Could you please close the thread by assigning Points.
    You should be periodically monitoring the Data File Space.
    Basis Guys can extend the Table Space upto 2GB
    Check out this SAP help for working with DB Management tool:
    SAP's  BRTOOLS
    [BRTOOLS|http://help.sap.com/saphelp_nw70/helpdata/EN/46/ce0440a832e369e10000000a155106/frameset.htm]
    Regards,
    Karthick Eswaran

  • The server response was: 4.7.0 Temporary server error. Please try again later. PRX3

    Hello, 
    I just setup an exchange 2013 server  with hosted with the same machine of Active Domain Controller.
    I tested the connectivity of the server , i found that the mailbox can only send email to external mailbox however it cant receive any mail neither  from external mail nor internal mail.
    I ran a test from exchange connectivity analyzer for inbound mail and it failed with the following message. 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3
    I did a search on this forum and found the following thread
    social.technet.microsoft.com/Forums/exchange/en-US/288e1619-ce56-4c3a-8bb1-4886835520fe/delivery-fails-the-server-response-was-470-temporary-server-error-please-try-again-later?forum=exchangesvrdeploy
    but no luck , i dont know how to set an alternative host, would somebody please help.
    error details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally() 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.

    Thanks god, finally i found the solution :) , i can go to sleep
    i added my ad domain name to the host table then all the problems are solved!!!
    source
    http://www.techieshelp.com/exchange-2013-451-4-7-0-temporary-server-error-please-try-again-later-prx5/

  • CCA Error: "the server response could not be parsed [12152]"

    Hi,
    Has anyone gotten this error message on Cisco Clean Access Agen CCA Agent "the server response could not be parsed [12152]". I have tried everything I can but can't get rid of the error. I am running CCA 4.0.5 in OOB+VG, cluster mode for both CAM & CAS.

    Syed,
    If you are still there, can we pick up from where we left?
    http://forums.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Expert%20Archive&topic=Security&CommCmd=MB%3Fcmd%3Dpass_through%26location%3Doutline%40%5E1%40%40.1ddf45d4/8#selected_message

Maybe you are looking for