Performance Issue in Web Application: Event 12605 "Web: Text Content"

Dear All,
we are about to deploy a couple of rather complex web applications (built with WAD) and are currently running performance tests with Mercury Loadrunner.
According to these tests our web application become very slow once more than 30 (virtual) users are running the application.
When analyzing the BW statistics data we found out that most of the runtime of our application comes from an event called "Web Java: Return Text-Type Content" (ID 12605).
Has anyone experienced the same issue? Or does anyone know what exactly this event means?
We are using XPATH in our web applications. Could this be a cause for poor performance?
Any help is highly appreciated!
Best Regards
Christian

Can you tell me more about the detail of loadrunner stress test for BI WAD scripts? We met error when run the load runner for BI WAD report.
1. We develop the BI report basing WAD 7.x, setup Iview in sap EP for BI report and get the BI report URL.
    2. We fill the report URL in IE(6.0) to run this report and display the bi report successfully ,
eg: http://epserver:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher?sap-bw-iViewID=pcd%3aportal_content%2fcom.ahepc.BI%2fcom.ahepc.iView%2fcom.ahepc.FI%2fcom.ahepc.BI_I_ZWAFI_006&sap-ext-sid=1

Similar Messages

  • Pass data from one web application to another web application

    Hi,
    Please provide suggestion for following scenario:
    Scenario: Basically the aim is to transfer large amount of data from one application to another and display JSP of second application.
    User enteres data on a JSP of one web application. When he submits that data, another web application opens in new window and data from first application should be passed to this second web application. Another web application will display that data on its own JSP. User can perform whatever he wants on second application screen.
    Possible solutions:
    1) response.sendRedirect(): This makes GET request. But, there is large data to send. So, GET is not effective.
    2) forward(request, response): Can't use as I have to pass data to different application that is in another context.
    3) URLConnection: Here, I can make POST request and set attributes in HTTP request and make connection to another application. I can pass data using output stream. But, I can't display second application JSP to user even if I use input stream to read response. Because control will be ultimately in first application only.
    Is there any othe method to achieve this or any of the above options extendable?
    Please give your inputs.

    Hi,
    According to your post, my understanding is that you want to migrate list data from one web application to another.
    We can migrate list data programmatically, there are some articles for your reference.
    http://blogs.msdn.com/b/tejasr/archive/2007/11/12/code-snippet-copy-list-data-between-sites-programmatically.aspx
    http://www.fivenumber.com/copy-sharepoint-list-items-from-one-site-to-another-programmatically/
    http://geekswithblogs.net/AnneBougie/archive/2009/01/23/copy-a-sharepoint-list.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • BEx Web Applications in BPS Web Interfaces

    Hi all,
    I need to make a BPS web interface which enables the business user to see data in the BW system while posting the budget items in BPS. This is to be done in the Web, and I have therefore tried to implement a solution for the customer following the instructions in the HowTo-paper: "How To.... Integrate BEx Web Applications into BPS Web Interfaces".
    The report is displayed when the interface is executed, but the variable which I have included in the code does NOT have any effect on the BW query (which is a surprise to me) but rather only on the BPS Web Interface (which is no surprise to me).
    The above results in two questions:
    - What part of this code needs to be changed for the variable to take effect on the BW query as well as the BPS Web Interface:
    <iframe
        id="BWReport01"
        name="BWQUERY"
        src="/sap/bw/BEx?
        cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
        width="1200"
        height="600">
        Frames are not supported
    </iframe>
    <script language="JavaScript" type="text/javascript">
        var frame  = document.getElementByld( 'BWReport03' );
        var url    = '/sap/bw/BEx?cmdldoc&TEMPLATEID=';
        var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
        var '1000/'  = '';
        var appl   = 'ALLOK_CHECK2';
        var varvl  = '%=descr(VarvlSel1_pctr/value)%>';
        var convert = /\((.*)\)/;
        convert.exec(varvl);
        if ( RegExp.$1 != "") varvl = RegExp.$1;
        url = url + appl + filter + comp + varvl;
        url = url.replace(/ /,"");
        frame.src = url;
    </script>
    Particular areas where I am in doubt (in squared brackets):
    [  var '1000/'  = ''; ]
    [  var convert = /\((.*)\)/; ]
    - has anyone had any experience in using the Selector Package (SEL_PACKAGE) rather than the Selector Variable Value (SEL_VARVL)? In case you have, how is it implemented in the HTML-code?
    Looking forward to hearing from you guys soon.
    Best regards
    Rune Rygaard

    Hi Rune,
    Here's what I found - I'm not sure it will solve your problem, but maybe it can give you some hints:
    <b><iframe
    id="BWReport01"
    name="BWQUERY"
    src="/sap/bw/BEx?
    cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
    width="1200"
    height="600">
    Frames are not supported
    </iframe></b>
    I think the section above in bold has to be deleted and replaced by the one specified in section 3.3 of the how to paper: <iframe id=BWReport03" name="BWQUERY" src="/sap/bw/mime/....</iframe>. The reason is the your defintion will display the report, but will not take any variables into consideration.
    Furthermore you're missing a '=' in your code (cmd=ldoc) - I marked it in bold below. What you could also do was to add an alert to display the URL generated by the javascript. I added that in bold as well. That can give you an idea of whats missing.
    Hope this helps,
    Jacob Lund - DK :o)
    <script language="JavaScript" type="text/javascript">
    var frame = document.getElementByld( 'BWReport03' );
    var url = '/sap/bw/BEx?<b>cmd=ldoc</b>&TEMPLATEID=';
    var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
    var '1000/' = '';
    var appl = 'ALLOK_CHECK2';
    var varvl = '%=descr(VarvlSel1_pctr/value)%>';
    var convert = /\((.*)\)/;
    convert.exec(varvl);
    if ( RegExp.$1 != "") varvl = RegExp.$1;
    url = url + appl + filter + comp + varvl;
    url = url.replace(/ /,"");
    <b>alert (url);</b>
    frame.src = url;
    </script>

  • How to deploy web applications on d:\web

    Hi all,
    I am new to this forum and like to know the procedure for deploying a web application
    other the default deployment directory. (Eg. I need to deloy a web application
    in D:\web directory).

    Yes. The new Weblogic J2EE book requires installation in 'c:\wlserver6.0' for the
    examples to work, so that is
    where I put it.
    Cheers
    "Mohan" <[email protected]> wrote:
    >
    R u sure? I think u r refering to the default installation directory
    which is
    c:\bea.
    "Donald Stadler" <[email protected]> wrote:
    The installation program gives an option to change the default deployment
    directory.
    I used it myself on intallation.
    "S.Mohan" <[email protected]> wrote:
    Hi all,
    I am new to this forum and like to know the procedure for deployinga
    web application
    other the default deployment directory. (Eg. I need to deloy a web
    application
    in D:\web directory).

  • OC4J 9.0.4 won't start web applications event if they marked as to be...

    OC4J 9.0.4 won't start web applications after it was restarted even if they marked as to be loaded on startup.
    I have following line in my http-web-site.xml oc4j configuration file:
    <web-app application="default" name="app" root="/app" load-on-startup="true"/>
    and in web.xml (<web-app>/<servlet>/)
    <load-on-startup>0</load-on-startup>
    But when I invoke following command:
    java -jar admin.jar ormi://localhost admin Matrox -restart
    my application won't be started after server was restarted... :( If I shut it down and start it then it will be started...
    Is this a bug? How can I fix this? Please help! SOS! Mayday!

    Can you try the "-updateConfig" option of admin.jar?
    java -jar admin.jar ormi://localhost admin Matrox -updateConfigTo my vague memory, the "-restart" option does not necessarily implies reading the config files again.

  • Performance issue on swing application

    Hi,
    I have one swing application and i am facing one performance issue after minimizing the applicaton. The same application is taking 2-5 seconds to redraw the screen again when i am trying to maximize it. Is there any way to improve this redraw delay ?..Is there any way to tweak the Event Dispatcher thread and by this we can overcome correct me if i am wrong? .
    Is there anybody facing such kind of issue please help me...
    Thanks in Advance,
    Anish.

    Encephalopathic wrote:
    good guess. What do you think? Loading the images in the painting methods?That is a common mistake. To the OP, some common errors when overriding paintComponent include:
    1. Loading an image each time paintComponent() is called. Just load it once, cache it, and only draw it in paintComponent, this saves you from the IO of loading the image on repaints.
    2. Doing application logic/complex operations in paintComponent. paintComponent should be kept fast, only do painting operations, keep long-running tasks, IO, etc. out of it.
    3. To a lesser extent, doing lots of complex painting on a repaint call, maybe lots of transforms, translucency, xor-ing, whatever. For most common painting (at least in my work, YMMV), this isn't a problem, but if it is you should consider drawing all "static" stuff to a buffer (such as a BufferedImage) and just painting the BufferedImage, as opposed to drawing all the static stuff each paintComponent call.
    The idea is just to keep the painting logic as fast as possible, to avoid slow repaints as you're seeing. Sometimes people don't realize that paintComponent() will be called every time your component needs to be even partially repainted (minimized/maximized window, partially hidden by another window then revealed again, stretched by window resizing, etc.). That's why things like IO are out of the question.
    Of course, I'm babbling now. This may not even be your problem, or you may already know all this stuff. If so, just ignore this post!

  • Deploying web application in a web server

    Hi Frds,
    I am new to web applications,
    Can Anybody tell me how to run a web application in Tomcat and Web sphere...
    I am using eclipse3.2 IDE
    step wise procedure is helpful
    Can any body help me out plz..
    Thanks In Advance
    Anji

    I had to put the property files into a directory that was referenced in $CLASSPATH at startup. Otherwise it did not seem to find any of them.
    Regards
    Yngvi
    null

  • Deploy web application to multiple web front end servers

    Hi,
    I have a SharePoint farm that include 8 web front end servers and 2 application servers. I have created web application from central administration and during creation I added the public URL to refer to one of the web front end servers.
    Now I want to be able to access the same web application from the other web front end servers what shall be done. I have tried to add alternate access mapping but i found that i only have 5 alternatives (Default, Intranet, Extranet,Internet and Custom) while
    I need to access it from 8 different sites with the IP or name.
    Can anyone tell me what is the best practice for that.
    I appreciate the quick response.
    Regards,
    Ehab 
    Ehab

    I have create my web application under the default port "80" I provided the URL for one of the web frontend servers machine name "http://Machine Name:80/"
    For the AAMs that I have created I added some of the machines names of the web frontend servers
    Internal URL Zone
    Public URL for Zone
    http://Machine-Name-01 Default
    http://Machine-Name-01
    http://Machine-Name-02 Intranet
    http://Machine-Name-02
    http://Machine-Name-03 Extranet 
    http://Machine-Name-03
    http://Machine-Name-04 Internet 
    http://Machine-Name-04
    http://Machine-Name-05 Custom 
    http://Machine-Name-05
    Ehab

  • Web Application: Display attribute in text element

    Dear all,
    we want to display an display attribute (0RESP_PERS as of 0COSTCENTER) in the header area of an web application. Therefore I tried to use an text element. I'm able to display the cost center itself, but haven't found the opportunity to display the related responsible person.
    Any ideas?
    Thanks in advance.
    Best regards,
    Daniel

    Hallo Daniel
    were you able to solve your problem?
    I have the same requirement  - display the cost center owner (attribute) of a cost center (characteristic) in a web template. I'm using NW2004s with the BI 7.0 front end tools.
    Thanks in advance.
    Best regards,
    Jürgen

  • Merging Two JSF, ADF BC Web Applications into One web application

    What would be the best way to take two JSF, ADF BC web applications written by two developers and merge them into one web application. Any place to start would be greatly appreciated. I'm using Oracle JDeveloper - 11.1.1.4.0
    Edited by: Sunanda on Jul 26, 2011 4:13 AM

    Take a look at this thread:
    Merging Two JSF, ADF BC Web Applications into One...
    Although the thread is old, but it provides about the types of contents you would need to take into consideration while merging.
    With the knowledge from the above thread, you could use refactor option in the JDeveloper menu to move the contents from one project to another.
    Thanks,
    Navaneeth

  • ISA apps in CRM 2007 still JSP Struct based Web application OR BSP Web UI

    Hi, SDN Experts.
    Is the ISA (Internet Sales) appications in CRM 2007 stil runs in JSP Struct based Web application framework OR now it has switch to the BSP Web UI based web applications?
    I know that the previous PCUI based applications have been switched to BSP Web UI based applications, but I am not sure about the ISA.
    Can anyone also point me to some resources/materials to identify what changes CRM 2007 compare to CRM 2005  /6.0 in details?
    Thanks for advise,
    KC

    KC,
    ISA in CRM 2007 is in JSP still..
    www.help.sap.com would be the best option to start
    Regards,
    Vinay

  • Performance Issue - 32 Bit Applications vs 64 Bit DB Server

    Dear All,
    My Current set up is as follows:
    Operating System: Windows 2003 Standard Edition R2 64 Bit
    Database: Oracle 10.2.0.1 64 Bit
    Client Connectivity: Oracle 10.2.0.1 32 Bit
    Application: Lotus Domino 7.0.2 FP3 32 Bit
    In the above set up,
    When Application try to fetch the records from DB through client, it takes so much of time as compared to when i run the same with (OS & DB in 32 bit).
    kindly let me know how to do workaround on this, analysation have to be made to overcome this performance issue.
    thanks & regards
    suresh

    1. Check for available statistics.
    2. Verify plans against 32 bit and 64 bit databases.
    3. Analyze the sql trace for the session.

  • Calling web applications from another web application

    Hi everyone,
    I direly need your suggestions on how to implement the following requirements:
    I have a web application (i.e. App A). Then I have other web applications (i.e. App B, App C, App D, etc.) .
    For each of the other apps (App B, App C, App D), I need to have 2 variable/attribute settings whose values are to be set (pre-defined) per user.
    Meaning one user's values are different from another user.
    In App A, I need to call App B, App C, & App D one by one to get the values of the 2 variables/attributes for a particular user accessing App A.
    How should I implement this whole scenario such that I can set the values for 2 variables/attributes in App B, C, & D on a per user basis?
    Please help me get ideas on what methods or work-arounds to implement in order to achieve this.
    Thanks.
    blm

    Assuming this is running on a server, how about placing your data in application scope?
    All applications have access to it. Just make sure every object put in application scope is uniquely named
    and that your other application knows its name. One suggestion is to put a collection object (such as a List) in application scope and add items to it. This way, every application will know the collector's name. They can then search through the collection for any object addressed to itself. Just make sure you send data into and out of the collection in a thread safe way. such as by synchronization.
    Here is an example of an object that you can store in the collection:
    MessageObject{
    String fromApplication;
    String toApplication;
    String message;
    }

  • Publication slow performance issue in BO 4.0 SP04 WebI

    Hi,
    Publication of a report is taking around 4 hours in BO 4.0 sp04 WEBI and failing some times.
    same publication is taking around 1 hour in BO 3.1.
    More  details about existing publication setup:
    publication with many dynamic recipients and the destination is shared file system,format excel sheets.
    Normal report refresh is taking around 5 to 10 minutes.
    Known issue:
    We were trying to upgrade to newer versions to BO 4.0 SP08 but there was a problem during upgradation
    Several errors such as could not open file: <install
    dir>\InstallData\InstallCache\<package name> were found in the setup
    logs.
    After trying to find this file, we discovered that the InstallCache
    directory only contained 1 subfolder and this issue throwing an errors while upgrading to later versions.
    Is there any way to fix publication issue in BO 4.0 Sp04 publication slow perforce with out up-gradation to SP08?
    For up-gradation BO 4.0 SP04 to SP08  how to handle above mentioned installation cache issue?

    To get a good performance, you need proper server sizing and configuration in CMC. Follow the guidelines available in sap documentation to ensure the sizing is appropriate.
    You can have a dedicated APS for publication and allocate enough memory to it and then test the same. For details: http://wiki.scn.sap.com/wiki/display/BOBJ/Business+Intelligence+4.x+APS+%28Adaptive+Processing+Server%29+Service+Distribution

  • Performance issue of Forms & Report running in Web environment

    Hi,
    We have been using Oracle web forms and reports but experience slow and unstable of application when run in web as java applet.
    Besides, after using quite intensively during the day or idle for some time in the day, forms is very likely to go halt, which is the biggest problem when we need to serve a lot of customers in queue. When this thing happens, the entire browser needs to be restarted. We can't afford to always do that.
    Is anybody out there face the same problem with Oracle Web Forms or not? If yes, can someone provide some guidance and advice on this.
    Really appreciate your help in advance.
    Please advise.
    Thanks.

    In the server registry entry or env variable
    FORMS60_TIMEOUT
    -- Length of time (in minutes) after which the server process shuts
    down if there is no communication with the Java Client
    (check out the online help of forms builder).
    there are some notes about this parameter on http://metalink.oracle.com

Maybe you are looking for

  • Multihead not working with 2.6.31 and nvidia 185

    Right, hi all. I've been having trouble for the past few days, when I came back home the machine had hung up.  Then after booting it hanged in kdm.  I've done various attempts at fixing this, with nvidia 190 driver, downgrading to 2.6.30, tested xorg

  • SQL Server Express 2008 instance fails to start

    I've installed SQL Server Express with a named instance 'SQLSERVER2'. I was able to connect to it and reference it in the management studio. There was a problem though with Visual Studio 9 when running an ASP.NET web application that required connect

  • Workspace page doesn't render on the first attempt, but on the second

    We have a clustered environment where users log into the Big IP load balancer. Local users are able to access the Workspace URL without a problem from within the company. Users out of state and out of the country are not able to connect successfully

  • Form error code

    Is there a way to know all the form error codes and error texts as well as all the message codes and texts . thanks in advance

  • Cs4 install on macbook pro

    unable to install the master collection cs4 on my macbookpro without getting an error code. wanted to know if there are any suggestions.