Request response problem

I am using WAS 5.0 to run my application using JSF pages.
The problem I am facing is
When i try send a request which involves huge data insertion in SQL server using IE the browser shows "Page not found"after 2minutes and does not wait for the response but the request is processed and the process completes after 15 minutes.
When i try to run the same in firefox it works fine
is it related to some time out or request reaponse settings in IE.

Not sure about the workings of IE.
A way around it would be to process the data insertion in the background (new thread, excuse the lazy terminology) and send a full "please wait" page as the response. If the user is required to wait then get the page to check if it has finished at regular intevals (this page will be fully loaded so no timeout issues). Or you could even implement a progress bar using AJAX.
http://www.w3schools.com/ajax/default.asp
http://forum.java.sun.com/thread.jspa?forumID=45&threadID=5202310
http://www.google.com/search?q=ajax+progress+bar
Bamkin

Similar Messages

  • ESB Console turns Request/Response message into One Way message

    Hi folks,
    have come across a strange situation and wondered if anyone else had come across this. Maybe it's fixed as part of a patch set.
    I'm running SOA Suite 10.1.3.1.0 on Windows.
    After I've created and deployed a Request/Response service (either RS or SOAP Invocation Service) if I go to the ESB Console and click on "Apply" in say the Definition tab, my service turns into a One Way service.
    This then causes null pointer exceptions when I run my process, as you might expect.
    If I redeploy from JDev and leave the "Apply" button alone I'm back in business.
    Is this something that anyone else has had a problem with?

    Hi.
    I would recommend you to install version 10.1.3.3 of SOA Suite
    http://download.oracle.com/otn/nt/ias/10133/ias_windows_x86_101330.zip
    http://download.oracle.com/otn/linux/ias/10133/ias_linux_x86_101330.zip
    Also, use the JDev 10.1.3.3
    http://www.oracle.com/technology/software/products/jdev/htdocs/soft10133.html
    They are supposed to be much more stable.
    After using the new release, let us know if you still run into this problem.
    Denis

  • XML Namespace in WebService Request/Response

    Hi all,
    I have a question regarding xml namespace usage in wsdl and the corresponding request/response messages.
    I have already browsed quite some articles about xml namespaces as well as some forum threads, but I am still not sure.
    I have the following part of a wsdl document (generated by Integration Directory), defining a targetnamespace.
    u2026
    <wsdl:types>
        <xsd:schema targetNamespace="http://www.dorma.com/sap/xi/finance"
                             xmlns="http://www.dorma.com/sap/xi/finance"
                             xmlns:xsd="http://www.w3.org/2001/XMLSchema">
            <xsd:element name="DebtorGetDetailResponse" type="Z_BAPI_DEBTOR_GETDETAIL_Response"></xsd:element>
            u2026
            <xsd:complexType name="Z_BAPI_DEBTOR_GETDETAIL_Response">
                <xsd:sequence>
                    <xsd:element name="DEBITOR_COMPANY_DETAIL" type="BAPI1007_5" minOccurs="0">
                    </xsd:element> u2026
                </xsd:sequence>
            </xsd:complexType>
            u2026
        </xsd:schema>
        u2026
    </wsdl:types>
    u2026
    In my understanding, all types defined in the schema section of a wsdl document will be in the targetnamespace, if defined.
    Therefore the element DEBITOR_COMPANY_DETAIL would be in the namesapce
    http://www.dorma.com/sap/xi/finance
    However, the ABAP proxy generates a response message like follows,
    where only the root element is in this namespace and the child elements are in the global namespace:
    <?xml version="1.0" encoding="utf-8"?>
    <ns1:DebtorGetDetailResponse xmlns:ns1="http://www.dorma.com/sap/xi/finance"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <DEBITOR_COMPANY_DETAIL>
            u2026
        </DEBITOR_COMPANY_DETAIL>
        u2026
    </ns1:DebtorGetDetailResponse>
    Do I have a wrong understand of the wsdl (xml schema) or is this an erroneous behavior?
    The problem is that some 3rd-party software web service module does not accept
    the response message as not complient with the respective wsdl document.
    Any input is appreciated.
    Thanks
    Hans
    Edited by: Hans-Jürgen Schwippert on Oct 1, 2008 12:02 PM

    I have the same problem. I am trying to connect to a webservice running on IBM websphere but it doesn't accept the xml in my request. It appears to be the same namespace issue.
    Did you ever find a solution for this?
    Is it a valid webservice call if you omit the namespace for an element or is this a bug in the Adaptive WS implementation?
    Web Dynpro web service model generated request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Header>
    <sapsess:Session xmlns:sapsess="http://www.sap.com/webas/630/soap/features/session/">
    <enableSession>true</enableSession>
    </sapsess:Session>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    look between these lines -
    <ns1:tamKontrolleraKontoLastAnrop xmlns:ns1="http://schemas.fora.se/modell/tam/1.0/TAM_Data">
    <AnvandarNamn>30039647</AnvandarNamn>
    </ns1:tamKontrolleraKontoLastAnrop>
    look between these lines -
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    As you can see the tag
    <AnvandarNamn>30039647</AnvandarNamn>
    is missing a namespace.
    It should be
    <ns1:AnvandarNamn>30039647</ns1:AnvandarNamn>
    Using a third part tool called Soapui i generate this request that works:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tam="http://schemas.fora.se/modell/tam/1.0/TAM_Data">
       <soapenv:Header/>
       <soapenv:Body>
          <tam:tamKontrolleraKontoLastAnrop>
             <tam:AnvandarNamn>30039647</tam:AnvandarNamn>
          </tam:tamKontrolleraKontoLastAnrop>
       </soapenv:Body>
    </soapenv:Envelope>

  • Does any one implemented solution for httpservlet request/response object in IWSDLInterceptor implemented class?

    I am trying to handle Producer not available situation in which I am using Interceptor IWSDLInterceptor in WLP 10.3.4. I am able to retrieve exception using onWSDLException but from here if I have to forward my pageURL object I need httpservlet request and response. I tried my own filter class to have its own customize request and also tried it out all other Interceptor to see if any one can handle IOException. I did manage to throw my own Customize exception but  that also did not work out as Page does not have any backing file or any supportive Controller class.
    Does any one implemented solution for httpservlet request/response object in IWSDLInterceptor implemented class? or do we have any specific documentation in regards to this? As I am not able to find much martial on IWSDLInterceptor except Java API from Oracle and article defining Two way SSL handshake Producer.
    Any kind of help is appreciated.
    Thanks
    PT

    Thanks Emmanuel for your response but render behavior is not available for IWSDLRequestContext/IWDSLResponseContext object which IWSDLInterceptor uses for implementation.
    Let me put my question in little simpler manner. May be my approach to the problem is not proper.
    Problem : Handle Producer Not available (no application exists on server) on consumer side.
    So far tried approach : Producer is not running then I am able to handle that TransportException at IInitCookieInterceptor/IHandleEventInterceptor onFault behaviour but in the case of Producer not even exists Consumer try to get WSDL fetch operation and failed with FileNotFoundException.
    To handle this exception, I used IWSDLInterceptor which is available under IWSDLInterceptor.OnWSDLException (Oracle Fusion Middleware Java API for Oracle WebLogic Portal)
    I am able to catch the exception but problem arise when application needs to forward at specific page/render portlet for this situation. For that it required request/response object but IWSDLInterceptor does not give any kind of instances to redirect request as there is no direct access to HTTPServlet request/response object.
    I tried my custom request object to use there. I tried out custom filter object of IWSDLrequestContext. nothing works.
    One approach works is to put producer WSDL file at consumer level. But in that, you need to handle different producer files for different environment. Which I don't think its a good approach.
    eAny one Let me know if my approach to the problem/scenario is wrong. Or if I am missing out any other supporting interface which also required to handle this scenario. or I am using wrong interface for this scenario.
    Thanks for your help in advance.
    PT.

  • JMS Transport, Transactional, asynchronous request-response

    Hi again :)
    I have weblogic web service with jms transport and have chosen session bean implementation.
    I'm testing transactional processing now.
    Required feature is to put getting request from queue and processing it in web service in one transaction.
    During tests I have noticed that:
    When I throw RuntimeException from my web service method the message doesn't come back to the queue.
    When I try to sessionContext.setRollbackOnly(); I get an error
    javax.ejb.EJBException: EJB Exception: : java.lang.IllegalStateException: [EJB:010158]Illegal attempt to call EJBContext.setRollbackOnly() from an EJB that was not participating in a transaction.
    When I deploy web service I get the following warning:
    <Warning> <EJB> <> <AdminServer> <[STANDBY] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1238752023176> <BEA-010212> <The EJB 'EventNotifierServiceEJB(Application: portal, EJBComponent: EventNotifierService-1.0-SNAPSHOT.jar)' contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: local[publish(package.PackageType)] >
    And putting @TransactionAttribute(TransactionAttributeType.MANDATORY) doesn't change this.
    So It seems that transactions doesn't work by default.
    I turned on XA in my own jms connection factory used by web service but this didn't help.
    Looking in weblogic documentation I have found the following sentences:
    In (http://e-docs.bea.com/wls/docs103/webserv_adv_rpc/jmstransport.html)
    "If you have specified that the Web Service you invoke using JMS transport also runs within the context of a transaction (in other words, the JWS file includes the @weblogic.jws.Transactional annotation), you must use asynchronous request-response when invoking the service. If you do not, a deadlock will occur and the invocation will fail."
    In (http://e-docs.bea.com/wls/docs103/webserv_adv_rpc/asynch.html)
    "The asynchronous request-response feature works only with HTTP; you cannot use it with the HTTPS or JMS transport."
    For me these two sentences are in conflict.
    Currently I'm trying to use just transactional annotation without asynchronous request-response but the risk of deadlocks doesn't sound good for me.
    BTW I have Oneway annotation in my web service method, I'm not sure if this changes something.
    I'll be grateful for any help in resolving this problem.
    Edited by: user10930859 on Apr 3, 2009 3:49 AM

    Hi Karthik-
    You can link the corelation-id..
    Make you third-party application to receive Message-id from JMSRequestQueue and send this message id as correlation-id to JMSResponseQueue. I guess it would work we have tried this as POC.
    Regards,
    Ramesh

  • About error at 'return super.getContent(request,response)'.

    I am new in this area. Thanks for your help.
    I met a problem when I install a portal server. The error always happens at the sentence 'return super.getContent(request,response)'. The system works well in another computer.
    Would you please tell me what probably causes it. The following is error messages:
    06/13/2005 09:56:04:148 AM MDT: Thread[Thread-1081,5,main]
    ERROR: JspRequestDispatcher:
    javax.servlet.ServletException: Problem processing JSP: /DynamicTable.jsp
         at com.sun.portal.providers.jsp.JspRequestDispatcher.getJspResource(JspRequestDispatcher.java:164)
         at com.sun.portal.providers.jsp.JspRequestDispatcher.include(JspRequestDispatcher.java:97)
         at com.sun.portal.providers.jsp.jasper3.jasper.runtime.PageContextImpl.include(PageContextImpl.java:408)
         at jsps.etc._opt._SUNWps._desktop._ssdp_en_US._CSSDPDownloadAudit._html._CSSDPDownloadAudit_jsp._jspService(_CSSDPDownloadAudit_jsp.java:347)
         at com.sun.portal.providers.jsp.jasper3.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sun.portal.providers.jsp.JspServletWrapper.service(JspServletWrapper.java:182)
         at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:695)
         at com.sun.portal.providers.jsp.JSPProvider.processJspFile(JSPProvider.java:674)
         at com.sun.portal.providers.jsp.JSPProvider.getContent(JSPProvider.java:473)
         at ca.ualberta.cssdp.providers.CSSDPDownloadAuditProvider.getContent(CSSDPDownloadAuditProvider.java:213)
         at com.sun.portal.desktop.context.ReusableProviderCaller.run(ReusableProviderCaller.java:145)

    This (http://www.javaworld.com/javaworld/jw-02-2007/images/jw-02-handler6.jpg) shows when the soap handler is executed in the request/response chain.
    What could be the case is that the bytes you are writing to the PrintStream are still buffered, by calling flush any buffered output bytes are written to the underlying output stream.
    Also do not forget to close the PrintStream. http://docs.oracle.com/javase/1.5.0/docs/api/java/io/PrintStream.html#flush()

  • Request Response (database) biztalk Error hadling

    best was to handle exceptions working with Request Response port ? hitting database.
    1) what properties should be set in Scope shape ?
    2) what should be set the Transaction type of Orchestration ? when to use Long Running or None ?
    3)does on ReqResp SP, transmitted set to true works ?
    MBH

    Well, you've already answered your own question, use an Exception Block.
    What exactly do you mean by 'no response'?  There are two realistic possibilities, A) a timeout occurs or B) no result set is returned.
    (A) is an error condition and the exception will be raised back to the Orchestration and caught in an
    Exception Block.
    (B) is a real possibility depending on how the SP is coded.  The operation technically completes correctly, but no result is considered by the caller to be an error condition.  This you would have to test for.
    If the database code silently fails, as you describe, that is not your problem.  The owner of the Oracle app has to fix that since you can't know if an error occurred or not.
    You have to try these things.  It's not possible to offer any more meaningful advice because exactly what you have to do is completely dependent on how your Oracle instance behaves and what the business case considers an 'error'.
    Please, set it up and try different scenarios against Oracle and tell us what happens.  If something doesn't work or doesn't meet expectations, please open another thread for that specific issue.

  • Request dispatch problem

    To all
    The problem is that my request dispatching is not forwarding the request and I haven't got a clue why. I have a upload servlet which is working fine as it parses the request and the forwards you to the same jsp page or the next jsp page according to what values it extracts. However I have set up a bean to display the contentType() of each request which is sent to it from the jsp pages, however nothing is displayed when the request is forwarded from the upload servlet. this is what is happening .....
    public class upload extends HttpServlet {
    public void doPost( HttpServletRequest req, HttpServletResponse res ) throws ServletException, IOException {
    HttpServletRequest request = _req;
    HttpServletResponse response = _res;
    parseMultiForm pMF = new parseMultiForm( _req );
    Hashtable values = new Hashtable();
    String param;
    while ( ( param = pMF.getNextParameter()) != null) {
    String value = pMF.getParameter();
    values.put(param, value);
    if (values.containsKey("submit")) {
    String url = (String) values.get("reload");
    RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/" + url);
    dispatcher.forward(request, response);
    if (values.containsKey("continue")) {
    String url = (String) values.get("next");
    RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/" + url);
    dispatcher.forward(request, response);
    The above servlet forwards the request to a jsp which does the following....
    <jsp:useBean id="info" scope="session" class="InfoBean" />
    <jsp:setProperty name="info" property="request" value="<%= request %>" />
    However infoBean does not receive anything when the request is forwarded from the servlet??
    Can anyone see anything obviously wrong?? is it to do with the JSP asking for the <%= request> and not receiving it because the request dispatcher has altered it in some way?
    Thanks in advance anyone
    Andy.

    I have exactly the same problem. I can�t make the servlet pass the request object to the target jsp.
    Try not changing the request nor the response. Unfortunatelly due to the kind of job i do inside my servlet there's no way i can't touch the request. So if you can make it work with mi advice please let me know.

  • Request response code 503 when try to view failed jobs on report server

    I have application server 11. From enterprise manager I get a list of completed jobs and failed jobs for the report server. When I try to click on failed jobs I get
    Error in request response code 503.
    I am new to weblogic server and I don't know where to look for this problem.

    Mike,
    how do you access Reports from Forms and can you run a stand-alone Reports from the browser URL (using the Reports Services and the Reports Services servlet rwservlet).
    if you can't run a Reports directly then the problem is in teh confoguration itself and you should contact customer support via metalink.oracle.com
    Frank

  • Client Request/Response Context

    I'm new to Weblogic Integration and have a question regarding client response action.
    I've seen an example of a quick workflow where the webpage calls the process
    and gets a response back. In essence the workflow is synchronous.
    Now I want to include a long running process, using Worklists and involving many
    different actors. During the worklist task acceptance I want to get some feedback
    from the user. My questions is what context does the Client Request/Response
    execute in. The example in the docs shows the worklist application. Is this
    absolutely required? How about a client response to a portlet.
    Thanks,
    noah

    One of the Certification mandates logging the remote client IP AND PORT for each log-event.
    I cannot pass these from GUI client because the user may
    be on a private network. This calls for capturing the IP and PORT at GUI server end.
    Capturing remote IP is simple as SOAP library exposes the request object from which the IP can be obtained.
    The dificult part is to capture port. I addressed this problem by introducing a
    new Tomcat Service Engine, CSMServiceEngine. This engine has access to the underneath socket using which
    i obtain the client port and pass it across to SOAP layer as a x-csm-client-port HTTP theader.
    I have a custom SOAP provider, CSMSoapSPI, which obtains the port using the above x-header and the
    client IP from its request object. THese are done only for 'login' task and hence i published a new
    SOAP service: LoginCommand.
    But bcoz of upgradation of tomcat from 4.0 to 5.0.28 the invoke method in the StandardEngine(which was initially extended by class i posted) is made final with JDK 1.5 and i can no longer use the StandardEngine. Hence i tried with the Valve class.But with no luck.
    Hope this answers ur question

  • Expose an orchestration as WCF service with a Request-Response port set to Direct Binding

    Hello , 
      I'm trying to expose an orchestration as a WCF service (while the Request-Response port is set to Direct binding) . Is this possible ? (the issue will be correlating back the response to the synchronous WCF request after the response is posted back
    to the Message Box by the Direct Send logical port).
    I have no problem in exposing the orchestration while I'm setting the Binding port to 'Specify Later' (What I'm trying to do actually is to expose a orchestration using different adapters (like Http and Wcf ) in the same time ).
    Thanks

    Yes, you can publish an orchestration as WCF/Web service which has direct bound request-response port.
    Subscription works based on “EpmRRCorrelationToken”
    and “RouteDirectToTP”. When you enlist the orchestration which
    has the direct bound request-response port (also published as service), its subscription are based on above two context properties and they take care of correction.
    And also the response matches to the request part of the port due to the nature of two-way communication protocol.
    Create an Orchestration with direct-bound request-response port and publish it as service. This will work. Give it a try
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • CDATA section ignored at request-response port

    Hi Friends,
    I am calling a request-response service from BizTalk WCF-Basic Http port.
    The request consists of CDATA section and service behavior is defined to return a response with similar structure.
    <Request>
    <![CDATA[<RequestID>123</RequestID>]]>
    </Request>
    The expected response is -
    <Response>
    <![CDATA[<ResponseID>789</ResponseID> <ServiceID>963</ServiceID>]]>
    </Response>
    I tested the service with SOAP UI and it gives desired results as above.
    But, when same service is invoked through BizTalk WCF-Basic Http port, response received is -
    <Response>
    &lt;ResponseID&gt;789&lt;ResponseID&gt;&lt;ServiceID&gt;963&lt;ServiceID&gt;
    </Response>
    But why BizTalk is behaving like this? Looks like BizTalk is ignoring CDATA section and returning string.
    Is it possible to apply some configuration at port something similar to 
    disable-output-escaping=”yes” , so that port does not convert CDATA to string?
    Hope someone can help!

    So where is the problem in this behavior? The reason the service is expecting the request and response as CDATA elements is because it saves them from having to change the endpoint schema every time they release a new request response.
    When you create the schemas generated by consuming the service promote the "Request" and "Response" elements. Then in the construct shape you can populate these using the promoted elements and assign the xml.OuterXml.
    Similarly while processing the response you can load it into the xml using the XmlDocument.LoadXml(serviceMessage.Response);
    Regards.

  • Clearing Request / Response Objects

    Hi,
    I have a File Upload Screen where I have validated for the File Content Length to be within 3 MB. Now I call the MultiPartRequest Reusable Object provided by Jason Hunter from a Servlet. Now as long as the file (which I am uploading) size is less than 3 MB, the Screen seems to be very fast. The Problem that I face is as follows:
    I am trying to upload a file of 5 MB file size. Since my validation is in the Reusable MultiPartRequest Object, an Exception is thrown out of this Object and caught in the Servlet.
    Scenerio 1:
    Now from the Servlet I was using RequestDispatcher to forward to the Error Page. Since when I forward like this, the same request Object is send back to the Client which increases the response time. For me the Screen crashes due to Browser Time out.
    Scenerio 2:
    Now from the Servlet I tried using response.sendRedirect to the Error Page. Still the response time is more but comparatively less than the Scenerio 1.
    My Question:
    1. Is there a way to clear the contents of the Request and Response Object so that the response time to the client is reduced?
    2. I think what I am asking is not possible. But still taking a chance is not a mistake. Is there a way to create a new Request or Response Object? I believe we (as an application developer) have no control over this as the Application Server will have control over this.
    Any help or tips would be appreciated.
    Thanks and regards,
    Pazhanikanthan. P

    Hi,
    Thanks for your response. I do agree it is not the problem with the Multipart Classes.
    Kindly see the following URL for the differences between RequestDispatcher.forward () and response.sendRedirect ().
    http://www.theserverside.com/discussion/thread.jsp?thread_id=742
    Here they say that "the request and response objects remain the same both from where the forward call was made and the resource which was called." Is this wrong?
    More over I found that MultipartParser doesnt improve the performance very drastically over the MultipartRequestObject ...
    Please find attached the time I have calculated in between the time I forward / redirect in Servlet to the time when the response is painted in the Screen.
    Using Send Redirect Method (in Seconds)
    =======================================
    MultipartParser.java
    170.156
    MultipartRequestObject.java
    172.422
    Using requestDispatcher.forward () (in seconds)
    ==============================================
    MultipartParser.java
    Browser Times out
    MultipartRequestObject.java
    Browser Times out
    Here is my code:
    public void doPost(HttpServletRequest request,HttpServletResponse response)
         throws ServletException, IOException
         HttpSession objSession = request.getSession(true);
         String strFilePath = "D:\\uploads";
         String strFilename = "";
         MultipartRequestObject clsMulti;
         MultipartParser clsMultiParser;
         try
              System.out.println ("Action is :" + request.getParameter ("hdAction"));
              if (request.getParameter ("hdAction") == null)
                   clsMultiParser = new MultipartParser (request, 1*1024*1024);
                   Part objPart = clsMultiParser.readNextPart ();
                   if (objPart != null)
                        FilePart objFilePart = (FilePart) objPart;
                        System.out.println ("The File Name is : " +objFilePart.getFileName ());
                        objFilePart.writeTo (new File (strFilePath + File.separatorChar + objFilePart.getFileName ()));
                   clsMulti = new MultipartRequestObject (request, strFilePath, 1*1024*1024);
                   Enumeration enumFiles=clsMulti.getFileNames();
                   while(enumFiles.hasMoreElements())
                        String strName=(String)enumFiles.nextElement();
                        strFilename = clsMulti.getFilesystemName(strName);
         catch(Exception expGeneral)
              System.out.println ("" + new java.util.Date () + "----" + expGeneral.getMessage ());
              objSession.setAttribute ("MESSAGE", expGeneral.getMessage ());
         try
              System.out.println (1);
              RequestDispatcher dispatcher = this.getServletContext().getRequestDispatcher("/Upload.jsp");
              System.out.println (2);
              java.util.Date dt1 = new java.util.Date ();
              System.out.println (dt1.getTime ());
              dispatcher.forward(request, response);
              System.out.println (3);
              java.util.Date dt1 = new java.util.Date ();
              System.out.println (1);
              System.out.println (dt1.getTime ());
              response.reset ();
              System.out.println (2);
              response.sendRedirect ("Upload.jsp");
              System.out.println (3);
              return;
         catch (Exception e)
              e.printStackTrace ();
    For testing pupose I have commented some part of the code.
    Thanks and regards,
    Pazhanikanthan. P

  • SPML request/response logging

    During the testing stages of our implementation, we would like to capture the contents of the spml request and response to a file. This will assist in debugging problems without having to ask HR to send what they've captured. Any ideas?

    Does anybody have suggestions on how to log SPML request/responses at the server side?
    We have multiple SPML clients, some from 3rd party vendors so we cannot control logging on the client side

  • Sender adapter request response bean not working for calling a webservice

    Hi All,
    In PI 7.31, My scenario :  SOAP sender Asynch-> PI -> HTTP Receiver Sync ->take response to call another webservice  (SOAP)
    I have configured request response bean and response one way bean in the sender adapter to make this work.
    Attached the screenshot of the module config in  the sender soap adapter. The final response from HTTP has to be used to call another webservice (not sender webservice)
    This giving an error "couldn't retrieve binding values for sender to receiver etc etc ----------"
    Has anyone configured response one way bean to call a webservice to submit? If so, please share the configuration details. And let me know if I am doing anything wrong
    thx
    mike

    Hi Michael,
    I think the adapter type is for the receiver channel looking at the documentation SAP Library - SAP Exchange Infrastructure
    Have you checked your receiver channel doesn't belong to a party?
    I havent tried this bridge with the http_aae but looks to be problematic according with Michal comment here http://scn.sap.com/community/pi-and-soa-middleware/blog/2014/01/28/generic-pi-async-sync-bridge-configuration-for-any-adapters#comment-454463
    Regards.

Maybe you are looking for

  • Issue installing Photoshop Camera Raw 6.7

    Hi guys, I having issues installing Photoshop Camera Raw 6.7. I gt this error "Photoshop Camera Raw 6.7 Update Other processes are running which conflict with update installation. Please close them and try again. Error Code: U45M1P19". I restart the

  • Wlsc problem with package name

    I am using wlsc ant task to generate my java code for a web service. Unlike the simplistic examples (HelloWorld and Complex) I have my complex types split into a separate .xsd file instead of putting them directly into the WSDL file. Is there a way t

  • SQL Developer keeps dropping my table cols!!

    Howdy, Really getting to the end of my tether with SQL Developer now, as it likes to drop all my columns (usually leaves one for me which is nice of it) in my tables if I decide to make a change to it. for example, if I where to change a column to be

  • MSSQL2012 active/passive cluster convert to active/active cluster

    Good day. We have 2-node active/passive MSSQL2012 cluster (on Win 2008 R2). One "default" instance. We want convert  to active-active, (multi-instance). As I understand, one SQL instance (existing) will run on 1 cluster node and the second (new) inst

  • Default Domain Controller Policy

    Hello All, We will be starting promotion of Windows Server 2012 R2 Domain Controller in our organisation. For that we are trying to implement the Default Domain Controller Policy for 2012 r2 related. We already have Account Policies, Password policy,