XI 3.1 Webservices API: Read time out during getDocumentInformation()

Hi,
my client is moving vom BO 6.5 to BO XI 3.1. The client uses BO to create mass reports for indivual subscribers in a batch mode fashion. We are currently evaluating the Webservices API, dealing with Desktop Intelligence reports.
I have implemented a load test prototype using the Webservices API with the help of the examples found here.
Retrieving a single report works fine, but when I try to put some load on the server and request reports with several parallel threads, I get the "Read timeout error" when calling getDocumentInformation(repID, null, actions, null, boRetrieveData). The actions array just contains the FillPrompts instance.
2008-12-05 11:05:07,448 INFO  (test-5    ) [HTTPSender                    ]   Unable to sendViaPost to url[http://bojv01:8080/dswsbobje/services/ReportEngine]
java.net.SocketTimeoutException: Read timed out
     at java.net.SocketInputStream.socketRead0(Native Method)
     at java.net.SocketInputStream.read(SocketInputStream.java:129)
     at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
     at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
     at org.apache.commons.httpclient.HttpParser.readRawLine(HttpParser.java:77)
     at org.apache.commons.httpclient.HttpParser.readLine(HttpParser.java:105)
     at org.apache.commons.httpclient.HttpConnection.readLine(HttpConnection.java:1115)
     at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.readLine(MultiThreadedHttpConnectionManager.java:1373)
     at org.apache.commons.httpclient.HttpMethodBase.readStatusLine(HttpMethodBase.java:1832)
     at org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1590)
     at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:995)
     at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:397)
     at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:170)
     at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:396)
     at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
     at org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod(AbstractHTTPSender.java:520)
     at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:191)
     at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:77)
     at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:327)
     at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:206)
     at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:396)
     at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:374)
     at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:211)
     at org.apache.axis2.client.OperationClient.execute(OperationClient.java:163)
     at com.businessobjects.dsws.reportengine.ReportEngine.getDocumentInformation(Unknown Source)
BTW, the threads use different logins and in consequence different connections/sessions.
The timeout occurs after 30secs, so simple reports with no prompts are created without error. Increasing the timeout on the connection as suggested in other postings did not help.
I think the issue is related to Axis2. I don't know how to set the timeout on the Axis client via the BO API. Trying to recreate the client API from the WSDL did not work. Is there any example how to do this correctly? Having the source of the Axis client, one would have the chance to set the timeout on the client programmatically ...
Any help would be greatly appreciated,
con

I found a workaround for the issue by patching and compiling the Axis2 kernel library. You need to download it form Apache, install Maven 2.0.7, set the default timeout in .../client/Options.java to a value that suits your needs (for me: 20min), and compile the whole thing using mvn clean install.
But this is obviously not the solution one wants. So, is there anybody with a REAL answer to the problem?
Regards,
con

