Setting up the Apache HTTP Plugin for several BEA Servers

Hey together,
i would like to setup the apache http plugin for several bea-servers.
I am running apache 1.x on my hp-ux system. There are 2 bea-server-domains on this box and both should be proxied by the plugin simultaneously.
As far as i know it isn't possible to run 2 or more instances of the apache webserver. I heard of virtualhosts, maybe i should try this one out.
Somebody knows how to deal with this problem or does any1 know if virtualhosts could cope with my needs?
Thanks in advance

Ok here i am again and i'm stuck. Here my wishes again:
there are 2 weblogic-instances (domains) running on a machine xxx, instance A listening on port 8041, instance B listening on port 8051. I want to configure apache virtualhosts in combination with weblogic plugins, so that request with /ld will be sent to instance A while requests with /ldd will be sent to instance B. Both are no clusters. Therefore i tried it with the following configuration (httpd.conf):
<VirtualHost xxx:8080>
     DocumentRoot "/opt/hpws/apache/htdocs"
     ServerName xxx:8080
     <IfModule mod_weblogic.c>
     WebLogicHost xxx
     WebLogicPort 8041
     #MatchExpression *
     #PathPrepend=/test2
     </IfModule>
     <Location /ld>
     SetHandler weblogic-handler
     PathTrim /ld
     </Location>
</VirtualHost>
# VirtualHost2 = xxx:8090
<VirtualHost xxx:8090>
     DocumentRoot "/opt/hpws/apache/htdocs"
     ServerName xxx:8090
     <IfModule mod_weblogic.c>
     WebLogicHost xxx
     WebLogicPort 8051
     #MatchExpression *
     #PathPrepend=/test2
     </IfModule>
     <Location /ldd>
     SetHandler weblogic-handler
     PathTrim /ldd
     </Location>
Doesnt really work. Can some1 help please?
Thanks

