Problem with same application under two different context root

JDev 11.1.1.6
Does anyone have experience with such one scenario, so same app, but with two diff context root ?
At a certain point, since both start to be used (and just in that case), at times there was a drastic deceleration, as if something is blocking some period. Subsequently, after some time, the application start to behave normally. I also periodically comes to acceleration and deceleration. In the log files there is no trace, no exception happens, nothing.
And all this in a situation where both applications use only one user per app (so, the resources are not concerned)
Any comments ?

same app, but with two diff context root ?
A web app packaged in WAR can have only one context root. Package a web app in two different WARs for two different context roots.
  weabpp1.war web.xml
<?xml version='1.0' encoding='UTF-8'?>
<weblogic-web-app>
  <context-root>context-1</context-root>
</weblogic-web-app>
  weabpp2.war web.xml
<?xml version='1.0' encoding='UTF-8'?>
<weblogic-web-app>
  <context-root>context-2</context-root>
</weblogic-web-app>

Similar Messages

  • Unable to monitor two databases with same name on two different hosts

    I have got two databases with same name on two different hosts. I added one database to the list of monitored databases. Now If I try to add the other one , I get the message that the database is already being managed.
    Can't we monitor two databases with same name on two different hosts?

    you can... while saving the target,give a different name.. for eg target-2

  • Can i have the same application in two different oc4j containers?

    Hi,
    I have developed one J2EE application and still the updation is going on. So i wanted to to deploy the application in two different oc4j containers. so that one will be having the working version of my application and the users can use that application. I want to use the second container as my test application, in that i can modify and test. The deployment of my application in two different containers went fine. But when i try to access the web application with the context, it is serving from the latest deployment for my request.
    My question is :
    1) Can i use both applications with different Oracle HTTP server port numbers??
    2) All the HTTP requests are passed to the oc4j containers by AJP13 protocol through AJP port to the OC4J containers. where is the mapping between the OHS and AJP protocol defined ??? ie., the requests from this http port have to be transferred by AJP protocol through AJP port to this OC4J container ???
    3) Or i have to have two different installations of Oracle9iAS ???
    Please help me to solve my issues...
    Robert D

    Different ohs port numbers would not help as there is only 1
    $iashome/Apache/Apache/conf/mod_oc4j.conf
    You can pick a different context_root name for your test app.
    Ken

  • Load balancing within the same ACE across two different contexts residing on the same vlan

    I'm working on a design that requires traffic be sent to a different context in the same ACE. The question I have is can this be done when both reside on the same VLAN. Would the traffic in this case be handled at layer 2 instead of layer 7. Would I have to create a seperate subnet in order to provide loadbalancing?
    |__________________|
    |   | vlan 5         |         |
        |                  |
        |                  |
    Context A        |
                           |
                           |
                        Context B
    Thanks, Jerilyn

    by design, two contexts on the same box in the same vlan can't communicate. You have to use an external L3 device.
    A workaround may be to use two diferent vlans and then bridge between them with a loopback cable.

  • Merging two Podcast with same episodes and two different feed addresses

    Version 7.0.1.8 has certainly problems in the download of new podcast episodes.
    I'm having a lot of difficults - the last one beeing forced to unsubscribe one podcast and subscribe it again with another feed address. Now I have two podcasts in ITunes with same name. In Windows Explorer, all episodes are together - in the iTunes menu, all episodes are separated, each one downloaded the same episode, and with a number one appearing in the file name under the folder where the programs are stored. I tried to merge both subscriptions, but it's impossible.
    Does anybody knows how to do this? Need I download all episodes again?
    link:http://discussions.apple.com/message.jspa?messageID=3376635#3376635

    nothing was done, but I hope new software updates solved this issue.

  • Two browser with same site having two different session

    Hai Experts................
    I have a problem that with session............
    when we logged in one site with our username and password, and
    then i try to log in same site with other username and password in another browser
    then how to know is there any browser is open with any other username and password in the same site.
    I want to give this checking in the client side.....

    You could use cookies, but this will only allow you to detect multiple uses of the same browser like two instances of IE. This won't work if you are using IE and you open another different browser such as Firefox.
    I think you are out of luck :)

  • Problem with same Container for 2 different outputs

    Hi,
    I am using method set_table_for_first_display to display 2 different output with same container depending upon the selection of radio button. but the problem I am facing is when I click BACK button after dispaying second output and executing first output, it is showing prebious output only. is there any method to handle this problem?
    Regards,
    Nilanjana

    Hi,
    On clicking back use leave to screen 0 in the PAI module of the screen.
    Call screen 100.
    PROCESS BEFORE OUTPUT.
    Logic
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND.
    MODULE USER_COMMAND INPUT.
    IF sy-ucomm EQ 'User command defined for BACK button'.
    LEAVE TO SCREEN 0. "Go back to selection screen
    ENDIF.
    END MODULE.
    Have a look at the method FREE of class cl_gui_alv_grid.
    eg:
    CALL METHOD wcl_alvgrid1->free
      EXCEPTIONS
        cntl_error        = 1
        cntl_system_error = 2
        OTHERS            = 3.
    Thanks,
    Vinod.

  • COPYAPP same application name two different environments.

    I see that this has been discussed before. Using the Copyapp utility to copy from one app to another with two apps having different names. I want to copy a application from dev to prod with the same name.
    How does the properties file know which one is which? will it even work with properties file?
    Thanks in advance.
    PHR

    Hy John.
    I took a look to your post because I have been trying to use CopyApp utility.
    However, as I launch the utility, an error in DOS window returns:
    Exception in thread "main" java.lang.RuntimeException: PLANPROD_JDBC_DATABASE_TYPE is undefined or it's value is null at com.hyperion.planning.copyapp.CopyAppHelper.getConnectionInfo(Unknown Source) at com.hyperion.planning.copyapp.CopyAppHelper.getConnectionInfoFromPropertyFile(Unknown Source) at com.hyperion.planning.copyapp.CopyApp.main(Unknown Source)
    where PLANPROD is the source Planning application.
    I used your example creating the property file; here it is:
    APP1_JDBC_CATALOG=PLANPROD
    APP1_JDBC_DRIVER=hyperion.jdbc.sqlserver.SQLServerDriver
    APP1_JDBC_URL=jdbc:hyperion:sqlserver://<servername1>:1433
    APP1_JDBC_USERNAME=admin
    APP1_JDBC_PASSWORD=password
    APP1_JDBC_DATABASE_TYPE=SQL
    APP1_OLAP_SERVER=<servername>
    APP1_OLAP_USERNAME=admin
    APP1_OLAP_PASSWORD=password
    APP1_OLAP_APPNAME=planprod
    APP2_JDBC_CATALOG=PlanDev
    APP2_JDBC_DRIVER=hyperion.jdbc.sqlserver.SQLServerDriver
    APP2_JDBC_URL=jdbc:hyperion:sqlserver://<servername2>:1433
    APP2_JDBC_USERNAME=admin
    APP2_JDBC_PASSWORD=password
    APP2_JDBC_DATABASE_TYPE=SQL
    APP2_OLAP_SERVER=<servername>
    APP2_OLAP_USERNAME=admin
    APP2_OLAP_PASSWORD=password
    APP2_OLAP_APPNAME=PlanDev
    Please, note that I have been trying to copy the application (only the relational repository) on a different server (servername2), where no Hyperion products have been installed.
    I was wondering whether any Hyperion component or what else (JDBC connector?) has to be installed on the target server, too. Any idea?
    Thanks a lot.
    Best regards

  • Replacing the Applications Icon in the Dock, not just with an Applications alias--two different things

    There is at least one answer to my question posted here, except it's not quite accurate. I too accidentally yanked my Applications folder from the Dock (which, by the way, is very easy to do, so in the way is the Dock. It's just very easy to drag it or any other icon in the dock out accidentally while working in a another programs, most particularly perhaps while working furiously back and forth across the screen in a grahics program. And hiding the Dock doesn't help because one is constantly bumping the sides of the screen with the mouse. In fact, choosing to hide the Dock might make matters worse because one forgets it's there. That's what happened--I accidentally grabbed it and pulled it out.
    I thought to put back an alias out of Finder and it works okay, but not like before. The old Applications icon wasn't just an alias (and I don't recall there being a shortcut symbol attached to the old Applications Icon). Now when I click on it I don't get the balloon that used to pop up dislaying all of my program as large icons. Instead I just get a Finder-style list of my applications such that it's harder to locate the program I want to use.
    What I really want back is the old Icon that worked as it used to work and that installs with the orginal installation of Snow Leopard. Does anyone know how to get that one back? Thanks,

    FYI - All Dock icons are aliases, however they don't show the curly arrow.
    To view your folder contents as you wish, right-click on the icon and choose the view options -
    "display as" 'folder' will just show the folder, 'Stack' will show the first application in the folder (usually Adress Book).
    View contenta as - list or grid - no fan option when the Dock's at the side (as it sounds like yours is).
    EDIT
    Incidentally, if you've dragged an alias to the Dock instead of the actual folder from Finder, you now have an alias pointing to another alias pointing to the Applications folder.
    Bit unnecesary.
    Message was edited by: noondaywitch

  • If I already have a particular app under one apple Id and I purchase the same app under a different Id for the same device, will it overwrite or replace the previous or will I have two of the same app on the same device??

    If I already have a particular app under one apple Id and I purchase the same app under a different Id for the same device, will it overwrite or replace the previous or will I have two of the same app on the same device?? 
    I'm asking because I purchased an app with an id that has been cancelled so I cannot update that particular app. I can purchase the app with my new id but I don't want to do so if its going to erase all the data I have with the previous purchase...

    Figured it out. Thanks.

  • HT4528 Can I put the same information on two different i-phones with different numbers and different ID's?

    Can I put the same information on two different i-phones with different numbers and different ID's?

    Yes and no it really depends on what information you are putting on the devices.

  • I have 4 computers running Adobe CC under two different accounts (as 1 account can only be installed on two computers) i need it on a 5th computer now, do i need another account or can i set up something so all 5 run from the same account making it easier

    I have 4 computers running Adobe CC under two different accounts (as 1 account can only be installed on two computers) i need it on a 5th computer now, do i need another account or can i set up something so all 5 run from the same account making it easier?

    Check into a Team account
    -http://www.adobe.com/products/creativecloud/teams/benefits.html
    -assign a new team member http://forums.adobe.com/thread/1460939?tstart=0 may help
    -Team Installer http://forums.adobe.com/thread/1363686?tstart=0

  • How to use same DFF for two different forms with :BLOCK.field reference

    Hi,
    Can anyone suggest how to use the same dff in two different forms by using :BLOCK.field reference.
    Scenario is the same DFF is referenced by two forms, viz. Form-1 & Form-2.
    Form-1 Reference Field is :BLOCK.field name, but the same block is not available in Form-2, which throws an error while opening it.
    Any pointers please.
    Thanks,

    In the environment I currently have access to do not have similar setup.
    Let say you setup the DFF1 default value to $HEADER.customer_name, the name of the DFF is CUSTOMER_NAME, description can be anything.
    In DFF2, default value should be a SQL, where you can reference the DFF1. For example, SELECT DECODE($FLEX.CUSTOMER_NAME, 'ABC', 1, 'DEF', 2, NULL) FROM dual
    In this case, you can reference the DFF1.

  • How to Launch an Integration Builder under two different java versions

    How to Launch an Integration Builder under two different java versions     1
    1. Situation     2
    2. How To Do     2
    2.1 jre preparation     2
    2.2 Put them into the system     2
    2.3 Execute a Java Web Start under jre 1.4.x version     3
    2.4 Change Java Runtime Versions     3
    2.5 Launch an Integration Builder     6
    1. Situation
    OS: windows 2000 pro – English
    Java version: jdk 1.5.x was already installed. (It’s not permitted to change.)
    I don’t have any authorization to install any software on the PC.
    But I need to use an Integration Builder.
    I already knew URLs of an Integration Builder (http://<hostname>:50000/rep/start/repository.jnlp).
    2. How To Do
    At this moment, an Integration Builder (XI 3.0) can be launch under jre 1.4.x environment (on windows).
    2.1 jre preparation
    I download j2re-1_4_2_10-windows-i586-p.exe from http://java.sun.com/j2se/1.4.2/download.html
    I installed it on my home PC and copied all files from C:\Program Files\Java\ j2re1.4.2_10\ into my USB.
    2.2 Put them into the system
    I pasted j2re1.4.2_10 folder from my USB into the windows 2000 pro system.
    Finally, I could list up all of javaws.exe under this system.
    c:\j2re1.4.2_10\javaws\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\bin\javaws.exe
    c:\Program Files\Java\jdk1.5.0_05\jre\bin\javaws.exe
    c:\Program Files\Java\jre1.5.0_05\bin\javaws.exe
    2.3 Execute a Java Web Start under jre 1.4.x version
    I executed c:\j2re1.4.2_10\javaws\javaws.exe .
    2.4 Change Java Runtime Versions
    Go to File-> Preferences -> Java
    As you can see, it indicates 1.5 version.
    Click [FIND] button.
    Click [NEXT] button.
    Click the j2re1.4.2_10 folder.
    Click [NEXT] button.
    A JRE Finder is able to find javaw.exe automatically. Or you can indicate C:\j2re1.4.2_10\bin\javaw.exe directly.
    Click [NEXT] button.
    Finally, there are two Java Runtime Versions. Now you need to uncheck the Enabled column of 1.5 version and check 1.4 version.
    Click [OK] button.
    Well, in the General tab, I selected None for Proxies.
    2.5 Launch an Integration Builder
    In the Location field, I typed the URL of an Integration Builder jnlp.
    http://<hostname>:50000/rep/start/repository.jnlp
    SAP Integration Builder comes up inside Applications area.
    Select it and click [Start] button.
    If you click Environment-> Integration Builder (Configuration), you can launch Integration Builder: Configuration.
    [PDF file location] with screenshots
    http://SDN.mobilian.org/SDN/How2LaunchIB.rar
    ===================Advertisement==========================
    How do you search SDN?
    What about [<b>SDN Search Widget</b>]?
    SDN Search Widget
    =========================================================

    I am not getting anywhere with deploying my application or
    applet.
    I have set up my bc4j project. It contains all my VO info,
    links, application module. (proj a)
    I then have another project with DbInfo in it(has all my rowset
    info), Multiple Frames, and my Applet.java file.
    Actually I have an Applet.java file and a Application.java file
    because I was seeing if both/either worked. Anyway they seem the
    same, except for that extra window that comes up when you run the
    applet.
    I follow the steps in the oracle directions (from earlier post).
    And all seems ok. But at ---->
    [*] Select the subdirectory under myhtml where your applet's HTML
    file
    is located, and enter the directory path of the 'staging'
    directory you
    created in step 3 above, if different from the default.</li>
    [*]Select the HTML files that JDeveloper created to run your
    applet.</li>
    [*]Select all of the Java source files in your project that make
    up the
    applet.</li>
    I have no HTML file associated with my applet, at least that I
    know of.
    So do I need to create one, or should it of been done
    automatically.
    Also, I trying to figure out what will be the best way to deploy
    my project. Applet or stand alone application is what my first
    choices have been so far. I have read that there is some issues
    with applets being served from a different server than the
    database. So a stand alone application was my front runner, but
    I haven't gotten either way to work yet.

  • Use two indicators for the same variable in two different VIs

    hello, I want to use two indicators for the same variable in two different VIs running at the same time
    should I use global variables?? I want to avoid because I have lot of variables and it would takes too much memory,I tried with this code but the value of the second indicator is not updated 
    I tried to use the queue and it works but the problem is as i said previously that i have many variables shoud I use a queue for each one??
    what should I do?
    thank you in advance
    cordialy
    Attachments:
    projet.zip ‏13 KB

    CrisSTine01 wrote:
    hello, I want to use two indicators for the same variable in two different VIs running at the same time
    I'm a huge fan of User Events to send updates to GUIs from who knows where.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

Maybe you are looking for

  • I would like too know how to RESTORE my iPod Touch?

    I would like to know how to RESTORE my iPod Touc, Can You Help Me?

  • Event applied to control references

    Hello! I built a VI that can run on its own or controlled by a superordinated VI. If there are valid references comming into the subordinated Vi these are used exclusivly, otherwise references to the controls of the superordinated VI are used. So ins

  • Dvd will not play in color

    We recently purchased a samsung plasma/HD/3D tv.  We have an older model Sony home theater system.  We understood that we would not be able to use the 3d feature until we upgraded  to a blue ray player but we thought everything else would work.  We h

  • Forms: How to add large text without getting wrapped

    hi Waveset/Sun IDM folks, I need to add a large text to the form via a Field at the bottom of the Form. So using Title and SubTitle form properties is not an option. When I use Label/Text/TextArea type of Fiels, I see that the text is getting wrapped

  • How to maintain format of ".rtf" file after save?

    Hello and thank you for taking your time. I have been facing some problems with my project for a while regarding the LoadFile  method . I have a project in Which I can can select several things and show them in a different RichTextBox. Now, through t