8.1.7 NT mod_plsql

Is there a sample application for mod_plsql in 8.1.7 for NT? Starter database neither contains htp/htf/utility-packages nor appropriate schema.

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Klaus Zeuch ([email protected]):
Is there a sample application for mod_plsql in 8.1.7 for NT? Starter database neither contains htp/htf/utility-packages nor appropriate schema.<HR></BLOCKQUOTE>
null

Similar Messages

  • Multiple errors in Apex 3.1.1 help (EBS mod_plsql issue?)

    Hello everybody,
    I am having a couple of problems with the online help in Apex and I cannot figure out how to solve them.
    First problem:
    Whenever I open the help from the Application Builder I get an error "Forbidden You don't have permission to access /i/doc/bldr_hm.htm on this server", but if then I start browsing the help index, all the pages show without errors. Also if I try to access directly in my browser the page indicated in the error above, the page shows fine. I get the same behaviour also when I select the "2 Day Developer" guide in the select list, that is the first page accessed gives a Forbidden error, but all the pages I access after that are working fine.
    Second problem:
    Whenever I click on the Find link, Apex outputs the following error:
    ORA-31011: XML parsing failed ORA-19202: Error occurred in XML processing
    LPX-00104: Warning: element "HTML" is not declared in the DTD Error at line 2
    Error creating online help index.I browsed the forum for this kind of error, but I found it only mentioned together with Web Services. The error seems to show that an HTML document is fetched instead of an XML one and I think it may be connected to the first problem (who knows, maybe the indexing routine is getting a forbidden error instead of the expected XML file).
    In the Mod_PlSql logs I see error messages like
    10.200.95.2 - - [04/Jun/2008:14:19:26 +0200] "GET /i/doc/bldr_hm.htm HTTP/1.1" 403 227and also
    [Wed Jun  4 14:19:26 2008] [error] [client 10.200.95.2] client denied by server configuration: /tszo/comn/portal/tszo_erp01/iI am using Apex version 3.1.1 on a 9.2.0.8.0 database and as the HTTP server I am using an Oracle 9i Application server from an Oracle E-Business Suite 11.5.10.2 installation. The error happens both with 3.1 and 3.1.1 Apex versions.
    It may be very well a mod_plsql configuration issue, but I don't know what may be causing the problem and why it's happening only the first time I access the help page.
    Is there someone able to shed some light on this issue?
    Thanks a lot,
    Paolo

    Hello everybody,
    our great Apps DBA Ivo Zekhuis solved the issue, so I would like to report the solution for others that may encounter the same problem.
    He just added the following line to the DAD for apex in file $IAS_ORACLE_HOME/Apache/modplsql/cfg/wdbsvr.app
    cgi_env_list=SERVER_NAME=our.server.name,REQUEST_PROTOCOL=http,SERVER_PORT=8000,HOST=our.server.name:8000and it solved the problem. As a nice side effect, this change also solved another issue that we were having with flash charts not working.
    I want to remember that in our case Apex is installed in an E-Business Suite 11i environment, using the main application server as the Apex web server.
    Thanks again, Ivo!
    Paolo

  • Downloading data from a BLOB Field using mod_plsql

    Hi,
    I am trying to use the mod_plsql to download data from a blob field, I have a web page where I can pick the file name to be downloaded from the documents table This table has the BLOB field that has the Data formatted in a text file format(contains carriage returns), when I open it up in the browser it is displaying it correctly , but when I right click on the file name and choose "Save Target As" and save it as text file it is ignoring the carriage returns and displaying entire blob in one line.
    Can somebody help me figure out why it's not recognizing the carriage returns?
    Any help would be greatly appreciated.
    Thanks

    Hi and welcome to the forum.
    Is there a way to retrieve data from a blob field and save it to temp table.Why would you want to do that?
    Can you provide some more details regarding your requirement?
    (Don't forget to mention your database version as well)
    Also, I wonder why you've added a 'decompress' tag to your question?
    edit, after seeing Tubby's reply
    Dang, the connection must be frozen here ;)
    Edited by: hoek on Jan 6, 2010 9:06 PM

  • Mod_plsql warning message in apache logs

    The following warning message has been reported in error logs and it relates to wwv_flow package :-
    [Thu Oct 19 16:08:47 2006] [warn] mod_plsql: /pls/htmldb/wwv_flow.accept had to be described for execution. Refer to the PL/SQL GateWay documentation on how to avoid this
    I have checked the doco at http://download-west.oracle.com/docs/cd/A97335_01/apps.102/a90099/apptroub.htm#634288
    Section B.7.1 is the relevant section and I think its to do with mod_plsql unable to find out if the parameters to wwv_flow.accept are scalar or array and hence having to first do a describe everytime.
    Do I need to do something about it or just ignore it ?
    tks
    Vishal

    Thanks Scott.
    I have asked the client how they have configured this.
    If its ON should they turn it OFF ?
    What implications would it have then ?
    tks

  • Using utl_http tp post a mod_plsql package which has a parameter

    Hi,
    I'm new to using utl_http, xml and mod_plsql.
    I need to test calling a mod_plsql package which receives posted data and returns a response using utl_http.
    The following works fine:
    SET SERVEROUTPUT ON;
    CREATE OR REPLACE PROCEDURE http_test
    IS
    BEGIN
    HTP.p (
    '<?xml version="1.0" encoding="UTF-8" ?><note><to>Fred</to><from>Smith</from><heading>Reminder</heading><body>Goodbye!</body></note>
    END http_test;
    CREATE OR REPLACE FUNCTION HTTP_POST
    RETURN VARCHAR2
    IS
    req UTL_HTTP.req;
    resp UTL_HTTP.resp;
    v_txt VARCHAR2 (1024);
    posted_data VARCHAR2 (1000)
    := '<?xml version="1.0" encoding="UTF-8" ?><note><to>Fred</to><from>Smith</from><heading>Reminder</heading><body>Hello!</body></note>';
    BEGIN
    wallet_is_set_here;
    req :=
    UTL_HTTP.begin_request (
    'https://url details removed for security/http_test',
    'POST',
    'HTTP/1.1');
    UTL_HTTP.write_text (req, posted_data);
    resp := UTL_HTTP.get_response (req);
    UTL_HTTP.read_text (resp, v_txt);
    UTL_HTTP.end_response (resp);
    RETURN v_txt;
    END;
    SELECT http_post FROM DUAL;
    i.e. it returns the following as expected:
    <?xml version="1.0" encoding="UTF-8" ?><note><to>Fred</to><from>Smith</from><heading>Reminder</heading><body>Goodbye!</body></note>
    However, I want to pass a parameter to the http_test procedure so I can ultimately save the posted data to a table so I can process the contents later.
    If I change the code to:
    CREATE OR REPLACE PROCEDURE http_test (xmlX IN VARCHAR2)
    IS
    BEGIN
    HTP.p (
    '<?xml version="1.0" encoding="UTF-8" ?><note><to>Fred</to><from>Smith</from><heading>Reminder</heading><body>Goodbye!</body></note>
    END http_test;
    CREATE OR REPLACE FUNCTION HTTP_POST
    RETURN VARCHAR2
    IS
    req UTL_HTTP.req;
    resp UTL_HTTP.resp;
    v_txt VARCHAR2 (1024);
    posted_data VARCHAR2 (1000)
    := '<?xml version="1.0" encoding="UTF-8" ?><note><to>Fred</to><from>Smith</from><heading>Reminder</heading><body>Hello!</body></note>';
    BEGIN
    wallet_is_set_here;
    req :=
    UTL_HTTP.begin_request (
    'https://url details removed for security/http_test',
    'POST',
    'HTTP/1.1');
    UTL_HTTP.set_header (req, 'Content-Type', 'text/xml; charset=utf-8');
    UTL_HTTP.set_header (req, 'Content-Length', LENGTH (posted_data));
    UTL_HTTP.write_text (req, posted_data);
    resp := UTL_HTTP.get_response (req);
    UTL_HTTP.read_text (resp, v_txt);
    UTL_HTTP.end_response (resp);
    RETURN v_txt;
    END;
    SELECT http_post FROM DUAL;
    I just get a load of html returned (some of which is below to show the kind of thing):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
    html1/DTD/xhtml1-strict.dtd">
    <html dir=LTR xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="pragma" content="no-cache" />
    </head>
    <body>
    Please could someone advise me what I am doing wrong or if it is not possible to post in this way using utl_http. I'm hoping it is just a question of finding the correct settings but can't find an example that matches what we need to do.
    If I post in a browser using an html form to the procedure when it has a parameter, the response is displayed correctly in the browser and it can be saved to a database(code not included in the above). However, our requirement is to do this in the background as we will be receiving a post from an external customer to which we have to respond based on the contents of the posted data.
    Many thanks for any help.

    Hi,
    Do you mind updating your message and using enclose the code part between two lines starting with {noformat}{noformat}
    i.e.:
    {noformat}{noformat}
    SELECT ...
    {noformat}{noformat}
    Please read <a href="https://forums.oracle.com/forums/thread.jspa?threadID=2174552#9360002">How do I ask a question on the forums?</a> for more details.
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem with OWA_UTIL.IDENT_ARR parameters through mod_plsql in 9iAS

    Hi!
    We discovered very strange bug in our Oracle environment. We're using the following configuration: Oracle8i (8.1.6), OWA-packages (from 9iAS), 9iAS (Release 1).
    Suddenly some procedures stopped working. mod_plsql reports the following
    ---start-------------------------------------------------------------------------
    Thu, 27 Jun 2002 04:42:32 GMT
    ORA-06550: line 7, column 2:
    PLS-00306: wrong number or types of arguments in call to 'INDICATORS_REPORT1'
    ORA-06550: line 7, column 2:
    PL/SQL: Statement ignored
    DAD name: owh8i
    PROCEDURE : htm_client_indicators_leshik.indicators_report1
    USER : dwh
    URL : http://ntw:80/pls/owh8i/htm_client_indicators_leshik.indicators_report1?monthes_=200206&monthes_=200205&monthes_=200204&client_id_=8175682&division_id_=0&type_balance_=morning&mail_=N&rs_without_rs_=on&rs_without_deposit_=on&rs_without_credit_=on&rs_without_veksel_=on
    PARAMETERS :
    ============
    monthes_:
    200206
    client_id_:
    8175682
    division_id_:
    0
    type_balance_:
    morning
    mail_:
    N
    rs_without_rs_:
    on
    rs_without_deposit_:
    on
    rs_without_credit_:
    on
    rs_without_veksel_:
    on
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle HTTP Server Powered by Apache/1.3.19 (Unix) mod_perl/1.25 mod_oprocmgr/1.0
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=ntw
    REQUEST_METHOD=GET
    QUERY_STRING=monthes_=200206&monthes_=200205&monthes_=200204&client_id_=8175682&division_id_=0&type_balance_=morning&mail_=N&rs_without_rs_=on&rs_without_deposit_=on&rs_without_credit_=on&rs_without_veksel_=on
    PATH_INFO=/pls/owh8i/htm_client_indicators_leshik.indicators_report1
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=172.16.1.36
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    HTTP_HOST=ntw
    HTTP_ACCEPT=*/*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-us
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=
    Authorization=Basic ZHdoOnlmbGp2eWp1aiQ=
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=
    HTTP_SOAPACTION=
    ---end---------------------------------------------------------------------------------
    here you can see that URL contains substring "monthes_=200206&monthes_=200205&monthes_=200204" but in "parameters" section there's only one "monthes_".
    This procedure is part of a package. I tried to create empty package with this procedure alone. And it works. But the original package doesn't work.
    Similar things has happened in some other packages. It seems that the problem is somehow connected with IDENT_ARRs.
    I can send you configuration files for app server and the problem package.

    Check for procedure name overloading for the procedure you
    are trying to run
    If you still have problems, please provide a simple testcase
    which shows the procedure signature and how you are attempting
    to call it

  • XML IN/Out via mod_plsql

    Hi,
    how can i get an xml-datagram using the mod_plsql cartridge ?
    Output is no problem (using http.print and the xml-packages). :-)
    But Input is only possible by using a cgi-variable witch contains the whole XML-datagram. :-<
    Is there a posibility to get the xml-datagram without incapsulating in a html-cgi-form.
    I found some solutions based on advanced queueing or with Jave-Servelets. Another is using the xsql and 'instead of triggers'.
    But I really like the simple way of using the mod_plsql cartridge or something like that.
    I think about writing a simple apache-cartridge witch transfers the data by an clob in and out of functions using OCI. But this is a hard way.
    In hope of sugestions or maybe
    'a correcting of a wrong way'
    Mike

    Metalink Note:357384.1 -How to Redirect a Request With a Parameter Value
    Metalink Note 258285.1- Sending Parameters as a GET or POST When Using Mod_plsql.
    HTH
    Anantha.

  • Mod_plsql: /pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login HTTP-400

    Hi,
    i write role in httpd.conf, to redirect to an external application, as this:
    ProxyPass /pippo/ http://<myhost>:7777/pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD
    ProxyPassReverse /pippo/ http://<myhost>:7777/pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD
    bun when i try to access at <myhost>/pippo/ i receive the follow http error:
    mod_plsql: /pls/orasso/ORASSO.wwsso_app_admin.fapp_process_login
    HTTP-400 Name "ORASSO.wwsso_app_admin.fapp_process_login?p_app_id=DF435C2A789ACE9C183480A1A6A982CD" is longer than 30 chars
    Is this a problem of mod_plsql or an Apache (Proxypass)?
    Are somebody resolve it?
    Thanks a lot to all!!!
    Stefano

    Yes Frank, I'm using DAS.
    I found the problem, There was a previous SSO server installation and It was causing a conflict.
    Now I have fixed the error running SSOREG script, the problem now is when accessing with a valid user the Apache.exe dies. The OID seems to be working fine since any wrong user is rejected, but when valid user the apache dies.
    I'm looking for information about this error.
    Any Idea?

  • Mod_plsql: /pls/apex/wwv_flow.accept HTTP-400 Too many arguments passed in.

    Hi All ,
    I want one solution i have a report which fectches the ppt that r stored in db,If i search more results it errors out so i have reduced the results and it was working fine.Now i see it is giving the same error(as below) althorugh it was working fine by reducing results in query.Can anybody please help me in this.
    the error is
    Bad Request
    Your browser sent a request that this server could not understand.
    mod_plsql: /pls/apex/wwv_flow.accept HTTP-400 Too many arguments passed in. Got 3250 parameters. Upper limit is 2000
    Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server Server at insightapps.oraclecorp.com Port 80

    Section 1.10 of the Oracle HTTP Server mod_plsql User's Guide states the following
    The total number of name value pairs that can be passed to a PL/SQL procedure is 2000.
    mod_plsql limits the total number of parameters that can be passed to a single procedure to 2000.
    mod_plsql limits the size of a single parameter that can be passed to a procedure to 32000 bytes.
    It would be helpful to know how each of these apply in the APEX context
    Varad

  • (XML) HTTP POST to Stored Procedure (mod_plsql)

    Hi,
    first of all, sorry if this is the wrong forum, I've also tried SQL/PLSQL with no answer at all, so I atleast wanted to give it a go here,
    as you guys probably have some mod_plsql experience.
    Let's put up an example scenario:
    Vendor X wants a URL to POST xml data. E.g:
    Content-Type: text/xml
    Content-Length: (length)
    <?xml version="1.0" encoding="utf-8"?>
    <document>
    <info>testxml</info>
    <answers>
    <a1>yes</a1>
    <a2>no</a2>
    <a3>yes</a3>
    <a4>yes</a4>
    </answers>
    </document>I want to store this information in the database. I really don't care if it gets stored as CLOB or XMLType, but I'm really just looking for a way to do this with a simple PLSQL procedure.
    Is this possible? How would that procedure look?
    All I know for now, is that the url would be http://apache-server/pls/dad/schema.[pkg.]proc - and that the process needs grant execute to [daduser].
    Was not able to find information on this in mod_plsql documentation.
    Running the prebuilt Oracle HTTP-server (Apache 2-version) and Oracle DB 11.1.0.7.
    Best regards,
    Vidar

    Metalink Note:357384.1 -How to Redirect a Request With a Parameter Value
    Metalink Note 258285.1- Sending Parameters as a GET or POST When Using Mod_plsql.
    HTH
    Anantha.

  • International characters and mod_plsql

    We are having troubles with mod_plsql translating international characters.
    Here is the scenario:
    We have an HTML form whereby the user can enter a letter.
    If they enter the letter 'X', by the time it calls the ACTION in the
    html form, it has changed it from 'X' to '&_Oslash' (I have inserted an
    underscore character for demonstration purposes).
    The ACTION in the HTML form is a plsql procedure which does nothing more
    than display the character the user entered. It "visually" displays the
    X character because the browser knows how to interpret the &_Oslash,
    however the "real" character should have been 'X' since we want to store
    this character in the UTF8 database. We need to store the 'X' character
    in order to search on it (you can't search on &_Oslash).
    Any help on this would be appreciated. We only have thousands of hotels internationally,
    it would be nice to use other languages besides english.
    Sun OS 5.8
    9ias 1.0.2.2.0
    mod_plsql 3.0.9.8.3b
    rdbms 8.1.7.3.0
    NLS_CHARACTERSET=UTF8 (and NLS_NCHAR_CHARACTERSET)
    NLS_LANGUAGE=AMERICAN
    owa_util plsql toolkit 3.0.0.0.5
    Thanks, Kate

    I'm picking up the IP address but I also want to pick up the name the username and the %u doesn't seem to be capturing the mod_plsql login name.
    Jeremy.

  • Connection Pooling in MOD_PLSQL

    Hi,
    I write an app with PL/SQL Web Toolkit using mod_plsql of Oracle HTTP server. I'd like to config connection pooling for this app. I read some docs but confused.
    We have to config connection pooling or this feature is built-in feature that was configured already?
    If we have to config, how to do?
    Please help me.
    Thanks a lot.

    By default, this feature was configured already.

  • Does anyone know how to install mod_plsql into original Apache?

    Hi ALL!
    By some reasons I prefer not to use Apache from ORACLE in our business - so I would like to use Apache built from source. But how can I use mood_plsql to acces main server?
    Insatllation of mod_plsql and mod_ora_psql (downloaded by links from Aache.org) was Ok ..... but results was wrong 8((((
    I wonder if somebody could help me!
    Best regards and sorry for poor english!

    Hopefully, this should help.
    Even though it's vista specific, it should on windows 8 as well.
    Effects panel
    Install Actions in Photoshop Elements 7 on Vista
    Action player
    Install Actions in the PSE Action Player

  • Mod_plsql: ORA-942 Execute(Temp BLOB) ORA-00942: table or view does not exi

    mod_plsql: ORA-942 Execute(Temp BLOB) ORA-00942: table or view does not exist
    This is the error I get in the Apache log. On the page:
    "The requested URL /pls/apex/wwv_flow.accept was not found on this server."
    I am sure this is just a configuration issue. I installed v1.6 with the http server off the companion cd with the db (10.2.0.1). After I had it working (did not test everything) I upgraded to 3.0.1.
    I get this message when I am trying to import an application that I just exported! I am testing this for pushing code up to our production environment.
    My dads.conf file looks like:
    Alias /i/ /oracle/product/apps/htmldb/images/
    AddType text/xml xbl
    AddType text/x-components htc
    <Location /pls/apex>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDatabasePassword xxxxxx
    PlsqlDatabaseConnectString 192.168.2.195:1521:idpdev ServiceNameFormat
    PlsqlDefaultPage apex
    PlsqlDocumentTablename wwv_flow_file_object$
    PlsqlDocumentPath docs
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlAuthenticationMode Basic
    PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
    </Location>
    marvel.conf file is empty
    There is a log file for pl/sql.... it has the following text in it that seemed pertinent: Attempting to logon with '(unknown)'
    Also a log that says this and seems to have a "special character" in it that may be causing an issue:
    <1133864024 ms>6565646261636b206f6e a70726f6d707420202e2e2e646f6e65 a
    <1133864024 ms>-----------------------------2444716671664
    <1133864024 ms>^M
    <1133864024 ms>UploadBlobDoc: readahead 27 bytes into 82f5e5c
    <1133864024 ms>UploadBlobDoc : Inserting piece OCI_NEXT_PIECE
    <1133864024 ms>UploadBlobDoc:Attempt to write 2048 bytes(offset 249857)
    <1133864024 ms>UploadBlobDoc:OCILobWrite for 2048 bytes (offset 249857)
    <1133864024 ms>UploadBlobDoc: Read-Ahead buf 82f5e5c has 27 bytes
    <1133864024 ms>UploadBlobDoc : Inserting piece OCI_LAST_PIECE
    <1133864024 ms>UploadBlobDoc:Attempt to write 27 bytes(offset 251905)
    <1133864024 ms>UploadBlobDoc:OCILobWrite finished for 27 bytes
    <1133864024 ms>ORA-942 Execute(Temp BLOB) ORA-00942: table or view does not exist
    <1133864024 ms>Stale Connection due to Oracle error 942
    <1133864024 ms>/pls/apex/wwv_flow.accept HTTP-404 ORA-00942: table or view does not exist
    <1133864024 ms>(wpu.c,594) longjumping back to the beginning
    <1133864024 ms>(wpu.c,457) cleaning up before longjmp
    <1133864024 ms>(wpu.c,461) doing a rollback
    <1133864024 ms>(wpcs.c, 76) Executed 'rollback' (rc=0)
    <1133864024 ms>(wpcs.c, 76) Executed 'begin dbms_session.reset_package; end;' (rc=0)
    <1133864024 ms>(wpd.c,1816) Going to close cursor
    <1133864024 ms>Freed BLOB
    <1133864024 ms>DeinitCursor
    <1133864024 ms>(wpx.c,690) Shutdown has been called
    <1133864024 ms>(wpx.c,702) Going to logoff
    <1133864024 ms>Logoff: Closing connection due to stale connection
    <1133864034 ms>[ReqEndtime: 2/Oct/2007:15:38:11]
    <1133864034 ms>[ReqExecTime: 80 ms]
    I did go in and update the permissions to the wwv_flow_file_objects$ table to give PUBLIC full access to that table to see if that was the problem... it wasn't.
    Probably information overload, but just wanted to be thorough. Anyone have any ideas?

    I also have another issue... probably more of a clarification....
    I run the following to stop the process:
    "/oracle/product/apps/opmn/bin/opmnctl stopproc ias-component=HTTP_Server"
    then
    "/oracle/product/apps/opmn/bin/opmnctl startproc ias-component=HTTP_Server"
    But, at that point, it says that opmn is not running.
    So I try:
    "/oracle/product/apps/opmn/bin/opmnctl stopall"
    then
    "/oracle/product/apps/opmn/bin/opmnctl start"
    then
    "/oracle/product/apps/opmn/bin/opmnctl startproc ias-component=HTTP_Server" and it still says that opmn is not running.
    Once I start running the stops and starts, it will eventually start correctly.
    I think that I am trying the steps too fast and that I probably need to wait a bit between steps since that seems to work better that way.

  • Mod_plsql cache(?) problem

    Hi all,
    I've a strange problem. I created a procedure like this:
    PROCEDURE test IS
    l_session VARCHAR2(100);
    BEGIN
    INSERT INTO sessions( session , timestamp ) VALUES
    ( dbms_random.string('x',20), sysdate )
    RETURNING session INTO l_session;
    COMMIT;
    htp.p(l_session);
    END;
    There is a unique index on the session column.
    When I execute this from a browser like: http://db02.itiumict.com/pls/htmldb/test multiple times with F5, I get errors because of the unique index on the session column. When I remove the index and try again I noticed that only once per second a new random string is generated and inserted.
    When executed in the database no problem occurs.
    Has anyone encountered this problem also? Maybe it has something to do with the cache functionality of mod_plsql?
    Regards,
    Learco

    You might want to use dbms_random.initialize before dbms_random.string in case your successive requests are assigned to the same database session. I believe the dbms_random components use an attribute of the session (vs. package state) as a base value.
    ah, here it is, from the doc:
    Oracle® Database PL/SQL Packages and Types Reference
    10g Release 2 (10.2)
    Part Number B14258-01
    "DBMS_RANDOM can be explicitly initialized, but does not need to be initialized before calling the random number generator. It will automatically initialize with the date, userid, and process id if no explicit initialization is performed."
    Scott

  • Use oracle http server to configure mod_plsql

    Hi,
    I have a question.
    I have already installed HTTP server using the Oracle Database10g Companion CD
    on my Windows 2000 SP4.
    At the end of the installation, it refers to http://<computer_name>:7777
    to open the HTTP server page.
    It seems work fine that it showed the Welcome page of HTTP Server and I find this
    "Oracle HTTP Server is the Web server component of Oracle Application Server 10g Release 2 (10.1.2). Oracle HTTP Server is a robust, reliable Web server based on the Apache HTTP Server, version 1.3."
    But I could'nt do anything of using the mod_plsql components nor another
    Modules (mods) which showed in the welcome page since there is no link to such things.
    BTW, I have experienced with the HTTP server previously on Oracle9i
    When I open the HTTP server page, it showed links to some Modules (mods)
    components such as mod_plsql, etc.
    Does the HTTP Server in this version need to be configured to use the links like in Oracle9i's HTTP Server?
    Or the new Oracle HTTP server does not support for this thing?
    Actually, I worked on Oracle Workflow, which need the Oracle HTTP server to configure
    some few things such as DAD.
    Please, can anybody help me to solve this problem.
    Thanks,
    Buntoro

    look at
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b12255/confmods.htm
    hope this helps
    carlos

Maybe you are looking for

  • Change alternative chart of account

    what is the differents steps and blocking points when you want to change a lot of alternative account (create new one, replace  old account per a new account,...). What are the impacts and the blocking points in financial statement? Thanks for your f

  • Structure Mapping Question Selected node copying

    Dear experts, I would like to know the following. I have an Idoc to xml-file scenario. The xml is provided. There are for each row in the idoc a number of similar segments (1..unbounded). I want to copy only those segments if they have a particular v

  • How to merge itunes gift card credits

    I have 2 itunes accounts that both have credits from gift cards. I would like to merge the 2 accounts and the respective balances. Can that be done and how do i do that? Thank you

  • Change of lvsbutil since LabView 8.2 ?

    Hello all, using LabView 8.5 I started to create a CIN, using VC++ 2008 Express, from this tutorial and the NI LabView Handbook "Using External Code in LabView". They both are very clear & easy to understand. There were some issues with the variables

  • Set time now

    I have an array of Time Stamps that I want to set to the Time Now when the user clicks a button for that purpose.  I get the current time and format it to my liking.  I'm just not sure how to convert it back to a time stamp and stuff it back into the