APEX 5.0 Bug: apex.server.plugin pOptions is not defined

When you call apex.server.plugin with just the identifier of the AJAX (i.e. no pData or pOptions) the following error occurs:

TypeError: pOptions is undefined


What happens in server.js on line 429...


if ( pOptions.queue ) {


As the docs says that pOptions is optional https://docs.Oracle.com/CD/E59726_01/doc.50/e39149/javascript_api.htm#AEAPI29511 , I think it is a bug.


When passing to a JSON null pOptions, traverse AJAX request object (confirmed this via the logging on the server), however, there is an error on the page via an alert message. Example:


apex.server.plugin(
  myAjaxIdentifier,
  {
    x01: 'test'
  },
  {}
);


The following error message is displayed in an alert message: error: parsererror - SyntaxError: JSON.parse: unexpected end of data to column 1 of line 1 of the JSON data

Hi Martin,

Thanks to and for reporting this bug. I entered a bug and we will try to fix it in a version of the patch. For now, labour is about to pass an empty object to pOptions. Regarding the error you get when you do this, take a look at the answer. It cannot be valid JSON. If the response data are not JSON or there is no response data (204 no content) then you will need to use pOptions to specify the response format using the dataType pOption property. See the jQuery for this doc.

When I tried passing an empty object I don't have the parsererror.

Thank you

-John

Tags: Database

Similar Questions

  • APEX notification plugin logout/session time-out bug

    In one of my applications, I created a dynamic action on page 0 which fires the apex notification plugin after modal 'autoclose' event of the Skillbuilder plugin page.

    The bug is that whenever the dynamic action for notification plugin is triggered, I'm connected on the generator of the APEX.

    This bug occurs on the apex.oracle.com as well as my local instance of the APEX.

    I have reproduced this bug on apex.oracle.com.

    Workspace: OPENWORKSPACE

    username: developer
    password: Password_123

    Go to "Page 1" and click on create to open the modal window, then add an entry to trigger the event autoclose and notification plugin.

    Concerning

    Anoush

    Anoush salvation,

    you use the most recent version of the plugin (version 1.3) notification? Because nearly two years ago, we have fixed this bug. Since the release notes

    v1.3 (November 24, 2011)

    -) Fixed the problem with the CSS files that caused the underlying Application Express session to be invalidated

    I think that covers your problem. Simply download and update the plugin and you should be good.

    concerning

    Patrick

  • Possible bug in apex.server.process?

    I was testing the documented new AJAX function apex.server.process and I noticed that I seem to get an error.
    The documentation on the process can be found here:
    http://docs.Oracle.com/CD/E37097_01/doc/ doc.42 /e35127/javascript_api.htm#BGBJEFDJ

    I created an example where I have both called an Ajax function by using apex.server.process and another call button using pure jQuery. The use of jQuery works and returns "test", the apex.server.process gives an error.
    I just follow the syntax has been documented so I don't think I did a syntax error.

    I downloaded an example on apex.oracle.com
    Workspace: Ajax
    User: demo/demo

    If you make changes to the application, make a copy first please.

    Error returned with apex.server.process:

    Error: parsererror - SyntaxError: JSON.parse: unexpected keyword

    Documentation:

    See also: see the documentation for jQuery jQuery.ajax for all other available attributes. The dataType attribute is set by default in json.

    Solution when it returns plain text:

    apex.server.process( 'AJAX_TEST',null, {"dataType": "text"});
    
  • How to set the value of a * APPLICATION * with apex.server.process?

    If I have a page named point P1_MY_PAGE_ITEM, I could put its value in the session by doing this:

    $s('P1_MY_PAGE_ITEM', 'I Like Pie!');
    
    apex.server.process(   'dummy'
                           , { pageItems: "#P1_MY_PAGE_ITEM" }
                           , { dataType: "text",
                             async: false,
                               complete: function( ajaxResponse )
                                     {
                                          var ignoredReturn = ajaxResponse.responseText;
                                     }
                             });

    Which works very well. If you check the session, the P1_MY_PAGE_ITEM will now have the value: I like pie!

    However, if I have an Application element (not a page element!) named MY_APP_ITEM, how could I do the same thing? How can I use apex.server.process to set the value of MY_APP_ITEM in the session? I wouldn't be able to use "pageItems" because MY_APP_ITEM is not a page element, it is a part of the application.

    What is the correct syntax to do this?

    Thank you

    -Joe

    Hey Joe,

    Returning to that thread you made a couple of months ago, the answer is here:

    Post adjustment Application items in the apex.server.process for a * process application *.

    Defining a point of application is as easy as providing the name of the application element to p_arg_names Bay and set a corresponding value in the p_arg_values table.

    For example, in an application with article SOME_ITEM of the application, I can put the value as follows:

    (function(){
    var arrNames = [], arrValues = [];
    arrNames.push("SOME_ITEM");
    arrValues.push('some value');
    apex.server.process(   'dummy'
                         , { p_arg_names: arrNames, p_arg_values: arrValues }
                         , { dataType: "text"
                           });
    })()
    

    Any required application process. Should the item be free that you set it from the browser.

  • Post adjustment Application items in the apex.server.process for a * process application *.

    We were spending the entirety of our method of apex.server.process htmldb_get request the favorite (and documented and supported!). It has worked well so far for the AJAX JavaScript process call, as long as the process of AJAX in question was one * Page * level process. However, when we try to eat a * application * process, it just doesn't seem to work.

    For the examples below, we have two elements of Application named PRS_PRODUCT_PROFILE_ID and PRS_PROFILE_OPERATION. We have a process to request on request (* not * a process page!) named MAINTAIN_PRODUCT_PROFILE_2.

    Here are the previous htmldb_get approach (which works fine):

    function resynchronizeProductProfile (productProfileID)

    {

    var profileOperation = 'EDIT_PROFILE ';

    var ajaxRequest = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is MAINTAIN_PRODUCT_PROFILE_2', 0);

    ajaxRequest.add ("PRS_PRODUCT_PROFILE_ID", productProfileID);

    ajaxRequest.add ("PRS_PROFILE_OPERATION", profileOperation);

    var resynchronizeResult = ajaxRequest.get ();

    ajaxRequest = null;

    Return resynchronizeResult;

    }

    Here's the (what I think is the) same call using the new approach of apex.server.process:

    function resynchronizeProductProfile (productProfileID)

    {

    var resynchronizeResult;

    $s ("PRS_PRODUCT_PROFILE_ID", productProfileID);

    $s ('PRS_PROFILE_OPERATION', 'EDIT_PROFILE');

    Apex. Server.Process ("MAINTAIN_PRODUCT_PROFILE_2"

    , {pageItems: ' #PRS_PRODUCT_PROFILE_ID, #PRS_PROFILE_OPERATION '}

    , {dataType: "text"}

    Async: false,

    complete: function (ajaxResponse)

    {

    var resynchronizeResult = ajaxResponse.responseText;

    }

    });

    Return resynchronizeResult;

    }

    However, in the new version, arguments don't appear to be preparing when the MAINTAIN_PRODUCT_PROFILE_2 application process is called. PRS_PROFILE_OPERATION, for example, is on "even if above, you can see that it is, in fact, pre-programmed on 'EDIT_PROFILE '.

    As a general rule, the call to apex.server.process sets the item values in the page and in the session in a single step. This doesn't seem to be the case with elements of the Application (although it works very well for the items on the Page).

    What's up with that? Everyone see my mistake?

    Thank you

    -Joe

    Post edited by: Joe Upshaw

    Joe,

    Using the pictures I showed you can simply use your application objects in the process. This is exactly the same as what htmldb_Get: when you use. add(), you provide a key pair / value that will be added to the respective tables, it is just behind the scenes. By manually adding to the table with apex.server.process, you get the same exact behavior and apex define elements of page/application corresponding to the value in the table of p_arg_names with the value in the p_arg_values table.

    When test you it in your demo application by assigning the value of the page element, and then using the 4 button (point), you can see that the question of the application session state has changed by inspecting the session state of the elements of the application through "session" in the developer toolbar. (it's in the "apex of ajax samples - forum" app)

    Of course, you can use the scalar parameters x # to provide values for the process, but why would you do the extra arch? If the elements of the application would set the restrictions, you still get the same result as if they were not, and they are easily manipulated through the same ajax call. I added an extra button with an ajax call using x 01. I never had problems with the help of the scalar parameters.

  • HTTP 404 not found - the/apex/f requested URL was not found on this server

    All of a sudden, I get the following errors on one page in my application - "the apex/f URL requested is not found on this server".

    I tried to export and import the page with no luck.  The import/export process works successfully; However, I get the same error on the new exported page.

    I can edit the page and the rest of the application is operational - I can not simply run the page without receiving the "Not found" error

    I use the Oracle 11.2.0.3 database.  I use thepl/sql gateway to connect to the APEX.

    I looked at many articles from forum, but nothing seems to be due to my problem.

    It seems that the key generated on the URL is damaged:

    http://localhost:8585/apex/f? p = 101:3:1337553032969279:NO:

    If I remove the 1337553032969279:NO: URL, the login page is running successfully, but a time Oracle tries to access the page it adds the BACKSPACE on the URL and I get the message "not found".

    The keys for the other pages of the DBMS work very well. Only, I have a problem with this page.

    Hello

    You get this error when you run the APEX page?

    Can you import your application to apex.oracle.com or reproduce the HTTP 404 not found error?

    If you share the developer connection information in the workspace, I can try to take a look at what could be the problem.

    Kind regards

    Jari

  • Help with apex.server.process

    Hello

    I try to use the new function apex.server.process for and I seem to have some problems with it. The appeal itself seems to work very well as firebug it returns what to expect. It's just that I return the json string to an object, and this is what causes the problem.

    Here is my application process:

    DECLARE
    
      lv_json             VARCHAR2(4000 CHAR);
      lv_score            NUMBER(12);
    
    BEGIN
    
        --Will get the score from the database...
        lv_score := round(fm_apex.events_api.get_percent_complete(:P40_EVENT_ID,'TOTAL'));
        
        IF lv_score = 100 THEN
          lv_json := '{"success":true}';
        ELSE
          lv_json := '{"success":false}';
        END IF;
        
        htp.p(lv_json);
        
    END;
    

    And this is my javascript function:

    function checkScore(pThis) 
    {
        var getScore = apex.server.process(
            'IS_SCORE_COMPLETE_JSON',
            {
                pageItems: "#P40_EVENT_ID"
            }
        );
        
        if ( eval(getScore.success) )  {
            alert('This is successful');
            //doSubmit(pThis.id);        
        } else {
            openModal('notScoredFully');
        }
            
    };
    

    It is done when the answer is {'success': false} and Firebug, it is it was still evaluating true? Everyone can see what I'm doing wrong?

    See you soon,.

    Paul.

    1 / apex.server.process is asynchronous. You manage it as if it is not. You initiate the call and he went, in contrast to htmldb_get that works synchronously (= makes the browser to wait for return). You must use the function of success.

    Apex.Server.process JavaScript APIs

    The return value of the call to server.process is an object jqXHR, documentation on which you can find here: jQuery.Ajax | jQuery API Documentation

    I would just use same success if, as shown in the example in the documentation.

    apex.server.process ( "MY_PROCESS", {
      x01: "test",
      pageItems: "#P1_DEPTNO,#P1_EMPNO"
      }, {
    success: function( pData ) { ... do something here ... }
      } );
    

    So something along these lines:

    apex.server.process(   'IS_SCORE_COMPLETE_JSON'
                         , { pageItems: "#P40_EVENT_ID" }
                         , { success: function( pData ) {
                                        if(pData.success){
                                          alert('This is successful');
                                        } else {
                                          alert('This is NOT successful');
                                        }
                                      }
                           }
    );
    

    2 / default apex.server.process manages the return as a json data type value. It would be pointless to 'eval', he.

  • The/apex/listenerConfigure requested URL was not found on this server

    Please help me...

    After running in the command prompt (java-jar c:\apex.war) to install the earpiece of the apex.
    I have error when I call link http://localhost: 8080/apex/listenerConfigure.

    In the browser displays:

    Not found
    The/apex/listenerConfigure requested URL was not found on this server

    How can I fix this error?


    Thx  :)  :)  :)

    How to mark this thread?

    It seems that you have marked threads as answered present. ;) Probably, you will also find a way to mark messages like 'proper' or 'helpful '...

    at this point, I select complete development environment for the execution environment of this stage is spent. is it good?

    Fix.

    next step is 3.3.3 change the password of the ADMIN account, I think that this step went too couse I read
    "In a new installation of the Oracle Application Express, or if you convert a runtime environment in a development environment, you must change the internal ADMIN account password. In an upgrade scenario, the password is retained and carried over from the prior release. "is right?

    Well, it depends on... You have installed APEX the first time, you do not have a new facility. Anyway, it does not hurt to reset this password... After all, you have validated, you don't know, right? So the only option you have to meet her anyway...

    and a question again, how do to restart proses in point 3.3.4 restart the process?

    Documentation is actually a bit confusing, as this whole section applies only to installation with the APEX listener, so usually there is no Oracle HTTP Server must be restarted. Service that you do not want to restart the listener APEX itself.

    -Udo

  • Help debugging: / pls/apex/f requested URL was not found on this server.

    Hi - unfortunately, I was on a hiatus APEX 7 months; I'm a little rusty.

    I'm going back to the application, I was working on that and get some behaviors
    that I don't remember. (Doesn't mean it wasn't there...)

    There is a page in my application (a report page) that once I sail
    for her, an attempt to access any other page in the application (for example to sort the results,
    results go back to the page where the query specs are entered, change a line):

    The/pls/apex/f requested URL was not found on this server.

    The generated url look completely valid and identical, with the exception of the page number,
    for those that are generated by another similar set of pages. Session state protection is
    disabled.

    Ideas?

    Thank you
    Carol

    Carol,

    If you can isolate it on a single page, say the login page after the termination, then you must disable a component on this page both (start with areas) until the problem no longer occurs. Also check the level of the application of the process of calculations and the authorisation schemes.

    It could be a problem with a value of source element / default or a query LOV too.

    Scott

  • APEX 5.0 - static files not found even though I configured ADR.

    Hi Experts,

    I use the new 5 APEX (+ Tomcat 6) for a period of two months. All custom files are stored on the application server and they are referenced from there.

    Now, I need to create a static file - for example just a simple picture (logo).

    I want to just show at the point of the image.

    If I inspect the source of element it shows this:

    2015-07-29_144031.png

    I have configured all the necessary stuff: apex_rest_config.sql( APEX_LISTENER, APEX_REST_PUBLIC_USER)

    I also tried to configure SQL Developer to manage data REST Services. (java-jar apex.war user adminlistener "Listener administrator")

    Login test. But if I try to connect to the listener the error to occur:

    2015-07-29_143447.png

    Y at - it one configuration to another? to make it work?

    Thank you

    Concerning

    J

    Hi jozef_SVK,

    jozef_SVK wrote:

    I use the new 5 APEX (+ Tomcat 6) for a period of two months. All custom files are stored on the application server and they are referenced from there.

    Now, I need to create a static file - for example just a simple picture (logo).

    I want to just show at the point of the image.

    If I inspect the source of element it shows this:

    I have configured all the necessary stuff: apex_rest_config.sql( APEX_LISTENER, APEX_REST_PUBLIC_USER)

    This problem happens so that a single file or all files in space of static work/applications?

    Go to the tab network browser development tools and inspect what happens if you load a page with files of static applications/work space.

    If you get 404 for work/application space static files then this is the issue of the wrong Configuration of RESTful Services.

    RESTful Services configuration is mandatory at the APEX 5 and this is not just limited to the configuration using apex_rest_config.sql.

    The second step is the configuration of users required for RESTful Services when installing ADR?

    Reference: http://docs.oracle.com/cd/E37099_01/doc.20/e25066/install.htm#AELIG7217

    Check out the following threads with the same question:

    Also check if users RESTful (APEX_LISTENER and APEX_REST_PUBLIC_USER) are unlocked as that can also cause the problem.

    Reference: error 503-service unavailable after listening apex on glassfish deployment

    Kind regards

    Kiran

  • APEX 5: Dynamic Action do not run on DEMAND Condition = VALUE

    After migration from APEX to APEX 5 dynamic action 4.2.5 which performed in 4.2.5 won't work in 5 APEX.

    Event DA: BEFORE the PAGE is SENT

    Condition: Ask = value

    Value: SAVE

    Page contains the button SAVE, in the debug REQUEST window appears like SAVE, but DA does not occur.

    When the condition is not defined, DA works correctly in the APEX 5.

    Is this a bug in 5 APEX?

    Hey Bozo,

    Bozo says:

    How to have this in mind, can be made to run before Page submit DA specified button click?

    It depends on what you want to achieve a click of button and what you want to achieve with DA.

    The purpose of the button and DA can be combined in a javascript function or in the DA himself.

    How this can be achieved in the DA itself is:

    • Instead of shooting the DA "before submit Page', fire the DA to the click event of button. (to do this change the button action to listen for events from DA)
    • In the first real action, run everything you want to achieve with DA.
    • Write another real action, to submit the page and set the application to any value you want. (ensure that the processes we submit are conditional on the overall application, instead of the State of the button)

    Kind regards

    Kiran

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • Apex 5.0: tabs do not work when it is used with an iframe

    Hello

    The tabs work properly in apex 4.2 but in apex 5.0, they do not work when you use an iframe that display a different application page.

    Here's the demo:https://apex.oracle.com/pls/apex/f?p=86330:1

    Question: click the page tab 2 then click on the Home tab. The problem here is that at home, he goes to the Home tab.

    Can someone help me on this please.

    Thanks Advance!

    2722501 wrote:

    Please download the demo app here (home page) and import it into the workspace you:

    https://Apex.Oracle.com/pls/Apex/f?p=86330:1

    I installed and it works now

    https://Apex.Oracle.com/pls/Apex/f?p=49257

    I just change the following line of code in your iframe:

    Why you must pass the session of 1 application to another application when you go to the page of connection only?

    -Sunil Bhatia

  • Apex 4.1.0 only not paid by the option worksheet compared to point 4.1.1?

    Hello

    I worked on 4.1.1 earlier and was able to download data from an excel spreadsheet. Now, on a different project I 4.1.0. The 4.1.0 has the possibility to add the download of the data from the CSV etc? When you create a new application, it has the ability to load data into a table from a csv file. But do not see the wizard for adding an option to load data in the application

    Thank you

    In my view, that it should be.

    It is listed here in version 4.1 original
    http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/Apex-41-new-features-459652.html

    And some questions are attached to the 4.1.1 patch notes
    http://www.Oracle.com/technetwork/developer-tools/Apex/application-express/411-Patchset-notes-1528994.html

    Scott

  • Generic Apache, WebLogic Server plugin 1.1 + forms + reports

    Hello

    We are planning an HA configuration for application forms-States. Environments should be divided between two VLAN (FrontEnd and BackEnd)
    VLAN FE contains the Web (Apache WebCache) layer
    BE WHAT VLAN contains WLS Server + forms and reports.

    The closest match to this configuration, I found in a document
    http://www.Oracle.com/technetwork/database/features/availability/MAA-EDG-frd-129690.PDF
    In this installation/configuration, step by step, we use Web Tier utilities bundle at the front.
    I assume that the combination of support is OHS + mod_wl_ohs.

    Could we replace the Web Tier utilities bundle with a generic combination Apache + mod_wl (WebLogic Server plugin 1.1).

    The idea is

    --> Ssl--> [restrict] ssl-> 2 or more [generic Apache + WebLogic Server plugin 1.1] - > | Firewall | -> 8 x [WLS + forms + reports]

    Platform is RedHat Linux 64 bit, SW of Oracle all the newer versions.

    Would it be an alternative care?

    Thank you very much.
    Best regards

    Ondrej

    Ondrej,

    You can do so using the WLS Plugins 1.1, like mod_wl (for generic apache) and mod_wl_ohs (for OHS 11 g) is the same.

    He prefers to use the server of HTTP Oracle 11 g with mod_wl_ohs because it is tested it in combination with other Fusion Middleware products, such as forms and reports. If you use a generic Apache, there are verses differences Oracle HTTP Server. It would be easier to configure and manage the OSH/mod_wl_ohs compatible together. For example, use of a configuration console and all two are updated with 11.1.1.x patchsets. If there is a problem specific to Apache (but not mod_wl), then Oracle can also address this question more easily if the OHS/mod_wl_ohs. Currently, there are no problems known between the two, but I'm not aware of a lot of generic customers using Apache as well as Fusion Middleware products.

    ... Ken

