Deploying JEE application and SOA Applications on the same SOA Dom

Are there known issues in deploying SOA Applications and Weblogic/JEE application on the same SOA Domain.
Couple of the issues that I can think of is if that
If SOA Domain is unstable it will also impact JEE applications.
SOA Domain depends on the SOA DB and there is no such db dependency for a weblogic server.
In the past we have been creating seperate domains for Weblogic and Weblogic Integration domains.
Anythoughts ?
Any information on this topic would be greatly appreciated.
Thanks
Pavan

Yes, it is possible to do this using virtual servers.
In your example, you will have two different virtual servers and two http listeners (localhost/8181 and localhost/8282).
When you deploy a war file, you can specify which virtual server to use. (--virtualservers option on asadmin deploy command, admin console has a virtual server text box on deployment screen).
After deployment, the applications will only be available on the http listeners that map to the virtual servers they were deployed to.
Can you also post the problem that you are running into with 8.1 update 2?
Hope this helps,

Similar Messages

  • Servlet jndi lookup to remote EJB, servlet and EJB not in the same application

    Hi,
    I think that the subject explain my problem.
    I have Oracle IAS9i 9.0.2.0.0, and JDeveloper 9.0.2.829
    I have deployed and EJB in IAS9i and i want to use from the developer machines, which have JDeveloper.
    how can i to do remote calls from JDeveloper?.
    I have modifed the orion-application.xml, and added remote=true.
    I have modifed the rmi.xml and added the hosts where the Jdeveloper placed.
    Any ideas?
    Thanks and cheers
    P.D The app server and jdeveloper are in the same net.
    if it is posible replys me to [email protected] too.

    Steps to access a remote EJB from within OC4J
    ++++++++++++++++++++++++++++++++++++++++++++++
    1) Deploy EJB application (ApplicationRemote) to remote container (REMOTE)
    "java -jar admin.jar -deploy ormi://REMOTE.hostname:REMOTE.port REMOTE.username REMOTE.password -deploy -file ApplicationRemote.ear
    -deploymentName ApplicationRemote"
    2) Ensure that local application (ApplicationLocal) has ejb-ref tags for remote EJBs accessed (in web.xml or ejb-jar.xml)
    3) Deploy to local container (LOCAL) an empty application (ApplicationEmpty) with the same name as the remote application (ApplicationRemote)
    "java -jar admin.jar -deploy ormi://LOCAL.hostname:LOCAL.port LOCAL.username LOCAL.password -deploy -file ApplicationEmpty.ear -deploymentName
    ApplicationRemote"
    5) Deploy local application (ApplicationLocal) to local container (LOCAL)
    "java -jar admin.jar -deploy ormi://LOCAL.hostname:LOCAL.port LOCAL.username LOCAL.password -deploy -file ApplicationLocal.ear -deploymentName
    ApplicationLocal"
    4)Restart local container
    ApplicationEmpty should consist of just an application.xml file - no modules. The same file can be deployed with different application names for all the remote
    applications that must be accessed.
    ApplicationLocal should access the remote EJB by using the following JNDI properties
    java.naming.factory.initial = "com.evermind.server.rmi.RMIInitialContextFactory"
    java.naming.provider.url = "ormi://REMOTE.hostname:REMOTE.port/ApplicationRemote"
    java.naming.security.principal = "REMOTE.username"
    java.naming.security.credentials = "REMOTE.password"
    regards
    Debu Panda

  • How can i deploy two different versions of the same application on the same server??

    I have two different versions of an application. One is a released version. And another version under development. I need to port this version of the application to the same server. I'm using the same classes and packages(except for some new ones). Is it sufficient if i change the name of my ear(application name). Or should i change my code also.

    Hi
    You can repackage the new versions of ear,jar and war with different names. I hope that should work well.
    Cheers
    -pradeep

  • I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • How can I test a RTP(send&receive) application on the same computer?

    I an writing an application that lets one computer (A) sends a media file to another computer (B) and B receives it and play it.
    But how can I test this application on the same computer
    Eg.Transmitter: localhost 43000
    Receiver: localhost 43000
    It will retuen an error since the port number is alreeady used by another program.
    I know if I test it on different computers, it should be fine, but how can I test it on the same computer?

    JMStudio sends RTP packets from the same UDP port as the specified in the destination port, so you can't try it in the same computer. The examples provided in http://java.sun.com/products/java-media/jmf/2.1.1/solutions/index.html follow this rule aswell, but it's easy to modify it:
    rtpMgrs[streamid]=RTPManager.newInstance();
    localAddr = new SessionAddress( InetAddress.getLocalHost(),localDataPort);
    //By deafault, in the examples, they use  remote DataPort instead of localDataPort.
    //You can specify localDataPort to any different free port number, or to
    //SessionAddress.ANY_PORT if you don't mind the port number
    remoteAddr  = new SessionAddress(destIpAddr,remoteDataPort);
    rtpMgrs[streamid].initialize(localAddr);
    rtpMgrs[streamid].addTarget(remoteAddr);

  • How to open multiple applications at the same time

    I need to open several applications at the same time: Dreamweaver, BBEdit, and Acrobat. Is there a way to smooth this process, so pressing an icon in the dock will open them all for me?

    You could create an applescript to do it.
    tell application "Dreamweaver's Full Name"
    activate
    end tell
    tell application "BBEdit's Full Name"
    activate
    end tell
    tell application "Acrobat's Full Name"
    activate
    end tell
    Replace the quoted text (leaving the quotes) with the full name of the application, and save the applescript as an application bundle, and put it in your dock.
    NOTE: You may have to put the full path to the application for it to work (I.E. /Applications/Dreamweaver.app). If you do, encase the full path in quotes.
    Good luck!
    Message was edited by: joshz

  • How can I run two independant LabView applications from the same computer, without taking a performance hit?

    I have two identical, but independant test stations, both feeding data back to a Data Acquisition Computer running LabView 6.1. Everything is duplicated at the computer as well, with two E-series multifunction I/O cards (one for each test station) and two instances of the same LabView program for acquiring and analysing the data. The DAQ computer has a Celeron processor w/ 850Mhz clock and 512MB memory, and is running on Windows NT.
    I have noticed that when I run both the applications simultaneously, I take a substantial performance hit in terms of processing speed (as opposed to running just one program). Why does this happen and how can I prevent it? (In t
    his particular case, it may be possible to combine both the tests into one program since they are identical, but independant, simultaneous control of two different LabView programs is a concept I need to prove out).
    Thanks in advance for any tips, hints and spoon feedings (!)....

    Depending on your application, you may or may not be able to improve things.
    Firstly, each task requires CPU time, so a certain performance difference is guaranteed. Making sure you have a "wait until ms" in every while loop helps in all but the most CPU intensive programs.
    Secondly, if you are
    1) streaming data to disk
    2) Acquiring lots of data over the PCI bus
    3) Sending lots of data o ver the network
    you can have bottlenecks elsewhere than in your program (limited Disk, PCI or Network bandwidth).
    Avoid also displaying data which doesn`t need to be displayed. An array indicator which only shows one element still needs a lot of processing time if the array itself is large.... Best is to set the indicator invisible if this is the case.
    I think
    it would be best if you could give some more information about the amount of data being acquired, processed and sent. Then maybe it will be more obvious where you can optimise things. If you are running W2000, try activating the task manager while the program(s) are sunning to see where the bottleneck is.
    Shane
    Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

  • How can 2 people debug applications at the same time?

    Hello,
    We are using the NWDS to develop our portal applications.
    When one developer debugs a certain program the second can't, he receives "Unable to connect to remote VM".
    Is it possible to have 2 people debugging different applications at the same time?
    Roy

    Yes,
    (but I usually define application server as a java server process, and server as physical server).
    -go into configtool
    -select one of the instances
    -go to the Server menu and select Add server
    Then you have a new server node. Select this one in the configtool and go to the servers debug tab. Set it to debugable and define a unique debug port (open command prompt and run netstat -an | find "LISTENING" to find out which ports are in use).
    Regards
    Dagfinn

  • Pass Username & Password to a Different Application in the Same Workspace

    Can I pass the username and password from a main menu to open a different application in the same workspace. I'm trying to prevent the user from having to logon again. My main menu has links to different applications within the same work space.
    Thank you

    Anonymous - One way to do it (if you are using HTML DB's built-in session management) is to edit each application's authentication scheme and type in the same cookie name in the cookie name field (use any name you like). Another way is to use Single Sign-On.
    Scott

  • MacBook Pro Freezes while using more than two applications at the same time

    Over the last two weeks my MBP has been freezing every time i use two or more applications at the same time. For e.g. my whole system freezes from time to time when i use itunes and safari at the same time. This problem never existed before and has just started recently and is really annoying. What can i do to fix it?

    Rather than re-installing Safari have you tried simply "Resetting" it (head to "Reset safari" under the "Safari" menu). It is possible that something in your user folder that supports Safari is really the cause of the problem. Re-installing Safari won't deal with this, but re-setting it can.
    In fact the first thing you should try is simply choosing "Empty cache..". If your cache files are corrupted then this in itself could explain the behaviour.
    If you choose to do the Reset first try it with just "Empty cache" and "remove all website icons" selected. This will reduce the amount that you will "lose" in the process. (Cookies, history, etc). Add in additional options if the first attempt doesn't fix it.
    Cheers
    Rod

  • Copy an Application in the same portal?

    My application seelct data from tables in a specific schema. I want to create a demo, with the same forms, etc but with different tables (to allow me to change names, ids, etc). I recreated the tables as another user, but my LOVs all access the original. My plan is to recreate the application on the same portal server.
    When I tried to use appexp and appimp (CHECK) with a different app, eveything has the same portal IDs, so errors out with ID nnnn already exits. Is there a way to copy an app?
    Gary

    Hi Andrew
    Try the following:
    Use export / import instead of the copy function.
    Between the two steps edit the export script by replacing all appearances of "old_schema" by "new_schema".
    Note: Editing the export script is a efficient way to make some changes. We use this step e.g. to replace the public templates when moving applications from the test to the production environment in order to respect the changed navigation logic.
    Thanks
    Peter

  • Separate CSS files for Differenct Applications in the Same Workspace

    I am working in APEX 4.0, using Theme 4 (Topaz), primarily with the region template "Top Bar." The application I am working on has gotten so large that I decided to break it into two applications. So I copied the original application and then deleted the pages that I did not want in the second application. I then modified the authentication for a single login. One of the nice things about the Top Bar template is that you can color the background. I had a blue background in the first application and wanted to use a differenct color in the other. So I created a second CSS file and uploaded it to the Cascading Style Sheets area of the Shared Components file for the second application. Turns out that both it and the style sheet for the first application now show up in the CSS file area. The CSS file for the second application has no effect. Here is the CSS code:
    .rc-content-main
          background-color: #E5E5AA;
         }I also tried giving the region on each page in the second application a static id and then identifying them in the CSS file by the id. That didn't work either, at least not yet. Sometimes it takes the server a while to refresh.
    Question: For two applications in the same workspace, can there be separate CSS files? If so, how do I set them up so that each responds only to one of the applications?
    Edited by: Doug on Nov 14, 2012 4:54 AM
    Edited by: Doug on Nov 14, 2012 7:16 AM

    Hello,
    If you upload your file to Shared Components >> Cascading Style Sheetst then:
    edit your page template in the header section and just before +*</head>*+ tag  add :
    <link rel="stylesheet" src="#WORKSPACE_IMAGES#MY_FILE.css" type="text/css" />And that will be applied for all pages that have the same Page Template.
    You can edit a page and put this in the header section to be applied only for a that page:
    <style>
    <link rel="stylesheet" src="#WORKSPACE_IMAGES#MY_FILE.css" type="text/css" />
    <style>If the file is on your web server then replace #WORKSPACE_IMAGES# with #IMAGE_PREFIX#
    This should be helpful to you:
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_sub.htm
    Best Regards,
    Fateh
    If you believe that my answer is correct or helpful to you, then please mark it as helpful or correct...

  • Navigate to another application in the same window

    How can I navigate to another application in the same window? I know how to open in a new browser.
    Also, I cannot give a linktourl UI. I have to do it on click of a button.
    I can get the URL. How to go there now?
    Thanks in adv.

    Hi Shweta,
    You can get a URL to a webdynpro application and also navigate to it. I used  below code snippet,
    METHOD onactionclick .
    * Data Declarations
    DATA:
    lr_ref TYPE REF TO ig_ZWDA_APP1,
    str TYPE string.
    *Get the URL of the Application
    CALL METHOD cl_wd_utilities=>construct_wd_url
    EXPORTING
        application_name = 'ZWDA_APP2'
    IMPORTING
       out_absolute_url = str.
    *Reference of Window
    lr_ref = wd_this->get_ZWDA_APP1_ctr( ).
    * Fire Exit Plug
    lr_ref->fire_go_exit_plg(
    url = str
    ENDMETHOD.
    u can modify it so that ur current application is not closed or that new application gets launched in seperate browser window.
    Greetings
    Prashant

  • Application Builder Question: how to install several applications in the same computer?

    Hello,
    I have two LabView applications and its installers, all of them generated with the aplication builder. Both works fine: I can install them in several computers without LabView. But when I try to install both in the same computer, the result is that I only have the last application I've just installed. I want to get the two applications installed at the same time in the computer. Is it possible? Anyone can help me?. I'm using LabView 2009 SP1
    Thanks in advance

    aespin wrote:
    Exactly that. I'm triyng with several options in the Application and Installer builder, but it seems it does not work
    It works quite well. We have installed over a dozen different applications on the same computer. I suspect you have something configured incorrectly in your installers and possibily the builder itself. We would need to see those to see what is not correct. One possibity is that your builds are generating the same GUID for the applications. Therefore even though the names are different the installer thinks they are the same thing.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Is there any way to load just ONE java application at the same time?

    I'm using 'jnlp' to load java applications and I want to load just one application at the same time.
    Is there any way to do that?
    I have been trying to use 'findLoadedClass' but it doesn't work.
    Also I've tried to make a file when a application is loading and delete when the application exits.
    but it has a problem when the user terminates the application.
    (the file can't be deleted...)
    The applications are using socket to receive data, all of them uses same port. That's why I want to load just one application at a time, otherwise they work wrong way.

    Do you actually mean you want to make sure that only one instance of a GIVEN Java program is running at one time? If so then search this forum becuse this question comes up frequently.

Maybe you are looking for

  • Federation of Essbase with OBIEE 11g

    Hi, I have a ragged unbalanced Accounts hierarchy in the Essbase cube which I have imported into the OBIEE repository besides the Scenario,Version,Entity,Period and Year hierarchies. Now I have a detail table in the Oracle database with Account,Versi

  • Determine Partner from Ship to Party in Sales Order

    Hi All, I am in need of help. I have following requirement for Partner Determination. 1. In Ship to Party I have a Partner ZI     I need system to get that ZI partner in my Sales Order. I have setup the Origin Field to SH. But still it doesn't get it

  • User without the Chief position in org id to view the resources under him.

    Hi, The requirement is: A person who is playing the role of a crew leader should be able to fill the time sheet of his crew. This person will not be given the chief position for the org id that he is tagged to. There will be different person who will

  • New to SAP B1

    Hi,   Our company is fairly new to SAP B1 and I get the fun tasks of coding middleware for it Anyway... Where do I start?  I'll have to look through the SDK and I assume there are examples to work with it of course. I am currently using VisualStudio

  • ORA-12154: TNS:Could not resolve service name. (WIS 10901).

    HI Gurus, we have the following scenario... Weu2019ve installed Busines Objects EDGE 3.1 SP3. The server of this installation is MS Windows Server 2003 Enterprise Edition SP2, Intel ® Xeon Enterprise TM CPU 2.80 GHz 6.5 RAM. In the Server we have SAP