Web application processing terminated

Hi Fellow SDNers,
My user is trying to execute a report from a portal. He is getting the below error while executing the report:
Web application processing terminated
Diagnosis
The system had to terminate processing of the Web application.
The reason could be that the system was no longer able to find the Web application server session.
System Response
Processing the navigation step is not possible.
Procedure
Call up the Web Application again.
Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
Procedure for System Administration
Notification Number BRAIN 278
However, when I tried running the same report from the portal with same user credentials, I'm not getting any error.
I suspect, its due to the IE setting. I got the cookies and offline IE files deleted from the user, but all in vain. User still faces the same issue. I'm still wondering, its not a issue with the BI system. This might be due to some network settings or IE settings.
But the issue is only for one report, rest of the reports are running fine for the user.
Kindly help me, if anyone has faced this issue earlier.
System Details:
Patch: SAPKW70015
release: 7.0
Regards,
Satyam

Hi,
Check if the entry exists in table RSZWVIEW for your report.
Regards,
Durgesh.

Similar Messages

  • Web Application processing Terminated......Notification Number BRAIN 278

    Hi Guys,
    Any want can help me to solve this issue, when I try web with execute http://hostname.xx.co.xx:8103/sap/bw/BEx
    and pop up the new screen for login so I type the user ID and Password until display the Bex screen but unfortunately when i click the all icon like query we have a message "Web application processing terminated" and when i click give this message :
    Diagnosis
    The system had to terminate processing of the Web application.
    The reason could be that the system was no longer able to find the Web application server session.
    System response
    Processing the navigation step is not possible.
    Procedure
    Call up the Web Application again.
    Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
    Procedure for System Administration
      Notification Number BRAIN 278 
    Close
    FYI, we already read this noted as references but still not solved 821750 and 763427 
    And we using this BW3.50 Patch 19 or SAPKW35019 patched on our server.
    Thanks and Best Regards
    Chris

    Upss.... when i check we using BW3.50 Patch 16 or SAPKW35016 .....
    Thansk and Regards
    Chris

  • Messages: "Web application processing terminated"

    Hello all,
    When i execute a webtemplate, the message "web application processing is terminated" as a link.
    Diagnosis are as follows:
    Diagnosis
    The system had to terminate processing of the Web application.
    The reason could be that the system was no longer able to find the Web application server session.
    System response
    Processing the navigation step is not possible.
    Procedure
    Call up the Web Application again.
    Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
    Procedure for System Administration
      Notification Number BRAIN 278 
    this is heppening after i enter the input in the variable screen. could you let me know what is the possible problem?
    Regards,
    Ravi

    Hi,
    This is due to a time out.
    There are some parameters that can be set to adapt the default duration of a web session.
    I do not remind the relevant SAP notes; you might perform a search on SDN posts: I'm pretty sure that there is a post on that topic.
    Best regards,
    LauQ

  • Webserver processing terminated

    Dear all,
    I have a template ID (from web Application designer) which I call up from a portal using a standard URL. The problem is I call up the template and the Query pops with variable screen. As soon as I enter variables, the processing stops and the message is 'web application processing terminated' with message numer BRAIN 278.
    I have checked with OSS notes and could find two notes but no so relevant info. I am on BW 3.5 with patch level 10.
    If anyone has encoutered this, please let me know.
    Note: This used to work before and this problem has cropped up recently. I am tring to figure out what has happened in the meantime.
    Kind Regards,
    Shravan

    Is the Portal system and the BW system in the same domain?
    Make sure the ICM profile parameter icm/host_name_full is set to the domain in which the BW system belongs.
    Also in the portal system make sure the BW system is configured with the fully qualified URL, the WAS Host Name should be <servername>.<domainname>:<port>
    Thanks.

  • Process.getInputStream() and process.waitfor() block in web application

    Hi folks,
    i am really stuck with a problem which drives me mad.....
    What i want:
    I want to call the microsoft tool "handle" (see http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/Handle.mspx) from within my web-application.
    Handle is used to assure that no other process accesses a file i want to read in.
    A simple test-main does the job perfectly:
    public class TestIt {
       public static void main(String[] args){
          String pathToFileHandleTool = "C:\\tmp\\Handle\\handle.exe";
          String pathToFile = "C:\\tmp\\foo.txt";
          String expectedFileHandleSuccessOutput = "(.*)No matching handles found(.*)";
          System.out.println("pathToFileHandleTool:" + pathToFileHandleTool);
          System.out.println("pathToFile: " + pathToFile);
          System.out.println("expectedFileHandleSuccessOutput: " + expectedFileHandleSuccessOutput);
          ProcessBuilder builder = null;
          // check for os
          if(System.getProperty("os.name").matches("(.*)Windows(.*)")) {
             System.out.println("we are on windows..");
          } else {
             System.out.println("we are on linux..");
          builder = new ProcessBuilder( pathToFileHandleTool, pathToFile);
          Process process = null;
          String commandOutput = "";
          String line = null;
          BufferedReader bufferedReader = null;
          try {
             process = builder.start();
             // read command output
             bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
              while((line = bufferedReader.readLine()) != null) {
                 commandOutput += line;
              System.out.println("commandoutput: " + commandOutput);
             // wait till process has finished
             process.waitFor();
          } catch (IOException e) {
             System.out.println(e.getMessage());
             e.printStackTrace();
          }  catch (InterruptedException e) {
             System.out.println(e.getMessage());
             e.printStackTrace();      }
          // check output to assure that no process uses file
          if(commandOutput.matches(expectedFileHandleSuccessOutput))
             System.out.println("no other processes accesses file!");
          else
             System.out.println("one or more other processes access file!");
    } So, as you see, a simple handle call looks like
    handle foo.txtand the output - if no other process accesses the file - is:
    Handle v3.2Copyright (C) 1997-2006 Mark RussinovichSysinternals - www.sysinternals.com
    No matching handles found.
    no other processes accesses file!(Wether the file exists or not doesnt matter to the program)
    If some processes access the file the output looks like this:
    commandoutput: Handle v3.2Copyright (C) 1997-2006 Mark RussinovichSysinternals - www.sysinternals.com
    WinSCP3.exe        pid: 1108    1AC: C:\tmp\openSUSE-10.2-GM-i386-CD3.iso.filepart
    one or more other processes access file!So far, so good.........but now ->
    The problem:
    If i know use the __exact__ same code (even the paths etc. hardcoded for debugging purposes) within my Servlet-Webapplication, it hangs here:
    while((line = bufferedReader.readLine()) != null) {if i comment that part out the application hangs at:
    process.waitFor();I am absolutely clueless what to do about this....
    Has anybody an idea what causes this behaviour and how i can circumvent it?
    Is this a windows problem?
    Any help will be greatly appreciated.....
    System information:
    - OS: Windows 2000 Server
    - Java 1.5
    - Tomcat 5.5
    More information / What i tried:
    - No exception / error is thrown, the application simply hangs. Adding
    builder.redirectErrorStream(true);had no effect on my logs.
    - Tried other readers as well, no effect.
    - replaced
    while((line = bufferedReader.readLine()) != null)with
    int iChar = 0;
                  while((iChar = bufferedReader.read()) != -1) {No difference, now the application hangs at read() instead of readline()
    - tried to call handle via
    runtime = Runtime.getRuntime();               
    Process p = runtime.exec("C:\\tmp\\Handle\\handle C:\\tmp\\foo.txt");and
    Process process = runtime.exec( "cmd", "/c","C:\\tmp\\Handle\\handle.exe C:\\tmp\\foo.txt");No difference.
    - i thought that maybe for security reasons tomcat wont execute external programs, but a "nslookup www.google.de" within the application is executed
    - The file permissions on handle.exe seem to be correct. The user under which tomcat runs is NT-AUTORIT-T/SYSTEM. If i take a look at handle.exe permission i notice that user "SYSTEM" has full access to the file
    - I dont start tomcat with the "-security" option
    - Confusingly enough, the same code works under linux with "lsof", so this does not seem to be a tomcat problem at all
    Thx for any help!

    Hi,
    thx for the links, unfortanutely nothing worked........
    What i tried:
    1. Reading input and errorstream separately via a thread class called streamgobbler(from the link):
              String pathToFileHandleTool = "C:\\tmp\\Handle\\handle.exe";
              String pathToFile = "C:\\tmp\\foo.txt";
              String expectedFileHandleSuccessOutput = "(.*)No matching handles found(.*)";
              logger.debug("pathToFileHandleTool: " + pathToFileHandleTool);
              logger.debug("pathToFile: " + pathToFile);
              logger.debug("expectedFileHandleSuccessOutput: " + expectedFileHandleSuccessOutput);
              ProcessBuilder builder = new ProcessBuilder( pathToFileHandleTool, pathToFile);
              String commandOutput = "";
              try {
                   logger.debug("trying to start builder....");
                   Process process = builder.start();
                   logger.debug("builder started!");
                   logger.debug("trying to initialize error stream gobbler....");
                   StreamGobbler errorGobbler = new StreamGobbler(process.getErrorStream(), "ERROR");
                   logger.debug("error stream gobbler initialized!");
                   logger.debug("trying to initialize output stream gobbler....");
                   StreamGobbler outputGobbler = new StreamGobbler(process.getInputStream(), "OUTPUT");
                   logger.debug("output stream gobbler initialized!");
                   logger.debug("trying to start error stream gobbler....");
                   errorGobbler.start();
                   logger.debug("error stream gobbler started!");
                   logger.debug("trying to start output stream gobbler....");
                   outputGobbler.start();
                   logger.debug("output stream gobbler started!");
                   // wait till process has finished
                   logger.debug("waiting for process to exit....");
                   int exitVal = process.waitFor();
                   logger.debug("process terminated!");
                   logger.debug("exit value: " + exitVal);
              } catch (IOException e) {
                   logger.debug(e.getMessage());
                   logger.debug(e);
              }  catch (InterruptedException e) {
                   logger.debug(e.getMessage());
                   logger.debug(e);
         class StreamGobbler extends Thread {
              InputStream is;
             String type;
             StreamGobbler(InputStream is, String type) {
                 this.is = is;
                 this.type = type;
             public void run() {
                  try {
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     String line=null;
                     logger.debug("trying to call readline() .....");
                     while ( (line = br.readline()) != null)
                         logger.debug(type + ">" + line);   
                 } catch (IOException ioe) {
                         ioe.printStackTrace(); 
         }Again, the application hangs at the "readline()":
    pathToFileHandleTool: C:\tmp\Handle\handle.exe
    pathToFile: C:\tmp\openSUSE-10.2-GM-i386-CD3.iso
    expectedFileHandleSuccessOutput: (.*)No matching handles found(.*)
    trying to start builder....
    builder started!
    trying to initialize error stream gobbler....
    error stream gobbler initialized!
    trying to initialize output stream gobbler....
    output stream gobbler initialized!
    trying to start error stream gobbler....
    error stream gobbler started!
    trying to start output stream gobbler....
    output stream gobbler started!
    waiting for process to exit....
    trying to call readline().....
    trying to call readline().....Then i tried read(), i.e.:
         class StreamGobbler extends Thread {
              InputStream is;
             String type;
             StreamGobbler(InputStream is, String type) {
                 this.is = is;
                 this.type = type;
             public void run() {
                  try {
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     logger.debug("trying to read in single chars.....");
                     int iChar = 0;
                     while ( (iChar = br.read()) != -1)
                         logger.debug(type + ">" + iChar);   
                 } catch (IOException ioe) {
                         ioe.printStackTrace(); 
         }Same result, application hangs at read()......
    Then i tried a dirty workaround, but even that didnt suceed:
    I wrote a simple batch-file:
    C:\tmp\Handle\handle.exe C:\tmp\foo.txt > C:\tmp\handle_output.txtand tried to start it within my application with a simple:
    Runtime.getRuntime().exec("C:\\tmp\\call_handle.bat");No process, no reading any streams, no whatever.....
    Result:
    A file C:\tmp\handle_output.txt exists but it is empty..........
    Any more ideas?

  • Export for web Process terminated unexpectedly (11)

    I have a licensed version of QuickTime Pro. And a licenced version of FCE.
    I try to export a project 2 Quick time movie files put together one with a 83,291 Bit rate and the other with a 79,409 bit rate. Both use the Apple Intermediate Codec, Integer (Big Endian).
    I export them to Quicktime Movie Then try to export for web. It starts then after awhile says this:
    The Application QTPlayerHelper Quit Unexpectedly.
    2008-06-30 08:36:22 -0400
    EXCBADACCESS (SIGSEGV)
    KERNINVALIDADDRESS at 0x0000000012439000
    Thread 10 crashed:
    0 iCodecDecompressorComponentDispatch +
    30556
    1 iCodecDecompressorComponentDispatch +
    8268
    2 iCodecDecompressorComponentDispatch +
    4284
    3 pthreadstart + 321
    4 thread_start + 34
    It also says:
    Failed: Export process terminated unexpectedly (11)
    I have tried an uninstall of the app and the pref file. No dice.
    Help please

    Similar issue here when exporting AVI files captured from Canon G9 to iPod.
    QuickTime Pro quits with: Failed: process terminated unexpectedly (11).
    Oddly, if I start from a power off and run QTime the error does not occur.
    Of course powering off for every export is a real PAIN IN THE Axx but it is a work around on this end.
    I have yet to try 3rd party software but this is error occurs with Quick Time Pro Ver 7.5 build 149.5.
    Sad

  • BI 7.0 parallel processing of queries in a web application

    Hi,
    I'm currently having problems with a web application / web template with 10 data providers (different queries). When executing the web application the 10 queries are executed sequentially. Since each query takes about 30 sec., the complete execution time exceeds 300 seconds which is not satisfactory.
    Is there any way to enable parallel processing?
    Thanx in advance,
    Patrick

    Hello Patrick
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/41c97a30-0901-0010-61a5-d7abc01410ee
    /thread/351419 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/ff5186ad-0701-0010-1aa1-e11f4f3f2f68
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2b79ba90-0201-0010-1b9a-fa13a8f38127
    Thanks
    Chandran

  • App Error 602 & "Uncaught exception: Application net_rim_bb_messaging_app(144) is not responding; process terminated"

    Hi,
    I have spent a whole and very frustrating day trying to solve the following problem and in exasperation I resort to a posting here. Note no changes had been made to the phone prior to the start of the problem.
    My Blackberry 9800 Torch freezes on power-up. It can only be ‘unfrozen’ by taking out the battery or, if left alone, after many minutes it comes up with the white screen, ‘App Error 602' and ‘Reset’ which is highlighted. Resetting has the same effect as taking out the battery. After each restart, it goes through the usual security and time checks and then freezes again. However, on rare occasions I got the message “Uncaught exception: Application net_rim_bb_messaging_app(144) is not responding; process terminated”.
    Soon after the restart, after the Security Software Verification and on confirming the time/date, there is a very small window of opportunity (literally a couple of seconds) to access the phone. After much trial and error, I discovered that (in Manage Connections) by disabling the Mobile Network and WiFi - effectively putting it into ‘aeroplane mode’ - the device would work, without any problem and indefinitely. Except, of course, I couldn’t access the phone network nor the internet, which isn’t helpful(!).
    I have taken this opportunity to do a full back-up on to my PC, through BlackBerry Desktop Software (though I’m not sure this backs up downloaded Apps??). Separately, I've also copied all the subdirectories from the phone’s memory and media card on to the PC, retaining their correct structures (but presumably also copying the corruption causing the problem?).
    Any ideas???
    - thanks in advance!

    The method you are attempting is the automatic method...sometimes it just doesn't work, and you must take control. The simplest way is to, on a PC (you cannot do this on MAC):
    1) Make sure you have a current and complete backup of your BB...you can find complete instructions via the link in my auto-sig below.
    2) Uninstall, from your PC, any BB OS packages
    3) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/software/desktop.html
    4) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    It is sorted first by carrier -- so if all you want are the OS levels your carrier supports, your search will be quick. However, some carriers are much slower than others to release updates. To truly seek out the most up-to-date OS package for your BB, you must dig through and find all carriers that support your specific model BB, and then compare the OS levels that they support.
    5) Delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    6a) For changing your installed BB OS level (upgrade or downgrade), you can launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC.
    6b) Or, for reloading your currently installed BB OS level as well as for changing it, bypass the Desktop Software and use LOADER.EXE directly, by proceeding to step 2 in this process:
    http://supportforums.blackberry.com/t5/BlackBerry-Device-Software/How-To-Reload-Your-Operating-Syste...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC.
    If, during the processes of 6a or 6b, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Separating heavy duty business process from web application

    I'm working with a web application that just runs in a Servlet container, Jetty actually. I'm wondering what the best way to separate resource intensive processes, such as a search indexing process, from the main web application. These resource intensive processes might run at scheduled times, or they might be triggered by the events in the web application. I assume the second thing might incur much more complications on the solutions. I have a lot of questions about this, but for now, I'd just like to have some folks point out the common solutions. Changing to a EE application server is NOT an option.

    chadmichael wrote:
    Couple of questions:
    1) What's the benefit of going to another app if you're still on the same server? I'm not being coy, I'm just trying to get a feel for the pros and cons. You could always run something on a timer from within the web application. Is there a performance benefit from being in another JVM? Then run it on the same server. No need to run it on another server if a separate JVM will do it for you.
    2) How would you communicate with the main app if you needed to receive events or something? RMI?You stated it was on a timer. There is no need to be on the same server to run things from a timer. If it needs to be event driven a simple way would be to set up a separate instance of Tomcat (or Jetty) on the same or different server. Refactor out what ever the offending code is into separate servlet and have your main app just send the events off to the other instance.
    There are a lot of ways to go about this. They depend on what your needs are.

  • How can I enable java applet plug-in and Web Start applications via terminal?

    Since the last Java update to Snow Leopard, I have found that the system periodically disables the Java applet plug-in after a period of disuse.  I know I can go to /Applications/Utilities/Java Preferences and just click to re-enable Java.  But I want to write a script which will do this periodically for a couple hundred Mac users where I work. 
    My question is - how can I reenable the Java applet plug-in and web start applications via Terminal command?  Is this possible?  Is there a plist file that can be modified, etc.?
    Bob Reed

    It is my understanding that Apple's most recent Java update automatically disables Java after a certain period of time that it hasn't been used.  We don't want users to have to keep re-enabling it.  So we wanted to find a way to do this via script either run by a Casper JSS server or stored locally on each workstation.   With the guidance provided by Mark Jalbert above and some text from a script written by Rich Trouton, I was able to make a script (with some minor changes) and a launch agent to re-run the script upon login.  So the preference is always enabled.
    For your reference, the script content is:
    #!/bin/sh
    # DYNAMICALLY SET THE UUID FOR THE BYHOST FILE NAMING
    if [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` == "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c51-62 | awk {'print tolower()'}`
    elif [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` != "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-62`
    fi
    # Set the the "Enable applet plug-in and Web Start Applications" setting in the Java Preferences for the current user.
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsEnabled" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsEnabled bool true" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsLastUsed" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsLastUsed real $(( $(date "+%s") - 978307200 ))" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    The launch agent plist content is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>org.XXXXX.enableJavaPlugin</string>
              <key>ProgramArguments</key>
              <array>
                        <string>sh</string>
                        <string>/Library/Scripts/XXXXX/enableJava_plugin.sh</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartOnMount</key>
              <true/>
    </dict>
    </plist>
    I hope this is helpful to anyone wishing to keep the Java web plugin enabled.
    Bob
    Message was edited by: Robert Reed2

  • Error message multiple times a day: application net_rim_bb_vvm(180 is not responding; process terminated

    I have a Style 9670 running OS6 on the Sprint network.
    I upgraded to this phone about a month ago. approximately 2 weeks ago this error:
     application net_rim_bb_vvm(180 is not responding; process terminated.
    at first it was every 2-3 days. its now happening 2-3 times a day. Sometimes I can hit the ok button highlight and can continue using my phone, but as of lately more often than not, I must pull the battery as the phone locks up.
    BB support was unable to help. Sprint my carrier has been unable to help and wants me to drive another 30 miles to a "tech store". Any help would be appreciated.
    Thanks in advanve.
    FEAR is an ILLUSION

    Hello ScottZski and welcome to the BlackBerry Support Community Forums.
    This message is indicating an error with your device software. An application is not able to function properly and it's causing your device to error out. 
    That being said, it's fixable
    I am going to assume you have the Desktop Software installed, seeing as you said you did an update recently. Back up your device data before we begin.
    After your data is backed up, follow the steps in KB11320 to reinstall your software. Once the reload is completed, do a test to ensure the error is fixed by doing a reboot of your BlackBerry by removing and reinserting the battery.
    When you go to restore your device data, it is recommended to do an essential data restore (such as your Contacts, BBM, Email, SMS). To do this advanced restore, follow the steps in KB23680.
    You will need to also need to resend your email service books to resume email delivery. KB15402 will show you how to resend your service books.
    Let me know how you make out.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Uncaught exception: Application net_rim_bb_phone_app (59) is not responding; process terminated

    Hello:
    So, this is the error message that won't go away:
    Uncaught exception: Application net_rim_bb_phone_app (59) is not responding; process terminated
    In the 18 months that I've been attempting to use my BlackBerry Storm 1, it appears every few days.
    Between that and the status icon that spins for minutes on end, I find that the smartphone that I should love is the device that I utterly dread trying to use.
    From January 2009 to December 2009, I was calling Verizon for support two to three times a month.  From calling *228 to updating the software, nothing has made my Storm something I can count on.  After the December calls to support, I pretty much gave up.
    The entire time I've been typing this very post, the status icon has been spinning (after pressing OK to the uncaught exception error message).
    Any thoughts on what might resolve the error message and/or minimize the status icon spinning are greatly appreciated.  Removing the battery seems to be the only "solution".  But, if that's a solution, i wish I'd known what i was in for before investing in this device.
    I hope your experience is better!
    -Warren

    Hello !
    Try the following:
    Simply delete all the  Messenger apps (Yahoo, MSN or Live) which you might have upgraded recently / delete apps which were recently installed before the error which actually started occuring .
    After that unplug the battery while the phone is still "on" and restart the phone.
    In fact I had deleted a whole bunch of apps to facilitate my OS upgrade as I did not have enough memory on my Device.  
    This not only helped solve my above mentioned problem but also made my phone restart in less than 3 minutes (the earlier reboot was done in not less than 15  minutes !!).
    Therefore my conclusion as from the above incidents is to keep your apps in the bare minimum so that your phone performs to the best.
    Hope this resolves your Problem!
    If your problem has been resolved then would request you to Click on "Like" and accept as "Solution" so that other Advisors doesnt invest their time on this Message anymore.
    Thanks.

  • Processing exported data from web application

    Hi all,
    here's my problem: I've got a Web Application designed in WAD and want to get the current navigation state (which is in the data provider) into an external application (i.e. a web service). What I already tried was to export the navigation state via SAP_BW_URL COMMAND='EXPORT' FORMAT='XML' and redireted it to a web service. But I wasn't able to get the XML document, I only got a XML_ID (as you can see in forum thread Accessing XML File).
    Has anyone another approach to get the data exported and ready to be processed by a custom web service or external application (ABAP FM,..)?
    Thanks in advance and best regards!
    Dominik

    Dear Dominik,
    maybe is XMLA for Analysis in BW a solution for you:
    try this links
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e380e03c3a4dbf8cf082f0c910f9cf/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/d8/3bfc3f8fc2c542e10000000a1550b0/content.htm
    This a SOAP Web Service which gives back query content, the query is defined within MDX Statement in a XML file.
    There also exists a detailed How To Document in SAP Service Marketplace - but unfortunately i can´t found it.
    Regards
    Marcus

  • Cannot process an HTTP request to servlet [Faces Servlet] in [wcb] web application

    Hi All
    l am working on a Wcem 3.0 with Trex with ERP and WAS 7.3.
    When I logon to http://<host>:<port>/wcb/index.html url I am able to see wcbuilder_erp & wcbuilder_erp_ume application ids.
    But suddenly I am getting The website cannot display the page error message when I access the above mentioned URL.
    When I verify the developer log trace it showing as 500 Internal sever error issue.[EXCEPTION] java.lang.VerifyError: Bad return type
    In defaultTrace.trc file it is showing as Cannot process an HTTP request to servlet [Faces Servlet] in [wcb] web application exception.
    09 10 18:08:56:098#+0530#Error#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#
    com.sap.ASJ.web.000137#WEC-APP-BF#sap.com/wec~comm~wcb~leanapp#C0000A229CA7094A0000000000001188#2392750000000004#sap.com/wec~comm~wcb~leanapp#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#Guest#0##CFAFBF4C38E411E4B4750000002482AE#ffbcbcdd38e611e49d020000002482ae#ffbcbcdd38e611e49d020000002482ae#0#Thread[HTTP Worker [@455349581],5,Dedicated_Application_Thread]#Plain##
    Cannot process an HTTP request to servlet [Faces Servlet] in [wcb] web application.
    [EXCEPTION] java.lang.VerifyError: Bad return type
    Exception Details:
    Location: com/sap/wec/tc/core/runtime/jsf/resource/WecExternalContextFactory.getExternalContext(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljavax/faces/context/ExternalContext; @17: areturn
    Reason: Type 'com/sap/wec/tc/core/runtime/jsf/resource/WecExternalContext' (current frame, stack[0]) is not assignable to 'javax/faces/context/ExternalContext' (from method signature)
    Current Frame:
        locals: { 'com/sap/wec/tc/core/runtime/jsf/resource/WecExternalContextFactory', 'java/lang/Object', 'java/lang/Object', 'java/lang/Object' }
        stack: { 'com/sap/wec/tc/core/runtime/jsf/resource/WecExternalContext' }
      Bytecode:
        0000000: bb00 0359 2ab6 0004 2b2c 2db6 0005 b700
        0000010: 06b0                                
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Class.java:2446)
        at java.lang.Class.getConstructor0(Class.java:2756)
        at java.lang.Class.getConstructor(Class.java:1693)
    Any help?
    Regards
    Rami Reddy

    Hi Steffen,
    Thanks for promt response.
    But when I checked with Basis team as of now there are not yet configured TREX, only WCEM components has been configured in WAS 7.3. When they are configuring WCEM components HTTPS protocol not configured.
    But for past 2 weeks I am able to see the below screen using http://<host>:<port>/wcb/index.html url.
    But now I am getting The website cannot display the page error.
    Please clarify me if anything is wrong from my side. And also pl let us know which configurations I have to check for fixing the issue.
    Regards,
    Rami Reddy

  • Deploying BPEL process in  web application

    How can I call/invoke a BPEL process in jspx web applications?
    Thanks in advance,
    Ahmad Esbita

    Ahmed,
    There many different ways to call a BPEL process from jspx based pages. Most simple of them is to create a new web service based on the BPEL wsdl and that can be used as a data control and available as drag-n-drop on the page.
    If you are looking for more programmatic control, then you can generate proxy out of the wsdl and you will have java classes corresponding to the service.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Open Pdf on report execution

    Hello All, I want to open the pdf file Whenever I execute the report. but Without saving that file to my system. that is the main issue. <b>I donot want to save the file on my system.</b> eq. Select * from sflight into table itab_sfight. Data in the

  • How to see time in song in itunes

    How do i see the song time in itunes?

  • Hi  adding code in standard prog

    hi i am adding code in standard program J_1IEWT_CERT.  in that there is include J_1IEWT_CERT_F01. there is standard prog internal table printtab. i am trying to pass printtab data into wa_printtab, but it not going into wa_printtab. i writing followi

  • Adobe Digital Editions quits unexpectedly every time I try to open a book (Mac)

    Hello! I've searched the forum and found three other people who had this issue...but the question was not answered. Can anyone help me? I've followed the troubleshooting guidelines to no avail. (e.g. uninstall previous versions, empty trash, manually

  • Old iphone as ipod

    I'm upgrading to the new iphone 3GS today and I want to know if I can still use my original iphone just for games and an ipod without service on it.