Similar Messages

  • About Sun Fire E25K I2c read time out error

    Hi,
    Can anybody give me a breif explaination about the following errors
    which capatured by Sun Fire E25K System Controller:
    Nov 7 08:16:36 2006 E25K-ORADR-sc0 hwad[11914]: [1123
    20621355893934396 ERR I2cComm.cc 410] I2c read time out - bus: 10,
    address: 21
    Nov 7 08:16:36 2006 E25K-ORADR-sc0 hwad[11914]: [1128
    20621356152372741 ERR SelectPll.cc 292] Reading bus failed in address
    0, ecode=1123
    Nov 7 18:45:40 2006 E25K-ORADR-sc0 hwad[11914]: [1123
    20659099583593289 ERR I2cComm.cc 410] I2c read time out - bus: 10,
    address: 21
    Nov 7 18:45:40 2006 E25K-ORADR-sc0 hwad[11914]: [1128
    20659099584735868 ERR SelectPll.cc 138] Reading bus failed in address
    0, ecode=1123
    Nov 8 02:15:01 2006 E25K-ORADR-sc0 hwad[11914]: [1124
    20686060070434628 ERR I2cComm.cc 1095] I2c write time out - bus: 10,
    address: 21
    Nov 8 02:15:01 2006 E25K-ORADR-sc0 hwad[11914]: [1129
    20686060083304777 ERR SelectPll.cc 181] Writing bus failed in address
    0, ecode=1124
    What is the reason to cause "I2c read time out" ?
    TIA.
    Rgds,
    Simon

    Hello Simon,
    these forums are user-to-user. The Fire E25K is definetely beyond the scope of these forums (too expensive, too critical for your business, too complex).
    This system should be under Spectrum coverage (Platinum/Gold).
    Open a service case !
    Let's if you get any response to your posting on the Sun Managers mailing list.
    Michael
    Message was edited by:
    MAALATFT

  • ServletInputStream.read() causes read time out error

    this part of the jsp page
    <jsp:useBean id="testServlet" scope="page" class="testServlet" />
    <%
    testServlet.doUpload(request);
    %>
    this is part of the servlet
    public void doUpload(HttpServletRequest request) throws IOException
    BufferedInputStream br = new BufferedInputStream(request.getInputStream());
    /* error here! */
    int i = br.read();
    it will produce an read time out error when i reach the error line
    btw..... i am using tomcat as server and parsing the form :
    <form name="form1" enctype="multipart/form-data" method="get" action="converter.jsp">
    <input type="file" name="filename">
    </form>
    thnx in advance!

    I'd think for the request to have an input stream, the request method on the form would need to be post, not get. Other than that, I don't know why you've created a Servlet - seems like you could have just created a simple class that takes a HttpServletRequest object (doesn't have to be a servlet). Your jsp page is the real servlet that's being called.

  • LMS 4.2.2 times out during inventory collection on VSS

    A customer of mine have 2 VSS systems for wich IC times out during collection when trying to read from flash on them. From the ICserver.log
    [ Thu Dec 13  16:45:19 CET 2012 ],WARN ,[Thread-20],com.cisco.nm.rmeng.util.logger.XDILogger,67,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.FlashAGI_CISCO_FLASH_Mib,g$eval,70,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS:FlashAGI_CISCO_FLASH_Mib:g$eval:populating FlashAG attributes failed via CFM, trying OCFM...
    [ Thu Dec 13  16:45:19 CET 2012 ],WARN ,[Thread-20],com.cisco.nm.rmeng.util.logger.XDILogger,67,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.FlashAGI_CISCO_FLASH_Mib,g$eval,90,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS:FlashAGI_CISCO_FLASH_Mib:g$eval:populating FlashAG attributes failed . Hence aborting fallback.:: com.cisco.nm.xms.xdi.ags.system.CollectionFailed: com.cisco.nm.lib.snmp.futureapi.SnmpReqTimeoutException: SnmpRequestTimeout on 10.2.0.1 while performing SnmpWalk(*) at index = -1
    [ Thu Dec 13  16:45:19 CET 2012 ],ERROR,[Thread-20],com.cisco.nm.rmeng.util.logger.XDILogger,57,com.cisco.nm.xms.xdi.SdiEngine,initAndEvalAGIs,385,com.cisco.nm.lib.snmp.futureapi.SnmpReqTimeoutException: SnmpRequestTimeout on 10.2.0.1 while performing SnmpWalk(*) at index = -1
    [ Thu Dec 13  16:45:54 CET 2012 ],ERROR,[Thread-20],com.cisco.nm.rmeng.util.logger.XDILogger,57,com.cisco.nm.xms.xdi.SdiEngine,initAndEvalAGIs,385,com.cisco.nm.xms.xdi.ags.system.CollectionFailed: com.cisco.nm.lib.snmp.futureapi.SnmpReqTimeoutException: SnmpRequestTimeout on 10.2.0.1 while performing SnmpWalk(*) at index = -1
    I have tried raising the "Transport Timeout" value in " Admin > Collection Settings > Inventory > Edit the Inventory/Config Timeout and Retry Settings" to 480000 msec but no difference. Am I tuning the wrong timeout value or is there a known bug for this?

    Sorry for posting. I found I was changing the wrong timeout value.

  • G4 times out during downloads

    My G4 times out during Software updates. I only have dial-up and computer times out after about 2 hrs. I then have to start all over again to try to download. Is there a download that will let me resume where it left off. Ex. a security update of 80 mb. times out around 50 mb. Please help if possible , I need these updates.

    There are a few browsers out there which can resume the failed download
    and not have to start over from the beginning; of course, since I've been
    lucky lately, and my standard Firefox 3.0.16, Safari 4.0.2, Opera, & Camino
    appear to work OK and not time-out, I am not sure if these offer that feature.
    Most can pause a download and cancel it, too; before it is done.
    The Safari browser (not sure if the feature is an option or plugin) is said to
    be able to support the resume interrupted downloads function. The part of
    the browser known as the 'download manager' in the download window is
    often part of the key to resuming downloads if they are interrupted. See an
    example of this as shown here. It should be familiar:
    http://www.askdavetaylor.com/howto_resume_interrupted_download_apple_safarifirefox.html
    Also, Cyberduck, a freeware browser for several platforms, offers this
    function as part of its standard fare. Cyberduck: http://cyberduck.ch/
    Under its Advanced Transfers feature, the promo write up says it can
    resume both interrupted download and uploads. It is a 12MB D/L file.
    Perhaps there is a dialup setting you can use to extend the time
    sessions, so it won't time-out as fast.
    Good luck & happy computing!

  • HT1386 iPhone times out during iCloud restoration

    My iPhone times out during syncing with iCloud

    Hey PLabrozzi,
    Has iTunes displayed an error message when syncing the iPhone? If so reply with the exact error.
    Make sure the iPhone is directly connected to the computer and not plugged into the monitor, keyboard, or a hub.
    This article has some general tips for a similar issue that may resolve this issue.
    http://docs.info.apple.com/article.html?artnum=301267
    Jason

  • ERROR while saving the runtime systems(read time out exception)

    Hi e xperts
    I am configuring NWDI and assigned asll the permissions and roles to the CMS user.I created Domain,in landscape configurater
    created track and saved.
    while saving the rumtime systems the error thrown is
    com.sap.cms.util.exception.conf.CMSCCBSCommunicationException: CBS (URL http://dtlepdev:54400/tc.CBS.Appl/archiveapi2/) communication exception: Read timed out (Service call exception; nested exception is:
    java.net.SocketTimeoutException: Read timed out)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.removeBuildspace(CBSConfCommunicator.java:382)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.deleteCreateBuildspace(CBSConfCommunicator.java:338)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.editBuildspace(CBSConfCommunicator.java:277)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.createBuildspace(CBSConfCommunicator.java:168)
    at com.sap.cms.pcs.conf.core.services.SystemManagerObject.saveSystem(SystemManagerObject.java:261)
    at com.sap.cms.pcs.conf.core.plugin.DefaultTrack.newTrack(DefaultTrack.java:292)
    at com.sap.cms.pcs.conf.core.TrackManager.editTrack(TrackManager.java:208)
    at com.sap.cms.pcs.conf.manager.CmsConfManager.editTrackConfiguration(CmsConfManager.java:1002)
    at com.sap.cms.pcs.conf.manager.proxy.CmsConfProxyBean.editTrackConfiguration(CmsConfProxyBean.java:489)
    at com.sap.cms.pcs.conf.manager.proxy.LocalCmsConfProxyLocalObjectImpl0_0.editTrackConfigurationand also ..
    Unable to instantiate a Build Space administrator!
    Build Space "DTL_ETRACK_C" [bsID: 27, version: 0] [in-queue: on (privileged), out-queue: "on", processing: off]
    <null>
    [EXCEPTION]
    Buildspace DTL_ETRACK_C does not own the workspace ws/ETRACK/dtl.com_DEFAULTIME/cons/inactive/ .  It is currently not owned by any other buildspace
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.checkWorkspace(_BuildSpaceValidator.java:120)
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.validateWSs(_BuildSpaceValidator.java:74)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.validate(BSAdmin.java:192)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.updateState(BSAdmin.java:260)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.determineChanges(BSAdminOrc.java:439)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.validateBuildSpaceData(BSAdminOrc.java:219)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.act(BSAdminOrc.java:341)
    at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:139)
    at java.lang.Thread.run(Thread.java:534
    In cbs i checked the parametrs they are open and on..
    please suggest me on this ASAP..since 2 days i have been struggling and searched in forums..no perfect solution
    help me out
    perfect soln is immediately awarded...
    I
    THanks
    Mayu

    Hi Mayu,
    here apparently the CMS cannot communicate to CBS properly and then when CMS tries to talk to CBS using a webservice, it times out due to various reasons, see below.
    Strange, I always had this error when the CMS was on a different release like CBS and this caused the communication problem.
    Don't you have an entry in your cms log like this?
    com.sap.cms.util.exception.CMSUnexpectedException                          
    at com.sap.cms.pcs.conf.manager.CmsConfManager.newTrackConfiguration(CmsConfManager.java:666)                                                    
    Caused by: java.lang.IncompatibleClassChangeError
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.openConnection(CBSConfCommunicator.java:84)                                             
    Please provide me the version of the DI_CMS, DI_CBS (and DI_DTR for the sake of completeness).
    You can find this info on the ComponentInfo page.
    On 640/700 this is http://<host>:<port>/sap/monitoring/ComponentInfo
    as of 710 you find this on the "Components" tab of http://<host>:<port>/nwa/sysinfo
    I also think that this is not due to the runtime systems. I guess you have the same problem if you try to create the track without runtime systems, right?
    (The "Unable to instantiate a Build Space administrator!" is not necessarily an error, see the note:
    #1175019 - Unable to instantiate a Build Space administrator!)
    Thank you!
    Best Regards,
    Ervin

  • Read Time Out Exception while generating PDF Document

    Hi,
    We are working on Netweaver 04,Patch SP 16 and trying to generate a Non Interactive PDF on ADS Version SP 14 for printing purpose (Eg.Invoice). This extracts data using EJBs. We used Interactive Form UI element which has various sub elements like static image, etc.
    We are using Acrobat Reader 7.0 for generating PDF.
    The form fetches the records and prints perfectly in the Development System, While creates a 'java.net.SocketTimeoutException: Read timed
    out ' Exception in Production.
    Time Out period for web service container is set to 180 sec in both Dev and Prod.
    Default trace in the production is continously throwing following  error."com.adobe.document.XMLFormService#com.adobe/AdobeDocumentServices#com.adobe.document.XMLFormService
    Thread[XMLForm.exe Error Reader,5,SAPEngine_Application_Thread[impl:3]
    _Group]##0#0#Error##Plain###Service XMLFormService: Native process
    (PID=0) /usr/sap/NWP/JC00/j2ee/os_libs/adssap/XMLFormService/bin/XMLForm.exe terminated abnormally with error code 127# "
    We are running following services in both Prod and Dev for using ADS.
    1. IIOP Provider
    2. Data Manager Service
    3. Data Font Manager Service
    4. XML Module
    5. Document Services Configuration
    6. Document Services License Support Service
    Could some one please  let us know what could be the problem?
    Thanks And Regards,
    Apeksha.

    Hi Markus,
    Thanks for the prompt reply. However, SAP notes 867502
    and 811342 speak about PDF manipulation services, which we are not using in our application. We need to create non interactive form which simply reads the data from the DB and displays it to the users for printing.
    The other 2 notes-826419 and  849851 talk about SP 10,11 and 12, while we are using SP14 for Adobe Services and SP 16 for Netweaver Java Stack.
    The application works perfectly on the Development Server, but not on Production Server. Though all the configurations are same on both the servers, still can you suggest what all things need to be considered ?
    Thanks and Regards,
    Apeksha

  • BI Java SDK in BI 7.0: Read Time out when executing MDX Statements

    Hi all,
    we´ve implemented some functions with the BI JAVA SDK which gets informations out of our BI via the SOAP / XMLA  Service. For some Queries this is not working and the following exception occurs on Java Side:
    --- snip ---     
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
         java.net.SocketTimeoutException: Read timed out
    --- snip ---
    The same query works on our Test Enviroment (which has longer execution times) so the difference has to be in some parameters set on the BI System. So the question is:
    Which parameters affect the queries sent via the SOAP / XMLA Service ?
    Any clues ?
    Thank for your help.
    Marco

    Hi Shan,
    that was also my first idea - but it didn´t help. It also does not explain, why the same codings works against the testsystem. Thats why i think the problem is related to some type of (profile-?) parameters on the BI Server itself. But its just a guess ....
    Marco

  • ERM 5.3 Error - READ TIME OUT

    Hello GRC Community,
    <br><br>
    I'm running into an issue in GRC 5.3 SP10 for the ERM Module.  When we're building a role and get to the risk analysis step, the analysis runs (at the transaction or object level) for a very long time before it kicks back the following error:
    <br><br>
    <b>Risk analysis failed; Service call exception; nested exception is: java.net.SocketTimeoutException: Read timed out</b>
    <br><br>
    Here are the system Logs, can someone offer any suggestions as to why we're getting this error?
    <br><br>
    2010-04-05 15:48:12,548 [SAPEngine_Application_Thread[impl:3]_11] ERROR com.virsa.re.role.actions.RiskAnalysisAction
    java.lang.Throwable: Service call exception; nested exception is:
         java.net.SocketTimeoutException: Read timed out<br>
         at com.virsa.re.bo.impl.RiskAnalysisBO.performTranLvlRiskAnalysis(RiskAnalysisBO.java:584)<br>
         at com.virsa.re.bo.impl.RiskAnalysisBO.performRiskAnalysisOnSystemFromRiskAnalysisPage<br><br>(RiskAnalysisBO.java:167)<br>
         at com.virsa.re.role.actions.RiskAnalysisAction.performAndShowRiskAnalysis(RiskAnalysisAction.java:1657)<br>
         at com.virsa.re.role.actions.RiskAnalysisAction.execute(RiskAnalysisAction.java:105)<br>
         at com.virsa.framework.NavigationEngine.execute(NavigationEngine.java:273)<br>
         at com.virsa.framework.servlet.VFrameworkServlet.service(VFrameworkServlet.java:230)<br>
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)<br>
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:117)<br>
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:62)<br>
         at com.virsa.comp.history.filter.HistoryFilter.doFilter(HistoryFilter.java:43)<br>
         at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:58)<br>
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:384)<br>
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)<br>
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)<br>
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)<br>
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)<br>
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)<br>
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)<br>
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)<br>
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process<br><br>(ApplicationSessionMessageListener.java:33)<br>
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)<br>
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)<br>
         at java.security.AccessController.doPrivileged(Native Method)<br>
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)<br>
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)<br>
    Edited by: suggsda on Apr 5, 2010 10:28 PM

    Yes, my connectors were established per the configuration guide. The issue with this error was a result of the new connector being established in both ERM & RAR. I neglected to run the proper background jobs in RAR for this connector, so when ERM tried to leverage RAR for the risk analysis the results would time out because there was no data on the RAR side for it to return. Unfortunately this was an oversite on my part as we were migrating from sandbox to development.

  • Read Time out Exception - Pls Help

    Hi all,
    I am using Axis Web Services in order to connect to a .Net application hosted on IIS Server. Ours is a Struts application on J2SE technologies and Oracle as database. When I try to invoke the API of the .Net Application, it works fine and logs me in. But through application , it isnt able to create a new session. I have attached the trace log below,
    Thanks in advance for your help.
    In the Axis fault exception of catch method.... not able to invoke call to sched session,
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.apache.commons.httpclient.HttpRecoverableException: java.net.SocketTimeo
    utException: Read timed out
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace: org.apache.commons.httpclient.HttpRecover
    ableException: java.net.SocketTimeoutException: Read timed out
    at org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1
    933)
    at org.apache.commons.httpclient.HttpMethodBase.processRequest(HttpMethodBase.java
    :2627)
    at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1061)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:643)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:497)
    at org.apache.axis.transport.http.CommonsHTTPSender.invoke(CommonsHTTPSender.java:
    173)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
    at org.apache.axis.client.Call.invoke(Call.java:2553)
    at org.prss.cd.scheduall.SchedSession.invokeCall(SchedSession.java:229)
    at org.prss.cd.scheduall.SchedSession.login(SchedSession.java:124)
    at org.prss.cd.scheduall.SchedSession.init(SchedSession.java:101)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.createSession(SchedSessionBroke
    r.java:478)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.addSession(SchedSessionBroker.j
    ava:462)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.checkOut(SchedSessionBroker.jav
    a:372)
    at org.prss.cd.scheduall.SchedSessionBroker.executeCall(SchedSessionBroker.java:11
    5)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:651)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:663)
    at org.prss.cd.ws.scheduall.ScheduAllClient.create(ScheduAllClient.java:1258)
    at org.prss.cd.services.program.ProgramManager.addProgram(ProgramManager.java:965)
    at org.prss.cd.services.program.ProgramServicesBean.addProgram(ProgramServicesBean
    .java:119)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl.addProgram(ProgramSe
    rvices_jupje8_EOImpl.java:417)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl_CBV.addProgram(Unkno
    wn Source)
    at cd.ManageProgram.Program.ProgramController.updateProgram(ProgramController.jpf:
    1146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja
    va:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.jav
    a:1510)
    at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController
    .java:1445)
    at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:7
    76)
    at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowControlle
    r.java:211)
    at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:606)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor
    .java:484)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFl
    owRequestProcessor.java:1468)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProc
    essor.java:670)
    at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterAction
    Servlet.java:527)
    at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.
    java:152)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1694)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1714)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(
    ScopedContentCommonSupport.java:561)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionI
    nternal(ScopedContentCommonSupport.java:121)
    at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowSt
    ubImpl.java:98)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:149)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:108)
    at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiC
    ontent.java:223)
    at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:298)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:127)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:106)
    at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:321)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:184)
    at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:767)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:138)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletSt
    ubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:41
    9)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebA
    ppServletContext.java:6724)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.j
    ava:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletConte
    xt.java:3764)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:26
    44)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    org.apache.commons.httpclient.HttpRecoverableException: java.net.SocketTimeoutException: R
    ead timed out
    at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
    at org.apache.axis.transport.http.CommonsHTTPSender.invoke(CommonsHTTPSender.java:
    261)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2564)
    at org.apache.axis.client.Call.invoke(Call.java:2553)
    at org.prss.cd.scheduall.SchedSession.invokeCall(SchedSession.java:229)
    at org.prss.cd.scheduall.SchedSession.login(SchedSession.java:124)
    at org.prss.cd.scheduall.SchedSession.init(SchedSession.java:101)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.createSession(SchedSessionBroke
    r.java:478)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.addSession(SchedSessionBroker.j
    ava:462)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.checkOut(SchedSessionBroker.jav
    a:372)
    at org.prss.cd.scheduall.SchedSessionBroker.executeCall(SchedSessionBroker.java:11
    5)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:651)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:663)
    at org.prss.cd.ws.scheduall.ScheduAllClient.create(ScheduAllClient.java:1258)
    at org.prss.cd.services.program.ProgramManager.addProgram(ProgramManager.java:965)
    at org.prss.cd.services.program.ProgramServicesBean.addProgram(ProgramServicesBean
    .java:119)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl.addProgram(ProgramSe
    rvices_jupje8_EOImpl.java:417)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl_CBV.addProgram(Unkno
    wn Source)
    at cd.ManageProgram.Program.ProgramController.updateProgram(ProgramController.jpf:
    1146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja
    va:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.jav
    a:1510)
    at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController
    .java:1445)
    at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:7
    76)
    at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowControlle
    r.java:211)
    at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:606)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor
    .java:484)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFl
    owRequestProcessor.java:1468)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProc
    essor.java:670)
    at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterAction
    Servlet.java:527)
    at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.
    java:152)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1694)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1714)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(
    ScopedContentCommonSupport.java:561)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionI
    nternal(ScopedContentCommonSupport.java:121)
    at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowSt
    ubImpl.java:98)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:149)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:108)
    at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiC
    ontent.java:223)
    at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:298)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:127)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:106)
    at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:321)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:184)
    at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:767)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:138)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletSt
    ubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:41
    9)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebA
    ppServletContext.java:6724)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.j
    ava:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletConte
    xt.java:3764)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:26
    44)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: org.apache.commons.httpclient.HttpRecoverableException: java.net.SocketTimeoutE
    xception: Read timed out
    at org.apache.commons.httpclient.HttpMethodBase.readResponse(HttpMethodBase.java:1
    933)
    at org.apache.commons.httpclient.HttpMethodBase.processRequest(HttpMethodBase.java
    :2627)
    at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1061)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:643)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:497)
    at org.apache.axis.transport.http.CommonsHTTPSender.invoke(CommonsHTTPSender.java:
    173)
    ... 91 more
    org.prss.cd.common.exception.SystemException: org.apache.commons.httpclient.HttpRecoverabl
    eException: java.net.SocketTimeoutException: Read timed out
    at org.prss.cd.scheduall.SchedSession.invokeCall(SchedSession.java:241)
    at org.prss.cd.scheduall.SchedSession.login(SchedSession.java:124)
    at org.prss.cd.scheduall.SchedSession.init(SchedSession.java:101)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.createSession(SchedSessionBroke
    r.java:478)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.addSession(SchedSessionBroker.j
    ava:462)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.checkOut(SchedSessionBroker.jav
    a:372)
    at org.prss.cd.scheduall.SchedSessionBroker.executeCall(SchedSessionBroker.java:11
    5)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:651)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:663)
    at org.prss.cd.ws.scheduall.ScheduAllClient.create(ScheduAllClient.java:1258)
    at org.prss.cd.services.program.ProgramManager.addProgram(ProgramManager.java:965)
    at org.prss.cd.services.program.ProgramServicesBean.addProgram(ProgramServicesBean
    .java:119)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl.addProgram(ProgramSe
    rvices_jupje8_EOImpl.java:417)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl_CBV.addProgram(Unkno
    wn Source)
    at cd.ManageProgram.Program.ProgramController.updateProgram(ProgramController.jpf:
    1146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja
    va:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.jav
    a:1510)
    at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController
    .java:1445)
    at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:7
    76)
    at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowControlle
    r.java:211)
    at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:606)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor
    .java:484)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFl
    owRequestProcessor.java:1468)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProc
    essor.java:670)
    at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterAction
    Servlet.java:527)
    at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.
    java:152)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1694)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1714)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(
    ScopedContentCommonSupport.java:561)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionI
    nternal(ScopedContentCommonSupport.java:121)
    at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowSt
    ubImpl.java:98)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:149)
    at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiCo
    ntent.java:108)
    at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiC
    ontent.java:223)
    at com.bea.netuix.nf.ControlLifecycle$3.visit(ControlLifecycle.java:171)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:298)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:308)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:127)
    at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:106)
    at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:173)
    at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:137)
    at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:321)
    at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:184)
    at com.bea.netuix.servlets.manager.PortalServlet.doPost(PortalServlet.java:767)
    at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:138)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletSt
    ubImpl.java:1006)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:41
    9)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebA
    ppServletContext.java:6724)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.j
    ava:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletConte
    xt.java:3764)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:26
    44)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    Unable to initialize session, set is not added to the pool
    org.prss.cd.ws.scheduall.exception.DataSynchException: Unable to initialize session, sessi
    on not added to pool.
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.addSession(SchedSessionBroker.j
    ava:467)
    at org.prss.cd.scheduall.SchedSessionBroker$SAPool.checkOut(SchedSessionBroker.jav
    a:372)
    at org.prss.cd.scheduall.SchedSessionBroker.executeCall(SchedSessionBroker.java:11
    5)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:651)
    at org.prss.cd.ws.scheduall.ScheduAllClient.executeCall(ScheduAllClient.java:663)
    at org.prss.cd.ws.scheduall.ScheduAllClient.create(ScheduAllClient.java:1258)
    at org.prss.cd.services.program.ProgramManager.addProgram(ProgramManager.java:965)
    at org.prss.cd.services.program.ProgramServicesBean.addProgram(ProgramServicesBean
    .java:119)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl.addProgram(ProgramSe
    rvices_jupje8_EOImpl.java:417)
    at org.prss.cd.services.program.ProgramServices_jupje8_EOImpl_CBV.addProgram(Unkno
    wn Source)
    at cd.ManageProgram.Program.ProgramController.updateProgram(ProgramController.jpf:
    1146)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.ja
    va:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.jav
    a:1510)
    at com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowController
    .java:1445)
    at com.bea.wlw.netui.pageflow.FlowController.internalExecute(FlowController.java:7
    76)
    at com.bea.wlw.netui.pageflow.PageFlowController.internalExecute(PageFlowControlle
    r.java:211)
    at com.bea.wlw.netui.pageflow.FlowController.execute(FlowController.java:606)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor
    .java:484)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFl
    owRequestProcessor.java:1468)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at com.bea.wlw.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProc
    essor.java:670)
    at com.bea.wlw.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterAction
    Servlet.java:527)
    at com.bea.wlw.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.
    java:152)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1694)
    at com.bea.wlw.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1714)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(
    ScopedContentCommonSupport.java:561)
    at com.bea.portlet.adapter.scopedcontent.ScopedContentCommo

    Hi Markus,
    Thanks for the prompt reply. However, SAP notes 867502
    and 811342 speak about PDF manipulation services, which we are not using in our application. We need to create non interactive form which simply reads the data from the DB and displays it to the users for printing.
    The other 2 notes-826419 and  849851 talk about SP 10,11 and 12, while we are using SP14 for Adobe Services and SP 16 for Netweaver Java Stack.
    The application works perfectly on the Development Server, but not on Production Server. Though all the configurations are same on both the servers, still can you suggest what all things need to be considered ?
    Thanks and Regards,
    Apeksha

  • Jaxrpc client  (how to set connection and read time out)

    I have a jaxrpc client using a web service. how to set a connection or a readtime out on the client side so that I can terminatate the service if it does not respond on some time.

    SteveHibox wrote:
    When we tried to send messages to [email protected] ,the debug log on MTA shows that if the first mail server(123.1.1.1) failed , the MTA tried to connect the second server(123.1.1.2) automatically. And it took about 3 minutes until the connection to the first server timed out.
    The OS level timeout (tcp_ip_abort_cinterval on Solaris) is applicable to this situation. It is set to "180000" (3 minutes) by default e.g.
    bash-3.00# ndd -get /dev/tcp tcp_ip_abort_cinterval
    180000
    Is there any way to shorten the default time out ?( I mean to connect the second server faster if the first one failed.)Try changing the OS level parameter.
    If there is only a particular IP address causing the problem, you may want to make use the IP_ACCESS mapping table and the $I flag to skip over this IP address:
    http://docs.sun.com/app/docs/doc/819-4428/gekyh?a=view
    Regards,
    Shane.

  • Servlet Reader time out - Safari specific

    I have a jsp that allows users to upload files via a secure form and the standard html <input type=�file� � > tag.
    For complex reasons I need to get the contents of the HttpServletRequest into a character array. Basically my code looks like this:
    BufferedReader reader = request.getReader();
    char[] ba = (char[]) Array.newInstance(char.class, MAX_FILE_SIZE);
    int total = 0;
    int charsRead =0;
    while ((charsRead = reader.read(ba, total, 1024)) > -1)
              total += charsRead;
         }When the request is submitted by a Safari browser, approximately 70% of the time, the very first reader.read does not return a result. After about 2 minutes, I get a SocketTimeoutException. On the client side, Safari shows a �loading �.� Message and after 5 minutes reverts to a blank screen � unsurprisingly since the server never serves up a response.
    By way of comparison, when the transaction is successful, the process takes less than 1 second.
    java.net.SocketTimeoutException: Read timed out
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java(Compiled Code))
         at com.ibm.ws.io.Stream.read(Stream.java(Compiled Code))
         at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
         at com.ibm.ws.http.ContentLengthInputStream.read(ContentLengthInputStream.java(Compiled Code))
         at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
         at com.ibm.ws.webcontainer.http.HttpConnection.read(HttpConnection.java:342)
         at com.ibm.ws.webcontainer.srp.SRPConnection.read(SRPConnection.java:200)
         at com.ibm.ws.webcontainer.srt.SRTInputStream.read(SRTInputStream.java:80)
         at com.ibm.ws.webcontainer.srt.http.HttpInputStream.read(HttpInputStream.java:312)
         at java.io.InputStream.read(InputStream.java(Compiled Code))
         at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java(Compiled Code))
         at sun.nio.cs.StreamDecoder.read(StreamDecoder.java(Compiled Code))
         at java.io.InputStreamReader.read(InputStreamReader.java(Compiled Code))
         at java.io.BufferedReader.fill(BufferedReader.java(Compiled Code))
         at java.io.BufferedReader.read1(BufferedReader.java(Compiled Code))
         at java.io.BufferedReader.read(BufferedReader.java(Compiled Code))
    �This problem occurs regardless of file size and even if Safari is told to report itself as firefox. This problem has not once occurred with any of IE 5,6 or 7 or Firefox 1.* and 2.*
    I have not been able to test this with Safari 3 Beta for Mac or Windows.
    Environment:
    Client is Mac OS-X 10.4.10 with Safari: 2.0.4
    Server is Websphere 5.1
    Can anyone suggest a solution to this problem?

    As I said, it depends on what a request looks like. You have to know.
    whether the stream is emptyThat's not the same thing as getting the end of the request. Bits of the request can be arbitrary delayed for all sorts of reasons.
    You have to parse the request. Or send it after a length word. Or use a self-describing protocol like serialization, or writeUTF(), or XML,...

  • Socket read time out

    Hi,
    A java class I use is connecting to another system via socket.
    This always works fine when using Java 1.3. However my database installation forces me to use Java 1.2.1 where the same code fails.
    Does anybody know of a workaround to this problem?
    I use Solaris.
    When using Java 1.2.1 I get
    Read timed out
    java.io.InterruptedIOException: Read timed out
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.socketRead(Compiled Code)
    at java.net.SocketInputStream.read(Compiled Code)
    at java.net.SocketInputStream.read(Compiled Code)
    at java.io.InputStreamReader.fill(Compiled Code)
    at java.io.InputStreamReader.read(Compiled Code)
    at java.io.InputStreamReader.read(Compiled Code)
    at java.io.StreamTokenizer.read(Compiled Code)
    at java.io.StreamTokenizer.nextToken(Compiled Code)
    at com.posten.autent.AutentClient.receive(Compiled Code)
    at com.posten.autent.AutentClient.connect(AutentClient.java:265)
    Here is the code
    // Attempt to connect to server.
    try {
    socket = new Socket( host, port );
    in = new InputStreamReader( socket.getInputStream() ) ;
    input = new StreamTokenizer( in );
    output = new PrintStream( socket.getOutputStream() );
    input.resetSyntax();
    input.wordChars( '\u0021', '\uffff' );
    input.whitespaceChars( '\u0010', '\u0020' );
    input.whitespaceChars( '=', '=' );
    input.quoteChar( 39 );
    socket.setSoTimeout( timeout );
    catch( Exception e ) { ...
    The timeout is 10000 (10 seconds) which is far much more than necessary.
    Regards,
    Erika Biesse

    Well now, I've found a way around the problem myself.
    The java bug is Bug Id 4150737 and it was corrected in Java 1.2.2.
    The reason why I must stick to java 1.2.1 is that I call the java code from stored procedures in Oracle 8.1.7, which is JDK 1.2.1 compliant only. (If you the other way around call the OracleDB from java, you can use any java version.)
    Here is the WO:
    Before the very first input.nextToken I send an empty command, an extra
    newline.
    After each 'real' command I send, I call input.nextoken until TT_EOF or TT_EOL
    because the other system answers 'Error' on the empty command.
    Then I send another empty command, and then input.nextoken can read the answer
    of the 'real' command.
    Ugly, but it works!

  • WebLogic Server Times  OUT during DEBUG mode startup

    Hi,
    I am having a issue where my WebLogic Server 10.3 times out when I try to run it in debug mode in my workshop. Below is the error I get.
    "Timeout waiting for Oracle WebLogic Server v10.3 at localhost to start. Server did not start after 480s. "
    Do anyone have any idea why this is happening? I have reinstalled workshop but still same error.
    Thanks

    I have also seen this error when the debug mode does not start.
    starting weblogic with Java version:
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    ERROR: transport error 202: bind failed: Address already in use
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:690]
    Starting WLS with line:
    C:\bea103\JDK160~1\bin\java -client -Debug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms1200m -Xmx1200m -XX:CompileThreshold=8000 -XX:PermSize=192m -XX:MaxPermSize=192m -Xverify:none -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole... -Dplatform.home=C:\bea103\WLSERV~1.3 -Dwls.home=C:\bea103\WLSERV~1.3\server -Dweblogic.home=C:\bea103\WLSERV~1.3\server -Dweblogic.wsee.bind.suppressDeployErrorMessage=true -Dweblogic.wsee.skip.async.response=true -Dweblogic.management.discover=true -Dweblogic.security.SSL.ignoreHostnameVerify=false -Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -DKS_URL=rmi://10.87.40.196:1188/KS -Dweblogic.ext.dirs=C:\bea103\patch_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_wlp1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_cie670\profiles\default\sysext_manifest_classpath;C:\bea103\wlportal_10.3\p13n\lib\system;C:\bea103\wlportal_10.3\light-portal\lib\system;C:\bea103\wlportal_10.3\portal\lib\system;C:\bea103\wlportal_10.3\info-mgmt\lib\system;C:\bea103\wlportal_10.3\analytics\lib\system;C:\bea103\wlportal_10.3\apps\lib\system;C:\bea103\wlportal_10.3\info-mgmt\deprecated\lib\system;C:\bea103\wlportal_10.3\content-mgmt\lib\system -Dweblogic.alternateTypesDirectory=C:\bea103\wlportal_10.3\portal\lib\security -Dweblogic.Name=AdminServer -Djava.security.policy=C:\bea103\WLSERV~1.3\server\lib\weblogic.policy weblogic.Server
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    ERROR: transport error 202: bind failed: Address already in use
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:690]

Maybe you are looking for

  • Integration of SAP MI 7.1 and SAP PI 7.1 on the same Server

    Hi dear SAP Community, Does anyone know, if it's possible to use MI 7.1 and PI 7.1 on one server to create a big Enterprise Service Bus? Thank you! Best Regards Philipp

  • Putaway strategy for bin

    Hi SAP Guru I have an issue in my WMS setup. I currently assigned Storage Type XXX for palletization. PUTAWAY STRAT : P Mixed Storage : X Addition to Stock : X In the master Data setup i have input the palletization information already under SUT IP.

  • Giga Sample Conversion Problems

    I just tried uploading giga studio 3 giga sample libraries to my exs 24. I followed the instructions to where I should put them, they showed up, and when i opened them they were converted into a exs instrument. However, it seems like only 3 notes wor

  • Export/Import analytics workspace

    I am trying to import data into my new analytic workspace from my current workspace as a part of maintenance cycle. This time I decided to change dimension order of my cubes and created them with different dimension order by using AWM then I tried im

  • Zen vision m got wet! possible to open it

    hi - my month old vision M fell in the (unused thankfully) toilet. it was completely submerged for /2- second. Since this is not covered under warranty I would like to open it up to see if I can't dry it out but cannot seem to figure out how to open