Maybe you are looking for

  • Office Jet Pro 8710: HP ePrint app

    I have HP Print Service Plugin installed on my 6.0.1 Android phone app. All of a sudden it will only print paper size 'hand-Index Card 3 x 5 '. I uninstalled the app and reinstalled nothing doesn't. The problem that happens on the phone Android for m

  • convert the string to an array of 1 d of channels

    It's the output I have: I want to take this string and convert it to a table 1 d of channels, so I can access each row with index Board. I tried this: But the result is a double, and I need to be a string. How can I fix? I'll leave my code, maybe som

  • Press a few keys by accident and now my screen is rotated 180 degrees. Acer Aspire V15 Nitro.

    Hi I got an unholy combination of keys by mistake that turned my screen of 180 degrees. How can I fix? I hope that it will be simple... Thanks in advance for any advice

  • Formatting an external hard drive to FAT32 using vista

    Hello I own an Xbox 360 and a Windows Vista-based computer.  I wanted to store music and movies on an external hard drive and connect it to my Xbox 360 so I can make use for more then just a game.  I first tried this using a 2 GB USB key and it worke

  • HP Deskjet F4240: My printer is connected to my computer

    I have a HP DeskJet F4240 series and I want to connect it with my new Asus computer. The problem is that when I plug the USB into my computer, the printer does not appear. I would try to print but I can't find the name of the printer. Help, please.