How to make mod_wl_20 handle multiple weblogic sources

Hi community,
I'm configuring an Oracle HTTP Server as a proxy of multiple weblogic instances.
For the case of the AdminServer, I modify httpd.conf as follow:
<IfModule mod_weblogic.c>
WebLogicHost myhost.example.com
WebLogicPort 7001
</IfModule>
<Location /console>
SetHandler weblogic-handler
</Location>
Now that I have configured 2 managed weblogic servers using port 8001 and 8002. How should I do so that both 2 managed weblogic servers are also proxied by the Oracle HTTP Server?
Thanks,
David

Hello
I suppose your managed nodes are located on address and port
10.a.b.d:7001 and 10.a.b.e:7001
and your admin is : 10.a.b.c:8001
you can try this :
<IfModule mod_weblogic.c>
WebLogicCluster 10.a.b.d:7001,10.a.b.e:7001
</IfModule>
<Location /your_app>
SetHandler weblogic-handler
</Location>
<Location /console>
SetHandler weblogic-handler
WebLogicCluster 10.a.b.c:8001
</Location>
It should work for you , it works for me . . . .

Similar Messages

  • How to make enhanced fields of data source delta enabled?

    Hi ,
    I have a scenario, in which we are using the DS 0CUSTOMER_ATTR to load the master data.There are some fields added to this data source but this fields are not delta enabled. I have tested these fields from R/3 side using BDCP, CDPOS tables. All the fields are writing the changes correctly. But when extracting them using delta they are not capturing.If we load the full,it is capturing all the changes.
    So running full load every week is taking more time.
    Can any one suggest how to make this fileds delta enabled to capture the change in BW side as well to extract only changed records?
    Any help will be greatly appriciated !
    Thanks & Regards,
    Vishnu

    HI,
    It is not possible to load delta this data. Your datasource only detects changes in the customer table and when any customer has been modified the record is loaded to BW. In this moment the datasource fill the append extructure.
    The problem is that if you modifies some record from the append extructure the datasources doesn't detects the changes. When you does a full load you are filling the append extructure for the entire records and it works.
    If you want to catch this deltas you should make a delta datasource for CDPOS but depending on the number of records of the tables it won't be possible.
    You could check if there is any event to detects the modification and create a delta queue datasource for the append extructure.
    Then, you can mix both datasources in a DSO in BW.
    You can look for a " how to create generic datasources which use delta queue"
    I hope it helps

  • How to make "check for multiple logons" mandatory in webdynpro application.

    Hi SDN members,
    Im having a problem with an application developed in webdynpro abap.
    We require that  end-user only have a session per computer (ip address),
    I already tried to achieve this by configuring the webdynpro application throguh SICF and going to Error Pages -> Logon Errors --> System Logon and mark the checkbox Check for multiple logons.
    This configurations give only a warning when the user logs multiple times, and show a checkbox letting the user decide to end or not the previous sessions.
    How to make end previuos sessions mandatory ??
    Regards,
    Franklin Cedillo

    You would have to enforce this at the application level. You can get the IP address of the current client from the framework - IF_WD_APPLICATION method GET_REMOTE_ADDRESS.
    You could write an entry with the IP address into a temporary table during WDDOINIT.  You could clear the entry in the WDDOEXIT.  Also during the WDDOINIT, check to see if there is already an entry for this IP address.  If so, then fire an exit nagivation plug to a static MIME object or BSP page that explains why the user can only be logged in once.

  • Handling multiple calendar sources

    How do I manage multiple calendars on the iPhone? I have an exchange server, caldav server, and the local calendar items. On my iPad there is a calendars button and I can tick on and off specific calendars and see their sources, just like iCal on the mac. I have not yet figured out how to do this on the iPhone. I would like to turn off specific calendars on the phone, but not remove the source entirely.

    I forget to mention using 4.6c

  • How to make sqlldr handle mutliple NULL columns

    I am using TRAILING NULL COLS in the control file to tell SQL*Loader to treat any relatively positioned columns that are not present in the record as null columns.
    But the problem is occuring when there are multiple NULL columns one after the other. In that case SQL*Loader is treating continuous null column as 1 NULL column and then I am getting following message:
    ORA-12899: value too large for column
    And reason being wrong value is being tried to inserted in wrong column.
    How can I stop SQL*Loader from combining multiple and continuous NULL columns and basically to make it treat each of them separately.

    I have been able to take care of the issue using the NULLIF attribute. Here is how my control file looks now:
    LOAD DATA
    INFILE 'tab_sal_ldr.tab'
    INSERT INTO TABLE SQL_TAB_LDR
    REPLACE
    FIELDS TERMINATED BY "\t"
    TRAILING NULLCOLS
    (COL1 CHAR,
    COL2 INTEGER EXTERNAL NULLIF COL2=BLANKS,
    COL3 FLOAT EXTERNAL NULLIF COL3=BLANKS,
    COL4 DATE EXTERNAL NULLIF COL4=BLANKS)
    However it is rejecting the rows having all NULLs. Is it possible to upload rows having all column values as NULL.
    Following is the snippet from the log:
    2 Rows not loaded because all fields were null.
    Edited by: Parag Kalra on May 4, 2010 3:31 AM

  • How could Adobe Form handle multiple Include Text

    Hi all,
    In abap program, I have declared a global structure *t166k and pass it to adobe form. However, the the passing parameter *t166k need to based on the looping xt166k as shown below. If this is the case, how could I handle such multiple include text?
    Thanks in advance.
        loop at xt166k where tdid ne 'F17'.
          move xt166k to t166k.
          case t166k-tdobject.
            when 'EKKO'.
              t166k-txnam(10)   = ekko-ebeln.
            when 'LFA1'.
              t166k-txnam(10)   = ekko-lifnr.
            when 'LFM1'.
              t166k-txnam(10)   = ekko-lifnr.
              t166k-txnam+10(4) = ekko-ekorg.
          endcase.
          perform get_header_text.
        endloop.
    form get_header_text.
      if t166u-druvo = '1'.
        *t166k = t166k.
    endform.                    " GET_HEADER_TEXT
    In Adobe Form
    General     
    Name     GV_HEADER_TEXT
    Description     Header Text
    Status     Inactive
    Text     
    Text Type     Include Text
    Include Text     
    Text Name     T166K-TXNAM
    Text Object     T166K-TDOBJECT
    Text ID     T166K-TDID
    Text Language     FORM_LANGU

    Are you using a custom driver program?
    If yes, then loop the function module with the number of copies you have.
    the copy name should be a variable which should be passed to the form in the loop change the value of the copy control accordingly.
    Please let me know, if you see any issues.
    Thanks,
    Rakesh

  • Hard drive is full, how to make iTunes span multiple hard drives?

    My mp3 drive is full. How do I tell iTunes to use multiple hard drives? It seems to only want to deal with one.

    Hi, Mister Beefy.
    All you have to do is go to the iTunes Edit menu > Preferences > Advanced tab > General sub-tab and change the location of your iTunes Music folder.
    New files added to your Library will go to the new location, old files will remain in the old location.

  • How does Time Machine handle multiple profiles?

    Hello,
    I have an IMac with 3 users, does time machine handle all users?
    2 users are admins, but when i change users the time machine does not handle well the external drive.
    Can you give some info in this matter.
    Thanks
    Nuno

    It should work fine. All of my machines have multiple users. What problems are you having?

  • How to make chart from multiple loops without local variables

    Hi,
    It is my first experience in LabView.
    I did a program that communicate with Power Supply Device via RS232, sets an output voltage and read Voltage and Current in some sort of a program: Voltage goes up, staying in some value and then goes down. So there are many FOR LOOPS that sequensed one after another.
    I need to make a 2 live Charts (one for current and second for voltage), and the only one solution that i could obtain is using local variables. BUT also I need to export my data to the file after the end of the program (with real elapsed time for collecting data points) and with the use of local variables I cannot do so. Maybe the Shift Register will work, but I could not make it work.
    Thank you for help.
    Attachments:
    test.vi ‏47 KB

    You have multiple, deeply stacked, sequential loops. Way too complicated.
    All you need is a simple state machine architecture using a single loop and a single instance of your charts. No local variables needed. Simplify!!! You could even graph both values on a single chart.
    Look at your code. It is basically repeating the same thing with slighly different inputs. You only need to change the inputs based on state, and re-use the same IO function instances. Only one instance each needed.
    (you also have some misguided autoindexing near the middle of your code. Bad!)
    LabVIEW Champion . Do more with less code and in less time .

  • How to make mailto handler be hotmail?

    We can set mailto to be handled by our gmail or yahoo mail web mail accounts. But I want to set it to hotmail/outlook.com
    This is how you set it to gmail/yahoo mail:
    [IMG]http://img.photobucket.com/albums/v135/noitidart/how20to20use20hotmail_zpsb12baf06.png[/IMG]
    There is an other option, but that pops open a weird mailto form.

    Check this
    *https://support.mozilla.org/en-US/kb/change-program-used-open-email-links#w_using-webmail-services

  • How to make "adjustments" to multiple images simultaneously?

    Hi,
    I have several images from a shoot with the incorrect while balance setting. Since these images were all taken under similar lighting conditions, I would like to adjust the white balance for all the shots simultaneously....how do i do this?

    The Lift & Stamp tool will let you do this. Make the adjustments to one, then lift the adjustments from there and stamp the rest. Check out pages 13 & 14 in the "Performing Adjustments" PDF (found in the help menu) for details on how to do this.

  • How to make a Infocube as data source and upload data? urgent

    Hi all,
    I have 2 same InfoCubes, and I want to make the test InfoCube(ZCO_1T) as data source and upload data to another Cube(ZCO_1), Now I has Generated Export DataSource on ZCO_1T and create a update rule between ZCO_1T and ZCO_1. what will I do the next step? Thanks.

    hi delve,
    once u generate datasource from test cube it acts as an data source for further upload.
    now u choose update target3.x in additional functions in context menu of the test cube.
    u will get an infopackage pop up with data target to the cube ZCO_1,processing to datatarget only.
    selection criterion can bve selected from the first tab.
    under schedule tab you can start extraction.
    reward points if helpful.

  • How to make a handling unit object (packing) automatically generate from inbound

    Hi guru,
    I just have a question which I am sure sure and puzzle, and hope you can give me an accurate information.
    Background:
    We are using EDI communication so that vendor can send us advance shipping notification and will lead to inbound delivery creation automatically.
    Question:
    We would like the vendor, when deliver the shipment for us to be packed base on our instruction, and we want the handling unit object to be created automatically upon inbound delivery creation from the EDI. How to do this in SAP?
    Thanks.
    Daniel

    if you are using message type DESADV / SHPCON then vendor needs to send the HU information in the E1EDL37(HU Header)  / E1EDL44 (HU Item) segment and during Inbound delivery creation system will update the IBD with HU . Have a look on the below standard Link to get more detail
    Delivery Interface - Shipping (LE-SHP) - SAP Library

  • How does a pdf handle multiple SWFs at runtime?

    If a pdf has multiple SWFs in it, that get turned on and off multiple times, does each one run in its own instance of the Flash Player?
    If not, can they run separetely without problems?
    Can one SWF run for a while and then another SWF run, followed by a return to the first SWF to resume part way through or does it start it off from frame 1 again?

    When a Rich Media Annotation is activated it forms a new sandboxed instance of the FP runtime, so you can have several RMAs active at the same time without too many problems (aside from things like stealing focus from one another). They cannot see each other's libraries and you cannot share data directly between them as the LSO system is disabled, but basic string-form data can be tunneled via AcroJS if you know what you're doing.
    When an RMA deactivates, everything is wiped - Acrobat / Reader do not automatically store any 'resume data' but you can create a home-made resume system by coding the SWF to export/import state information to the PDF. You would have to ensure everything needed to 'resume' is packaged into the state data string, then read and parse it each time the SWF loads. Again, that data packet is not visible to other content.

  • How to make JDev leave out data-sources.xml

    Greetings
    I would like to have jdeveloper leave out data-sources.xml. I have my test server setup with all the data-sources so this isn't needed. All it does is create bunches of data sources on my server then I go in and delete them.
    Is there a way somewhere in jdeveloper or my deploy profiles were I can tell it to leave this file out so it just uses the ones I have already setup on the server?
    thanks
    troy

    I think you can control this by going to tool->Embedded OC4J Preferences->Data sourcesI think the original author meant to ask for a way to exclude data-sources.xml when deploying to an external application server.
    So far the only way I've found out to work is to manually blank the 'dataSourcesPath' field in "Configure Application" dialog before actual deployment takes place.

Maybe you are looking for

  • How to run Test Configuration in XI

    Dear all experts, I am new in SAP Netweaver and I am trying to get certify my products. Thus, I have some questions and appreciate you can help to clear my doubts below. 1. I have finished configuration in XI, but when I try to run Test Configuration

  • MOdify with Date field giving error

    Hi, I have to modifuy an internal table using modify statement. After using the modify statement my date field in the internal table is replace by *. heres a sample code i have used to depict the scenario(with the test values:) DATA: BEGIN OF t_arcs_

  • How do I get rid of the "other" taking up my memory..?

    I wrote about this question earlier and i received an answer stating that there will always be an other no matter how minimal. this is ok with me as long as its minimal. I already had to reset my phone because it was taking up more than 1gb and every

  • Global objects

    Is it possible to have global objects that can be accessed by any other class in Java

  • E-mail on Mavericks

    e-mail not coming in on new macbook pro with mavericks. I have deleted and re-entered account several times. Any suggestions in very simple terms. I am not very techy.