Deploying multiple apps on one instance of wls 8.1

We currently have have one huge application (one ear file) running on one instance
of wls 8.1. We plan to break this up in 3 different application (3 different ear
files). We are using split
development directory structure of weblogic 8.1. Out problem is, we have some
ejbs and some war files (like servlets anf jsps) which are common across all the
applications. How do we manage this ? Do we make a different application for this
common component ?
Thanks in advance.
Yogesh

Out of curiousity, why are you splitting up the ear?
How do you intend to package the common ejbs/webapps across the 3 ear files?
If you're going to copy the common files into each application, then i
would probably have a separate build.xml that builds the common pieces.
The other apps can just copy these common pieces into their build
directory. If the common pieces aren't changing very frequently, then
this is pretty nice.
-- Rob
Yogesh Ranjan wrote:
We currently have have one huge application (one ear file) running on one instance
of wls 8.1. We plan to break this up in 3 different application (3 different ear
files). We are using split
development directory structure of weblogic 8.1. Out problem is, we have some
ejbs and some war files (like servlets anf jsps) which are common across all the
applications. How do we manage this ? Do we make a different application for this
common component ?
Thanks in advance.
Yogesh

Similar Messages

  • Merging multiple apps into one app (or instance)

    Basically, i'm trying to create a 'social' app that combines the apps I use for Twitter, Facebook, Instagram and the default iMessages app.
    At the moment I've just made an app in Automator that just launches all the separate apps at once, and have them set out in a comfortable window configuration so I can see/access everything.
    Is there a way to somehow combine all these apps into one standalone app or one single instance? Just so I can have one little icon in the dock that manages all the apps (so I can open/quit them all at once just by using the one icon), and so it doesn't take up space on the dock when all the apps open.
    I've tried things like editing the .plist file in apps to hide their icon, but it causes most of the apps to function incorrectly. Also, as a temporary way to exit all the apps at once, I created another Automater app that closes them all simultaneously, but it's still not quite what I'm after!
    Hope that makes sense! Any help would be appreciated.

    One App to rule them, One App to find them
    One App to launch them all and in the dock combine them...
    Uh.  Yeah.
    What you want, if I'm understanding you, is an entirely new app that does the work of all the other apps.  Are you sure there's not a third-party social media app somewhere that does that?  It would seem like a natural development, though honestly I'm not into social media enough to appreciate whatever technical difficulties that might pose. 
    Barring that, you're limited.  The social media apps I know about tend to focus on user interaction, which means they're not going to take kindly to efforts to hide them from the GUI, and unless they are all applescriptable getting them to work together would be torturous at best..  Even a small app that watches the other apps and tries to mediate between them would need a protracted foray into cocoa to accomplish.  
    But maybe I'm not understanding you.  Could you give a better (more example-oriented) description of what you have in mind?

  • Deploying multiple apps on OC4J

    I am wondering what are "best practices" for deploying multiple applications using the standalone OC4J server. I was thinking of using one OC4J instance to deploy J2EE applications, but was recently informed that if any of the applications raise an unhandled exception or has memory leaks, then all applications will fail or slow down. Can I get some documentation or suggestions on how to approach this? Thanks in advance. Dan

    Yes, it is possible (and common) to run multiple WLS instances on the same physical hardware.
              It is also possible to run multiple applications within WLS.
              There are trade-offs both ways. WLS does offer some features to better allow isolation within the server. Specifically WLS 6.x and later allow configuring separate thread pools (and sizing them based on application priority). WLS 9.x supports this and a variety of further extensions based on WorkManager. I'd suggest searching for those topics in our docs.
              -- Rob
              WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • Custom logging, multiple apps in one file, different from server.log

    I have several applications running on my integration server. I would like to log from these apps to a single file (different file from server.log)
    I tried to use custom log4j logging, but there's a problem with the RollingFileAppender. Whenever a file is rolled, the backup copies are deleted. It probably happens because different classloaders load different apps and I configure the log4j in every app, but I don't understand classloaders.
    Here is a part of the log4j.properties file:
    log4j.appender.file=org.apache.log4j.RollingFileAppender
    log4j.appender.file.File=/path/log
    log4j.appender.file.maxBackupIndex=10
    log4j.appender.file.maximumFileSize=10485760and I configure the logger in every app by
    org.apache.log4j.PropertyConfigurator.configure( logPropertiesPath );(Is this wrong? Is it even possible to use one log file from different apps? The integration servers does it...)
    I don't need the log4j, if the internal logging can be set up to log app. messages to a different file and configured with a different layout pattern, it would be enough.
    Can anybody please help with my logging problem?

    I've tried this:
    I've put log4j.jar to the lib dir of the logicalhost and log4j.properties to another jar (my own) and put it to the lib dir too. I deleted the PropertyCOnfigurator.configure() line from the apps. Built it, manually deleted log4j.jar from the EARs. Then I deployed EARs, restarted the domain and ran the apps. They both logged to the same and correct file, but again the rolling didn't work. How is this possible? I thought that this way the IS should have one and only one instance of Log4j...

  • Connection pooling & multiple apps in single instance - many sessions

    Any feedback would be much appreciated from anyone with experience already with this situation and/or can provide some insight on this:
    Adhering to the trend of consolidating instances, we have a single consolidated instance with multiple apps. With connection pooling (we use apache & mod_perl), I suppose you have an option of creating some oracle db accounts that can be shared among multiple apps - that benefits you in reducing the numbers of total pooled db connections to the instance - but one very big drawback is that you have some apps, if sharing generic db userids, having access to tables they have no need to access.
    On another hand, you have the option (which is the approach we've taken thus far and, in my view, is definitely the way to go) of a distinct oracle account for each app - on the downside, that could produce many more total db sessions (& os processes) on the server as each new set of unique persistent pooled connections are created - but it benefits you in terms of security - which has a lot of weight - since each app account only has access to what it needs & nothing beyond that (the "least privilege" concept).
    We're not an "amazon.com" so we haven't had to deal with thousands of sessions within an instance so there's an element of the unknown here for us - some questions I have are: How can I accurately predict how many db sessions (& os processes) this particular solaris server can support? I realize kernel parameters need to be set high enough for this sort of environment but simply setting the parameters cannot be a true indication of what the server can support. How much memory is required for thousands of sessions? I'm trying to gauge how many sessions & processes we can currently support - and at what point we'll need additional memory, or an updated server, or at what point we need to start thinking about an additional server environment for new apps.
    I realize connection pooling is, by it nature, reducing the overall sessions required but as each unique db account is created, there will be set of persistent sessions out there and that will grow.
    Also if you have any insight on other things to think about when heading into the direction of lots of sessions (beyond kernel settings, other OS or db parameters that need to be reviewed, or some features to enable).
    I'm rambling so I'll stop right there; sorry about the length of the post. It's possible that the things to look at and consider are pretty straight-forward.
    Thanks in advance for any feedback on any of the above.
    -Rick Papaj
    [email protected]

    You better check the documentation available on OTN
    http://download-west.oracle.com/docs/cd/B25221_03/web.1013/b14432/threadpool.htm
    There are several options you can setup with pooling.
    hope this helps.

  • Is it possible to deploy multiple apps(ContextRoots) into a single stack?

    Hi,
    We want to deploy multiple Application Codes with different Context Roots to a single JavaStack using SDM.  The purpose for it is to support our multiple Test environments(AIT, AFT, Prod Regression or etc.) using a single JavaStack environment.  AIT will have AIT Context Root, AFT will have AFT Context Root and etc.  Is it possible to do so?  If so, how can we configure the SDM to support the deployment?  We already know how to change the *.xml file for different context root.
    Thanks
    J

    If the structure of the Excel sheets does not change from file to file then you can by having one ForEach Loop processing always the "Enrolled" sheet and another always the "Engaged" this is doable because the Excel OLEDB connector allows
    to pick individual sheets, it is problematic therefore when sheet names themselves change.
    MSDN has an example: https://msdn.microsoft.com/en-ca/library/ms345182.aspx
    Arthur
    MyBlog
    Twitter

  • Run multiple apps from one browser windows with 9ias r2

    We are running 9ias r1 with forms 6i as our production server. Users are able to access one html page with multiple links to their applications. They can run one application, keep it running, navigate back to the html page and run a second application.
    We are testing 9ias r2 with forms 9i, but when users try to navigate back to the html page to run the second application the first application closes.
    Is there a way to have 9ias r2 work the same as r1 and allow users to run multiple application from one html page?

    Hi,
    Thank you for posting in Windows Server Forum.
    You can take rdp of server 2012 R2 from Fedora Linux desktop by running Yum command or Gnome rdp support. Please check below article for information.
    1.  How to Use Remote Desktop (rdesktop) in Redhat/Fedora/CentOS
    2.  Remote desktop from Linux to windows using rdesktop and gnome-rdp
    3.  XRDP Installation: An Easy Remote Desktop Setup for Linux
    Note:
    Microsoft is providing this information as a convenience to you.
    The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Deploying J2EE application on one instance for Clustering

    Hi,
    I was just wondering if anyone attempted this before. We are going to have multiple clusters of iAS with J2EE applications on each of them. However the source will be hosted on a non-iAS, non-J2EE disk and on the iAS/J2EE cluster, we will have a virtual link to the source files. That way, we only need to put the source files in one area and have the J2EE be a virtual link to the original source.
    Thanks.

    Hi. Well someone here suggested we have an OC4J instance on a Linux machine and another OC4J instance on another Linux machine. Each of them does not contain the original J2EE application source to be deployed. It will have a mirror of the J2EE application with each source files (JSP, class files, images, etc) acting as a virtual link to a centralized location to just store the application source.
    So to visualize, we have two different OC4J clustered instances with the empty source files pointing to one centralized location of the source files.
    This would only help us deploy in one location as oppose to each clustered location. Anyone ever tried this one before?

  • Multiple port for one instance

    hello there,
    Here is my requirement...
    If one of my master ldap went down for couple of hours and when i bring it up... all the arrowpoint traffic is routed immediately to this server and hence whatever changes happend in the secondary server was not showing up immediately in this primary master server. To avoid this issue.. can i use a different port for replication only and once the replication is completed , then i want to allow the client to access the main port.
    Is it possible? Any idea? Thank you for anyone input.
    SS

    1. EITHER multi-home your network card so that it has multiple IP addresses
    Launch each instance of ldap with the commandline option to bind this instance to a particular IP address
    2. OR provide alternate ports for each instance of ldap
    This is easier to do . However, it is not recommended for production systems. Usually used in development.
    If the scenario is production environment use first method.
    If it is a development environment try the second.
    See the port properties. Check the ldap port settings.
    NOTE: ldap has a known bug. To fix this get into sun site. This bug is fixed.
    Thanks
    --Britto                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Multiple Cameras with one Instance of FME

    Hello,
    I am using FME 3.0 for upstreaming to Justin.tv and I am very satisfied, and it works perfectly.
    Now I'd like to add effects, like Captions to my Stream and switch between different cameras. I have tried ManyCam which provides me a virtual webcam which I can easily add as Source to FME, but if I switch sources in ManyCam it needs several seconds to start the inactive camera and shows a black screen until the chosen camera is active.
    Additionally I'd like to use effects when switching from one camera to another like fading in, or gemoetrical effects, like door opening etc.
    The main problem is that I cannot see the live pictrure of an inactive camera in ManyCam,
    What I am asking you for is to recommend me software which provides multiple camera feeds to combine/switch live to a virtual webcam.
    I know that wirecast supports all this, inclusive the upstream to my server, however I'd like to stick to FME and I cannot afford wirecast. My budget would be less than US$200.
    Anything you can recommend?
    Thank You
    Wolfgang

    Installation guide:
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000718044&_OBJECT=011000358700000291922009E
    page 37:
    4.1.7 SAP Solution Manager Client Strategy
    SAP delivers a client with a standard configuration for SAP Solution Manager as part of the installation
    process. Client 000 is the initial configuration client, and client 001 is provided for productive use.
    Additional clients can be created if desired
    So I don't see an issue...but i would not recommend it...

  • Multiple clients on one instance of SAP SolMan

    Hello,
    I have doubt about the conductibility of SAP Solution Manager to support more than one client, as an example, ones for Development and the other for production. I think that the limitation is due to the Java side which does not allow to perform more than one client.
    Up to know, I have browsed SAP Solution documents and have not found any indication about this kind of restriction, more than 1 client per instance of SAP SolMan.
    Look forward in hearing from your insight comments.
    Regards,
    Rodolfo Neuhaus

    Installation guide:
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000718044&_OBJECT=011000358700000291922009E
    page 37:
    4.1.7 SAP Solution Manager Client Strategy
    SAP delivers a client with a standard configuration for SAP Solution Manager as part of the installation
    process. Client 000 is the initial configuration client, and client 001 is provided for productive use.
    Additional clients can be created if desired
    So I don't see an issue...but i would not recommend it...

  • Biztalk recieve multiple files in one instance

    Hi,
    in my app, I need receive one xml file and few pdf files, problem is that count of pdf files can change. How can I handle this in BizTalk.
    Thanks.

    Hi 
    As i see, you need to receive the pdf files from a folder location which will be decided from the content of your first input xml file. So it is dynamic and the no of files may also vary?
    I think the file mask and the receive location address (folder location to receive files) can be set dynamically out of the box. There is a similar thread of discussion
    here, Please have a look. 
    IMO a workaround would be using .net class to receive/read/move the pdf files dynamically and use that class in your BizTalk orchestration. I have't tried this but I am sure this should work here. 
    HTH,
    Naushad Alam
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or
    Mark As Answer
    alamnaushad.wordpress.com

  • Deploy multiple times with one set of bean classes?

    Let's say I have MyBean, MyBeanHome and MyBeanImpl. Is it OK if deploy them
    twice as follows (ejb-jar.xml). Notice the difference in ejb-name. Then in
    the weblogic-ejb-jar.xml I define certain attributes differently, such as
    clustered or not.
    Thank,
    Bill
    <session>
    <description>My Session Bean</description>
    <ejb-name>MyBean</ejb-name>
    <home>myco.myserver.MyBeanHome</home>
    <remote>myco.myserver.MyBean</remote>
    <ejb-class>myco.myserver.MyBeanEJB</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    <session>
    <description>My Non-clustered Session Bean</description>
    <ejb-name>MyBeanNC</ejb-name>
    <home>myco.myserver.MyBeanHome</home>
    <remote>myco.myserver.MyBean</remote>
    <ejb-class>myco.myserver.MyBeanEJB</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>

    Two beans with the same bean and interface classes, may be deployed as different
    beans if
    the <local-jndi-name/>
    or <jndi-name/> in the weblogic-ejb-jar.xml is different.
    thanks,
    Deepak
    "Bill" <[email protected]> wrote:
    Let's say I have MyBean, MyBeanHome and MyBeanImpl. Is it OK if deploy
    them
    twice as follows (ejb-jar.xml). Notice the difference in ejb-name. Then
    in
    the weblogic-ejb-jar.xml I define certain attributes differently, such
    as
    clustered or not.
    Thank,
    Bill
    <session>
    <description>My Session Bean</description>
    <ejb-name>MyBean</ejb-name>
    <home>myco.myserver.MyBeanHome</home>
    <remote>myco.myserver.MyBean</remote>
    <ejb-class>myco.myserver.MyBeanEJB</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    <session>
    <description>My Non-clustered Session Bean</description>
    <ejb-name>MyBeanNC</ejb-name>
    <home>myco.myserver.MyBeanHome</home>
    <remote>myco.myserver.MyBean</remote>
    <ejb-class>myco.myserver.MyBeanEJB</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>

  • Deploy multiple EJBs

    Hi there,
    after I got my first session bean running, I want it to make use of an entity bean. I want to deploy all beans at once, so the can share parts in the xml-deployment descriptor.
    Unfortunately 'deployebj' (or in detail ejbdescriptor) complains saying :
    'Can not deploy multiple beans in one deployment descriptor'
    Has anybody an idea how to fix this as this is required for ejb1.1 and j2ee conformance, about which oracle says IAS9i complies to - so it should be possible.
    Stefan

    Hi,
    I have a doubt here while deploying multiple EJBs in one instance of Oracle 10g Application Server (either in OC4J standalone or in complete suite).
    In my case, I have multiple jars and each jar has its own ejb-jar.xml and in this case, I was not able to figure out how to write my jndi.properties.
    We want to have only one jndi.properties file. We do a look-up using RMIInitialContextFactory. Is it ok, if I give the following in my jndi.properties for provider url?
    java.naming.provider.url= opmn:ormi://<opmn_host>:<opmn_port>:<oc4j_instance>/<application-name1>, opmn:ormi://<opmn_host>:<opmn_port>:<oc4j_instance>/<application-name2>, opmn:ormi://<opmn_host>:<opmn_port>:<oc4j_instance>/<application-name3>, [and so on (till application-name[b]n) for all the EJBs present.]
    Will this work, and if it is so, is it correct?
    If not, can some one please help me out for this particular scenario.
    Thanks a lot for participation.
    Regards,
    Prashanth Babu.

  • Multiple applications on one vs several WL instances

    Im working with several different applications and I'm wondering
    whats the best way of deploying different applications on a WL-environment.
    Will the best way of deploying be to hva one instance pr. application,
    or just a single instance with several applications ?
    The applications use many of the same classes and have lots of
    links to eachother.
    With regards
    /Thor-Arne

    It depends on type of different application you have ? If all are
    similar type i.e load , business application. Then you can have
    one configuration file for all application. In that case, your
    one instance can work.
    If your business application have different availability , load
    then you may need different configurtation file. So in that case,it
    make more sense to have more than 1 instance.
    Thanks
    JP

Maybe you are looking for

  • Can I use same LR 5.4 catalog across Mac and Windows PCs?

    Newb question here. I'm just learning LR, and have installed LR 5.4 on both my Mac and on my Thinkpad (running Win 8.1). Can I create a single LR catalog on a detachable drive, and then use it to edit  my LR work (i.e., moving it between machines) on

  • Can i create a new currency symbol in adobe acrobat XI pro

    the symbol for malaysian ringett does not existing in adobe.  i am creating a form where currency amounts are added.  can i create the symbol, and how?

  • All New iMac Intel ?

    Heyy Everyone. I am planning to buy a new iMac Intel 17inch. I really like its new hardware/software specs but i have a couple of questions first before purchasing. I have previously used G4 and G5 iMacs now that they are intel is everything still co

  • Multi-language subtitled DVD

    Hi I am building a multi-language DVD which contains numerous dramas all subtitled into 8 different languages. The dvd has a language selection page linking to scripts for each language and then the first of two scene selection menus. This link gives

  • Responsibilities missing in Oracle Applications

    Hi, I have a Production Environment of Oracle Application in 12.0.4. After assigning certain responsibilities, we are not able to view those responsibilities after logging into application. As per metalink note: 417439.1, I have followed the below st