Similar Messages

  • Apache HTTP proxying for load balancing only to a group of non-clustered WL servers

              Hi,
              We're running WL Server 6.1 SP 2 on Solaris 2.8.
              For the Apache HTTP proxy plugin, if you use the WebLogicCluster http.conf option,
              do the WL servers you want to load balance across have to be part of a WebLogic
              cluster (if you are prepared to do without failover, as I know it would need to be
              a proper WL cluster to replicate session info for failover). Can you load balance
              across a group of non-clustered WL servers, and maintain the user session to the
              one WL server so that it doesn't switch between servers on alternate requests for
              the same user session, or must the servers be configured as a WebLogic cluster?
              Paul
              We find that if you have a collection of WL servers that are not configured as a
              cluster, that it will load balance alternate requests to each server, but it will
              not pin a user to a single machine according to their session so for 2 servers, 2
              differetn sessions get created, one on each machine.
              Is this because it doesn't normally do this, but sends the user alternately to a
              primary then secondary which works in a cluster because the session is replicated.
              I thought the secondary was only used when the primary failed.
              

    We're running WL Server 6.1 SP 2 on Solaris 2.8.          >
              > For the Apache HTTP proxy plugin, if you use the WebLogicCluster http.conf
              option,
              > do the WL servers you want to load balance across have to be part of a
              WebLogic
              > cluster (if you are prepared to do without failover, as I know it would
              need to be
              > a proper WL cluster to replicate session info for failover). Can you load
              balance
              > across a group of non-clustered WL servers, and maintain the user session
              to the
              > one WL server so that it doesn't switch between servers on alternate
              requests for
              > the same user session, or must the servers be configured as a WebLogic
              cluster?
              You don't have to use the clustering option. To get failover, you'll have to
              use the JDBC persistence option of WL.
              > We find that if you have a collection of WL servers that are not
              configured as a
              > cluster, that it will load balance alternate requests to each server, but
              it will
              > not pin a user to a single machine according to their session so for 2
              servers, 2
              > differetn sessions get created, one on each machine.
              >
              > Is this because it doesn't normally do this, but sends the user
              alternately to a
              > primary then secondary which works in a cluster because the session is
              replicated.
              > I thought the secondary was only used when the primary failed.
              The primary/secondary stuff requires clustering. If Apache continues to
              "load balance" after the first request, you need to either use JDBC session
              persistence or use a different load balancer (like mod_jk for Apache or a
              h/w load balancer with support for sticky).
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com/coherence.jsp
              Tangosol Coherence: Clustered Replicated Cache for Weblogic
              "Paul Hammond" <[email protected]> wrote in message
              news:[email protected]...
              >
              

  • I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account. I can receive mail in this account on my iPad and by signing into aol on safari. It's obviously a glitch in Apple

    I have 3 mail accounts in apple mail. One of them has had the spinning ball going for several days and I cannot receive mail in this account or delete messages etc. For some  reason, I CAN send mail on Apple mail using this account, although it takes several minutes. I can receive mail in this account on my iPad and by signing into aol on safari and internet explorer on my office PC. It's obviously a glitch in Apple's Mail. I've deleted this account and reopened it in Mail on my Mac Pro with no difference. Any suggestions would be greatly appreciated, this E amil account is major to my business.

    http://support.apple.com/kb/TS3276
    sounds like a corrupt database or index
    the glitch is your home folder and mail folder, esp look at syncservices
    I'd post in the mail or Lion forum where you will find similar issues being discussed.
    http://www.apple.com/support/mail

  • Installing the Apache HTTP Server Plug-In as a Dynamic Shared Object

    My environment is: Windows 2000 Server SP3 + Apache 2.0.45 + WebLogic 7.0 SP2
    I followed the install guide.
    1. Locate the shared object file for your platform. >>> No problem
    2. Enable the shared object. >>> No problem
    3. Install the Apache HTTP Server Plug-In in the Apache server with a support
    program called apxs (APache eXtenSion) that builds DSO-based modules outside of
    the Apache source tree, and adds the following line to the httpd.conf file:
    >>> I don't know how to do this. where can I find apxs,
    >>> and should I add "AddModule mod_so.c" in httpd.conf
    >>> I did it, but Apache -t tell me:
    >>> Syntax error on line 173 of D:/Program/Apache/Apache2/conf/httpd.conf:
    Invalid command 'AddModule', perhaps mis-spelled or defined by a module not incl
    uded in the server configuration
    I don't understand the 4th step, where can I find 'perl' and how to use it?
    thanks.

    For Apache 2.x I think you use LoadModule instead of AddModule. That's what
    the docs say anyway.
    "muli" <[email protected]> wrote in message
    news:3ed558aa$[email protected]..
    >
    My environment is: Windows 2000 Server SP3 + Apache 2.0.45 + WebLogic 7.0SP2
    >
    I followed the install guide.
    1. Locate the shared object file for your platform. >>> No problem
    2. Enable the shared object. >>> No problem
    3. Install the Apache HTTP Server Plug-In in the Apache server with asupport
    program called apxs (APache eXtenSion) that builds DSO-based modulesoutside of
    the Apache source tree, and adds the following line to the httpd.conffile:
    I don't know how to do this. where can I find apxs,
    and should I add "AddModule mod_so.c" in httpd.conf
    I did it, but Apache -t tell me:
    Syntax error on line 173 ofD:/Program/Apache/Apache2/conf/httpd.conf:
    Invalid command 'AddModule', perhaps mis-spelled or defined by a modulenot incl
    uded in the server configuration
    I don't understand the 4th step, where can I find 'perl' and how to useit?
    >
    thanks.

  • First time I press the space-bar the text entry hangs for several seconds

    Hi,
    When entering text, the first time I press the space-bar the text entry hangs for several seconds.
    From then on, there are no problems when entering text.
    iPhone 3G, iOS 4.2.1, no automatic correction and no spell checking.
    Thanks,
    Ofir

    Didn't resolve the problem
    There was some duplicated fonts fixed, but there wasn't the problem.
    Right now i'm writin this in Firefox and here is fine. Couldn't do this in Safari.
    I did make a video showing the problem.
    Also strange is the fact that in some tabs there isn't (aparently) the problem in Safari.
    Any other ideas?
    Tks
    http://gallery.me.com/kincas#100067/Spin%20beach%20ball

  • Getting increasingly frequent system shutdown with appearance of the apple splash screen for several minutes then back to logon in the middle of using a variety of APPs or just walking on Safari.

    Using an IPAD 2 running 5.0.1 is frequently shutting down in the middle of a variety of Apps and showing the Apple splash screen for several minutes. This happens occasionally at inopportune times. Once the splash screen clears it goes back to the logon screen and the App that was open is closed. Has anyone else encountered this? Is there a resolution?

    RockHunter wrote:
    This happens occasionally at inopportune times.
    I don't think that there is ever a good time for this to occur.
    What do you mean the Apple splash screen? You see the Apple logo on the screen?
    It appears as though your apps are crashing. Have you tried quitting apps and restarting? Reset the iPad?
    Quit all apps and restart. Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Set up the output GR slip for RE (customer return) Order Type

    Dear Experts,
    I need to set up the output GR slip for RE (customer return) Order Type
    Kindly let me know how can I do this in SAP
    Regards
    Shetty

    Hi,
    As I understand your question, you need to set up an output type for printing Goods Receipt in Sales Order (RE) - perhaps when the RE order is saved. For this, you can follow the following steps. Also you need to take the help of an ABAPer to develop a form which prints as per your requirement.
    For configuring the output, follow the steps
    a. Go to SPRO>Sales and Distribution > Basic Function > Output Control > Define Output type.
    b. Create a new output type (Eg: ZTRE)
    c. Create a new Access Sequence and put in the required condition tables... The Key combination may be Document Type / Customer or Document Type /  Sales Orgnaization / Distribution Channel. etc.
    d. Assign the access sequence to the new output type.
    e. Create a new ouput procedure and assign new output type to it.
    f. Assign this new output procedure to the document type.
    g. In Tcode: VV11 maintain the condition record for Output type ZTRE.
    When the output type is created, a form and a program needs to be assigned to it so that the requirement of GR slip gets printed. You have to take the ABAper's help for the same. You have to mention the fields which have to be printed on the GR Slip. You can do the same for delivery document as well.
    Else you can go to Tcode: NACE to do the same configuration. You have to select V1 for Sales documents.
    Hope this answeres your question
    Thanks
    Mukund S

  • Hi Everyone, Just wanted to seek your assistance. We're using and Adobe InDesign CS6. The XMedia UI Plugin for it, will it allow you to open .xml files in InDesign or that plugin is just used for Importing XML? Thanks in advance.

    Hi Everyone, Just wanted to seek your assistance. We're using and Adobe InDesign CS6. The XMedia UI Plugin for it, will it allow you to open .xml files in InDesign or that plugin is just used for Importing XML? Thanks in advance.

    I've moved your question to the InDesign forum.

  • How can I set up the canon printer mf4380dn for macbook pro MD318

    I can not set up the canon printer mf4380dn for macbook pro MD318 even thought I set up the printing driver already. The printer usually work good for printing via windows laptop.
    I tried some way but error appear "unable to verify the printer on your network". I printing IP is available

    Upgrade your RAM to at least 4GB's.  Your machine can support 6GB's, but upgrade to 4GB's first. Regardless of what Apple says, you need at least 4GB's to run Lion properly.

  • Getting the Flex Builder Plugin for Eclipse

    I may be a dope, but I can't tell you how long it took me to
    find the download for the Flex Builder plugin for an existing
    install of Eclipse. If you're looking for the plugin, go to the
    last line of the FlexBuilder standalone download page--and then, in
    the last line, you will see a link buried in the line--click on
    that, and you will get the download. Adobe, this is really, really
    stupid way to organize your downloads.

    Ha, I'm not alone ;)
    Thanks for pointing it out. It might seem obvious once you
    notice the link, but I totally missed it.
    The Adobe flex builder rips off numerous useful features that
    eclipse offers, such as the ability to search all files, and it is
    very inconvenient.

  • What is the best software/plugin for converting Quark files to Indesign?

    What is the best software/plugin for converting Quark files to Indesign?
    I don't want to upgrade to the latest Quark now i've got CC so going to make the leap to indesign only. Does Indesign auto convert or do I need anything else?

    ID does not load QXD files. There is a respective commercial third-party plug-in to that effect, but it's rather pricey and I'm not up to speed which versions of Quark and ID it supports and which features come over. Inquire in the ID forum.
    Mylenium

  • How can I install the Amazon Kindle plugin for InDesign in InDesign CC?

    How can I install the Amazon Kindle plugin for InDesign in InDesign CC? I have it installed in InDesign CS6 and it works fine.

    Amazon has not updated the Kindle plugin for Indesign CC.

  • Can you reload the default HTTPS certificate for a Border Controller?

    The HTTPS page does not work for the Tandberg Border Controller (Q6.3). HTTP is fine. I believe that the customer uploaded their own certificate which has now “broken” the HTTPS page.
    So the question is – can you reload the default HTTPS certificate for a Border Controller?
    There’s a handy button to do this on the VCS but not on the BC it seems. The only option I can see is for the customer to generate a “working” certificate and upload it, is this the only option?
    Thanks,
    David

    Hi sherylz,
    It is also possible to edit the theme, but it may be wise to make a copy of it:
    *[https://support.mozilla.org/en-US/questions/940165]
    *[https://developer.mozilla.org/en-US/Add-ons/Themes/Background MDN Reference]
    *Add on to make own skin: [https://addons.mozilla.org/en-Us/firefox/addon/bt-canvas/]

  • How to set up the "incoming Mail server" for google apss account

    how to set up the "incoming Mail server" for google apss account

    The settings are not generic for all webmail accounts, only your office IT department would know what the server address is for their outgoing email server.  You'll have to ask them about it.

  • Has anyone used the reel projection plugin for jQuery?

    Hello to all,
    im new at all this website stuff. im creating an online protfolio and want to have a place were each of my characters can be rotated 360. Im using a tutorial i found on the reel plugin. but its not working for me. i have included all the scripts required and have everything set up the same as the person giving the tutorial did. i just cant figure out what is gong wrong. I dont know enough about it all to figure out what is wrong. any help woudl be appriciated.
    the scripts to be included are as follows:
    <script src="jquery.js"></script>
    <script src="jquery.reel.js"></script>
    <script src="disableTextSelect.js"></script>
    <script src="jquery-mousewheel.js"></script>
    <script src="ActivateReelTarget.js"></script>
    the tutorial had them linke with http://, but i downloaded them and turned them into.js scripts. the ActivateReelTarget is just a script i wrote to activate the reel plugin for the target object. which looks like this:
    $('#image360').reel({ frames: 36 })
    other than that all that is needed is the image which i loacated at the top of  my page:
    <!--Start 360 Container-->
                        <div id="360conatiner">
             <!--Start 360-->
            <img id="image360" src="images/RW360.jpg" width="600px", height="526px"/>
            </div>
            <!--End 360-->
            </div>
            <!--End 360 Container-->
    its pretty stright foward, so i dont know what im missing?
    the comp sheet i made has 36 images in it gong from left to right in a block of 6X6. the image on the page has to be the first image in the block of 6X6. they have to be named the same thing, than the 6X6 comp block just needs to have a -reel extention added to it
    This is the site im geting all this from:
    http://developer.practicalecommerce.com/articles/1840-Full-360-Degree-Product-Image-Rotati on-in-JavaScript

    Thanks for the feedback, I appreciate it!  I have read thru your links, and it looks like the colorspace drive is a good option. I guess what I am lookiing for is anyone who has used the one specifically made for Ipad? 
    Maybe I can be a bit more specific..
    I have a macbook pro, and will not be able to take it with me because of severe in country flight weight restriction
    I have an ipad
    I have an WD portable hard drive without screen
    I will use a portable hard drive as a backup, as well as try not to re-use my cards ( I shoot in raw, and have space for about 5000 images)
    The only thing missing is my ability to actually look at some of my images while on the trip, so with the new Hyperdrive for Ipad it seemed to be a convenient solution.
    With the Hyperdrive for ipad, I could see my images load, which would make me feel good...lol and then with the ipad actually look at some of them...
    I am curious to know if anyone has used it, for a similar situation? Or if I should forgo the ipad all together and get the UDMA colorspace? Or what the diffenece would be?

Maybe you are looking for

  • Can I change my Macbook Air's Graphics card?

    Hello, I'm having a problem with my Macbook Air's graphics card. When i open After Effects CC, it says that i need an approved NVIDIA Graphics. That in other means, should I change my Macbook Air's graphics card? Even some programs requires me an NVi

  • Unable to launch PS CC Mac OSX 10.9

    I have installed PS CC on 2 Max's with the same result on both The splash screen shows, the app opens for a couple of seconds then closes There is no error reported and I can not find an issue in a log. I have followed a multitude of information on d

  • Extended receiver determination and Dynamic attributes

    Hello, is it possible to access dynamic attributes within an extended receiver determination? Can I modify / set dynamic attributes of an XI message within an UDF in the extended receiver determination mapping? In detail: In my scenario I want to use

  • 1 of 2 USB Ports not Working..

    This only happened recently, but my second USB port is not working. Anything from my iPod to webcam to wireless mouse won't work in it, however the other port does. Anyone know what's wrong and how/if it can be fixed? Thanks in advance, happy holiday

  • Set up repository on server?

    I want to know how to set up the server for a git repository.