HTTP Server + HTTP GET

Hi,
short and simple:
i wrote a small HTTP-Server (SocketListener) which is parsing the Request from the Client.
i am using GET as transfer method, but for big Requests (>= 1468 chars) not all data arrives at the InputStream. Actually, after 1468 bytes its cut. i know, i should not use the get - method for such big data, but i dont really want to implement the POST things, this can easily get too much.
this is the same for ie and firefox browsers, so i guess its something in this part:
StringBuffer request = new StringBuffer();
int i;
byte[] buffer = new byte[5120];
try
i = input.read(buffer);
catch (IOException e)
e.printStackTrace();
i = -1;
for (int j=0; j<i; j++)
request.append((char) buffer[j]);
Please help, this is driving me nuts.
thx in advance,
/Indy

HTTP chunks its messages, usually in 2048 byte blocks (I think). So, try putting your read into a loop:
public byte[] getRequest(InputStream in) throws IOException {
   ByteArrayOutputStream byteOut =  new ByteArrayOutputStream();
   byte[] buffer = new byte[2048];
   int bytesRead = in.read(buffer);
   while (bytesRead >= 0) {
      if (bytesRead > 0)
         byteOut.write(buffer, 0, bytesRead);
         bytesRead = in.read(buffer);
   return byteOut.toByteArray();
}- Saish
"My karma ran over your dogma." - Anon
Good luck.

Similar Messages

  • APEX Oracle 11g HTTP Server - Cannot get SSL working

    I have installed APEX on Oracle 11g with the Oracle HTTP Server on MS Windows server.
    Data base up and running, APEX up an running.
    All works as expected on port 7777
    When I try 4443 I get error message re self signed certificate by Oracle, but if I click through error message I get an https connection.
    I want to replace default cert with a locally signed cert, and get SSL working on 4443, then switch to port 443.
    I have used the Oracle Wallet manager, generated a CSR, had this signed by my corproate CA, and installed the corporate CA cert and the newly signed server cert into the wallet (with Auto Login Set) and saved it in:
    D:\orahttp\Oracle_WT1\instances\apex\config\OHS\ohs1\keystores\infosec2wallet
    This creates two files: ewallet.p12 and cwallet.sso
    I then manually add the group/users "SYSTEM" and "Administrators" to these two files to match the security tab on the default wallet.
    I T then go to the ssl.conf file located at:
    D:\orahttp\Oracle_WT\instances\apex\config\OHS\ohs1\ssl.conf
    and changed the entry:
    #SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
    SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/infosec2wallet"
    I then stop and start the Oracle HTTP Server - ohs1 from the start menu.
    Then I try to connect from my desk top machine using the following URL:
    https://us-pghinfosec2.ariba.com:4443/pls/apex/f?p=101:1:
    I get the clasic MS IE Message:
    ==========
    Internet Explorer cannot display the webpage
    Most likely causes:
    You are not connected to the Internet.
    The website is encountering problems.
    There might be a typing error in the address.
    What you can try:
    Diagnose Connection Problems
    More information
    This problem can be caused by a variety of issues, including:
    Internet connectivity has been lost.
    The website is temporarily unavailable.
    The Domain Name Server (DNS) is not reachable.
    The Domain Name Server (DNS) does not have a listing for the website's domain.
    If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.
    For offline users
    You can still view subscribed feeds and some recently viewed webpages.
    To view subscribed feeds
    Click the Favorites Center button , click Feeds, and then click the feed you want to view.
    To view recently visited webpages (might not work on all pages)
    Click Tools , and then click Work Offline.
    Click the Favorites Center button , click History, and then click the page you want to view.
    ==========
    I am at a loss as to what to do. It acts like Oracle HTTP can not open my wallet.
    I suspect it needs the password to the wallet but I cannot find any place to specify the password, and Auto Login should have addressed that issue.
    Any insights welcome.
    Thanks - Elton Hay

    Hello Lakshmi,
    >
    I got your point but in our case HTTP Server and Oracle Database (APEX) running on different machines.
    Oracle HTTP Server running on a Windows 2003 server and Oracle Database running on Sun Solaris machine.
    So do i need to change Oracle 10g HTTP Server? do i need to install Oracle 11g HTTP SErver?
    Please let me know if my question is not clear.
    >
    <ul><li>
    I got your point but in our case HTTP Server and Oracle Database (APEX) running on different machines.Did I missed something?
    You should have mentioned this additional information in the original question itself.
    </li>
    <li>Oracle HTTP Server running on a Windows 2003 server and Oracle Database running on Sun Solaris machine.As long as [url http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm#BHAFJJDA]dads.conf is configured correctly there should not be a problem with this.
    From Original question:
    We are having Oracle APEX 3.1 version on Oracle 10g Database and Oracle 10g HTTP Server as web server in our organization.How did this setup of APEX worked?(i.e. on different machines)
    If you still have doubt about this you can do the setup and find out before upgrading.
    </li>
    <li>So do i need to change Oracle 10g HTTP Server? do i need to install Oracle 11g HTTP SErver?This question is answered in the above post. As long as you fulfill the [url http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/pre_require.htm#CFHIIJBE]HTTP Server Requirements for APEX 4.2 (Also we are discussing this long about only Oracle 10g HTTP Server but which version?)
    </li></ul>
    Hope now I am more clear!
    Regards,
    Kiran

  • How to configure Oracle HTTP server

    Hi, I installed APEX 3.0 in Oracle 10.2.0.2 database. I installed HTTP server from Oracle 10.2.0 database companion CD. The problem is I am not sure which conf file I need to modify as in the installation document, it only shows steps for how to configure HTTP server 9.0.3/11g/Oracle Application Server 10g. Anybody knows where to get the right doc? Thanks.

    Hi,
    Configure the Oracle HTTP Server (OHS) from the companion CD is the same for other OHS (apart from OHS 9.x where it uses wdbsvr.app).
    So just follow the install guide from
    4.4 About Configuring Oracle HTTP Server
    http://download-west.oracle.com/docs/cd/B32472_01/doc/install.300/b32468/post_inst.htm#BHAGICFJ
    Regards,
    Sunny Patel.

  • How to run a web service which is using https server

    hi all.
    i am tring to send an xml tag to an https server. but get this exception "http_communication_failure"
    in the method "http_client->receive" some say that i need an ssl sertificate but i dont know how to get .
    here is my code any suggestions will be very helpful.
    REPORT  ZEM_SOAPTEST1.
    DATA: rlength TYPE i,
            txlen TYPE string.
    DATA: http_client TYPE REF TO if_http_client.
    DATA: wf_string TYPE string .
    DATA:zstring TYPE string.
    data : tab like zstring occurs 10 with header line.
    CONCATENATE
    ' 0.
    ENDIF.

    Either Tomcat is down (check to see if you can access it with a browser) or wsdeploy is not authenticating properly in which case I think you can set user and password properties in build.properties.
    An alternative to wsdeploy is to drop the .war file in webapps and restart Tomcat for autmatic deployment.

  • Java Errors when starting HTTP server

    OS - W2K
    Oracle 8.1.7
    Pentium 4
    I can install and run the HTTP server on a Pentium 3 and everything works fine. I move to a Pentium 4 and things are not working. I am aware of the bug in the just in time compiler (simcjit.dll) and have removed them. All other Oracle java applications seem to be working fine. When I attempt to start the Apache http server I get 7 pop up windows with the following message:
    java.exe has generated errors and will be closed by Windows.
    You will need to restart the program.
    An error log is being created.
    It would be nice if it gave the location of the error log. It is not in the Windows Application log as I would expect. The Apache server does start but does not work. I guess Oracle does not support 8.1.7 on Pentium 4's. Has anyone out there run into this problem and come up with a work around?
    Thanks,
    John

    We are having the same problem and as yet haven't found a work around. Any assistance would be very useful as we are tied to using 8.1.7 and a Pentium 4.

  • Auroraservice error when trying to start http Server (9iAS)

    Hi
    my problem is that when trying to start oracle http server I get the error message:
    syntax error on line 14 of mod__ose.conf
    AuroraService-directive already in effect for this sever
    what does it mean and what can I do?
    thanks in advance

    Thanks, I now see the ASP.NET 20 version.  I am now getting the following error.
    Server Error in '/OSoft' Application.
    Object reference not set to an instance of an object.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [NullReferenceException: Object reference not set to an instance of an object.]
       System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +264
       System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +877
       OSoft.Services.Platform.Logging.Logger.logError(Object source, String user, String err) +0
       OSoft.Consumers.ZFP.WebBase.PageBase.logException(Exception ex) +312
       OSoft.Consumers.ZFP.WebBase.PageBase.WriteException(Exception ex) +24
       OSoft.Consumers.ZFP.WebBase.PageBase.page_load(Object sender, EventArgs e) +2313
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Control.OnLoad(EventArgs e) +67
       System.Web.UI.Control.LoadRecursive() +35
       System.Web.UI.Page.ProcessRequestMain() +750
    Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407

  • Cannot start Oracle HTTP Server

    Hi,
    if I try to start the Oracle HTTP Server I get the following error message on the console:
    C:\Oracle\product\11.1.1\as_1\instances\instance1\bin>opmnctl startproc ias-component=ohs1
    opmnctl startproc: starting opmn managed processes...
    ================================================================================
    opmn id=bittest1:6703
    0 of 1 processes started.
    ias-instance id=instance1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    ohs1/OHS/OHS/
    Error
    --> Process (index=1,uid=366744641,pid=1728)
    Starten von verwaltetem Prozess nach der maximalen Anzahl der Wiederholungen
    nicht erfolgreich
    Log:
    C:\oracle\product\11.1.1\as_1\instances\instance1\diagnostics\logs\OHS\ohs1\
    console~OHS~1.log
    In the log file I found this entry:
    09/08/28 13:03:32 Start process
    Apache.exe: Syntax error on line 1032 of C:\\oracle\\product\\11.1.1\\as_1\\instances\\instance1\\config\\OHS\\ohs1/httpd.conf: Syntax error on line 3 of C:/Oracle/product/11.1.1/as_1/instances/instance1/config/OHS/ohs1/mod_wl_ohs.conf: Cannot load C:/Oracle/product/11.1.1/as_1/ohs/modules/mod_wl_ohs.so into server: The specified module could not be found
    But this module is definitive in this folder. What can I do?
    Edited by: user8631539 on 28.08.2009 04:14

    I have a workaround - If you are not planning to use mod_wl_ohs then don't load this module.
    You can stop it loading by commenting below line from httpd.conf
    include "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/mod_wl_ohs.conf"
    1. Go to
    C:\\oracle\\product\\11.1.1\\as_1\\instances\\instance1\\config\\OHS\\ohs1/httpd.conf
    2. change
    # Include the configuration files needed for mod_weblogic
    include "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/mod_wl_ohs.conf"
    to
    # Include the configuration files needed for mod_weblogic
    # include "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/mod_wl_ohs.conf"
    3. Restart HTTP Server
    4. $ORACLE_BASE/admin/<instance_name>/bin/opmnctl restartproc ias-component=ohs1
    Atul Kumar
    http://onlineAppsDBA.com

  • Getting the "last modified" property of a file located on HTTP server

    Hello
    I'd like to read a file (on http server) according to his "last modified" time. Can anybody tell me how to get the "last modified" property in a J2ME/CLDC application?
    Thanks in advance

    the file that you want get is in the server?
    you can use java.io.File.lastModified() which in J2SE to get a long num.
    then you can transform long int to orther class that you need ,and do this in server.
    at the end of all you can send this info to J2ME/CLDC app with stream.

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • How to get standalone Oracle HTTP Server with mod_plsql?

    Hi,
    I do not know if it is just me but it seems to be a nightmare to get OHS with mod_plsql from the official OTN download site. I downoaded the companion CD for Windows - 3 disks, installed OHS - no mod_plsql. Then I tried to find any clue on OTN on how to download mod_plsql - none. Plenty of information on how to configure it and use it, but nothing on how to get it.
    PLSQL gateways is not an option for us because many of our clients do not allow direct communication between the database and the Internet.
    Windows 2003 Server R2
    Apex 3.2.1
    RDBMS 10.2.0.4
    Any help appreciated,
    WK
    PS.
    I would not like to download the software from unofficial sites but rather get it straight from Oracle.

    Hi,
    For those interested: I found Oracle HTTP Server with mod_plsql on OTN -> downloads -> middleware -> WebCenter suite.
    WK

  • Getting com.evermind.server.http.NotFoundServlet Exception

    Hi!
    My OC4J 9.0.4 is throwing "com.evermind.server.http.NotFoundServlet" exception messages in its application.log file, It is preceded by "Connection reset by peer: socket write error" or "Connection aborted by peer: socket write error". The whole text of messages are:
    "com.evermind.server.http.NotFoundServlet: destroy" or
    "com.evermind.server.http.NotFoundServlet: init"
    It appears without any explanation, My application consists of an EAR File that contains a WAR file with the JSP's of my application..
    Please could you help me with this issue?.
    Thanks for any support!

    Hi Tugdual
    You can find the full stack trace you requested obtained from the application.log file bellow:
    05/03/13 22:14:31 applicationWAR: jsp: init
    05/03/13 22:14:31 applicationWAR: 9.0.4.0.0 Started
    05/03/14 06:59:23 applicationWAR: Connection reset by peer: socket write error
    05/03/14 07:12:46 applicationWAR: Connection reset by peer: socket write error
    05/03/14 07:12:47 applicationWAR: Connection reset by peer: socket write error
    2005/03/14 07:12:47 applicationWAR: Connection reset by peer: socket write error
    05/03/14 08:06:42 applicationWAR: com.evermind.server.http.NotFoundServlet: init
    05/03/14 09:34:03 Started
    05/03/14 09:34:04 applicationWAR: jsp: init
    05/03/14 09:34:04 applicationWAR: 9.0.4.0.0 Started
    05/03/14 09:35:18 applicationWAR: com.evermind.server.http.NotFoundServlet: init
    05/03/14 15:00:02 applicationWAR: Connection reset by peer: socket write error
    05/03/14 16:47:01 applicationWAR: Connection reset by peer: socket write error
    05/03/14 16:47:01 applicationWAR: Connection reset by peer: socket write error
    My http-web-access.log file shows that the application keeps running until 09:03:33, so the server was restarted at 09:34:03 and I don't have any further information, I expect it to be enough.
    Thanks!!

  • Delete File from URL located on HTTP Server.

    Hello All, could you anybody help me with my Problem. I need to delete some File in URL located on HTTP Server. The File was created via using of the Function 'DP_CONTROL_SEND_STREAM_TO_URL'. Any Times I need to delete this File from the url Location, but I cann't find any Functions or Method of any Class (GUI 6.20) to realise that. I read lot of very good Blogs from Thomas Jung about HTTP classes, but I cann't find somthing relevant for me...
    Sincerely Yours,
    Lubomir

    Hi,
    You can try with GUI_DELETE_FILE and give http location in FILE_NAME
    or WS_FILE_DELETE.
    I am not getting any CNDP function module for your purpose.
    Hope you will get sucess..
    Thanks,
    Chetan Shah

  • Single Sign-on and HTTP Server not started

    I have installed oracle9iAS on SuSE Linux Enterprise Server 8 (SLES 8) which is certified by Oracle to run oracle9iAS. Everything was working propely after installation but when I restarted the server, the listener, the iasdb instance, and the EM started properly but when I went to http://servername:1810 and clicked on start all i got them all started but the HTTP Server and the Single Sign-on. When I tried to start the HTTP Server individually i got the following error:
    oracle.sysman.emSDK.util.jdk.EMException: The opmn request has failed. From opmn: HTTP/1.1 204 No Content Content-Length: 0 Content-Type: text/html Response: 0 of 1 processes started. Check opmn log files such as ipm.log and ons.log for detailed.
    I checked the log and its showing the following:
    03/10/25 16:44:23 Connection 0,192.168.10.11,6200 message missing 'Content-Lengt
    h'
    GET /dms0/Spy?recurse=all&format=xml&operation=get&value=false&units=true&descri
    ption=true&name=%2F HTTP/1.1
    Host: linux2.future:6200
    Connection: Keep-Alive, TE
    TE: trailers, deflate, gzip, compress
    User-Agent: RPT-HTTPClient/0.3-3
    Cache-Control: no-cache
    Pragma: no-cache
    Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
    I tried to start it from command line with the command
    $dcmctl start -ct ohs
    and it returned ADMN-906025
    Anyone can help me solving this problem??

    This error Can be caused by a syntax error in your httpd.conf file, check it / correct it try reloading OHS.
    Ensure that emctl is not running when you run any dcmctl commands! If you have already run any dcmctl commands with emctl running that can cause your problem - if so to fix it solution is really to re-install.

  • HTTP Server fails to starts during E-Business installation

    Hello All,
    I am having issues installing e-business suite 12.1.1 on Oracle Linux 6.2.
    I have applied all the correct packages (and a couple that were not listed in the installation instructions), applied required patches, upgraded the startCD version to the latest, run the md5sum checks on the Stage directory, and a bunch of manual stuff which it doesn't tell you to do in the installation notes, but you have to do to make it work, e.g. linking unzip 5.x from the startCD to /usr/bin/unzip. I thought that I had it cracked until it failed at the last HTTP Server checks.
    I have attempted to restart services manually but it appears as though the HTTP server cannot start due to a missing library libdb-4.3.so:
    HTTP_Server~1.log
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    */u01/applR12/apps/tech_st/10.1.3/Apache/Apache/bin/httpd: error while loading shared libraries: libdb-4.3.so: cannot open shared object file: No such file or directory*
    There was another post where a similar issue was resolved in a OEL 5 x86.x64 install by applying a i383 gdbm package, and linking the existing library as the document id which you posted suggested.
    This package cannot be applied, as I have attempted.
    I then started to look for the library which is reported in the logs as being missing, i.e. libdb-4.3.so. This does not appear to exist for OEL 6.
    I then looked further afield and found a Centos 6.2 rpm which contained this library. I extracted this and linked it to the libdb.so.2 (patch 6078836).
    I am getting the following from the adstrtal.log (I ran the cat command as root not adstrtal.sh which I ran as the application user):
    *# cat /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adstrtal.log | grep Failed*
    Web Application Services OACORE OC4J Instance <SID>_<HOST> adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance <SID>_<HOST> adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance <SID>_<HOST> adoafmctl.sh Failed
    This is different to what I was seeing previously where all a 4 Web Application Services had failed
    *# cat /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adstrtal.log | grep -v "status 0" | grep status*
    adoacorectl.sh: exiting with status 150
    adformsctl.sh: exiting with status 150
    adoafmctl.sh: exiting with status 150
    ServiceControl is exiting with status 3
    Looking at the respective log files I am seeing the following:
    adoacorectl.txt
    *06/27/12-07:35:10 :: adoacorectl.sh version 120.13*
    *06/27/12-07:35:10 :: adoacorectl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:10 :: adoacorectl.sh: Starting OPMN managed OACORE OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:10 :: adoacorectl.sh: exiting with status 150*
    *================================================================================*
    adformsctl.txt
    *06/27/12-07:35:11 :: adformsctl.sh version 120.16*
    *06/27/12-07:35:11 :: adformsctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:11 :: adformsctl.sh: Starting OPMN managed FORMS OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:11 :: adformsctl.sh: exiting with status 150*
    *================================================================================*
    adoafmctl.txt
    *06/27/12-07:35:11 :: adoafmctl.sh version 120.8*
    *06/27/12-07:35:11 :: adoafmctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:11 :: adoafmctl.sh: Starting OPMN managed OAFM OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:11 :: adoafmctl.sh: exiting with status 150*
    *================================================================================*
    Running adapcctl.sh by itself I am seeing the same issue reported in the log files:
    *$ ./inst/apps/<SID>_<HOST>/admin/scripts/adapcctl.sh start*
    You are running adapcctl.sh version 120.7.12010000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adapcctl.txt for more information
    Looking at the log file I can see the following:
    *06/27/12-08:15:27 :: adapcctl.sh version 120.7.12010000.2*
    *06/27/12-08:15:27 :: adapcctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-08:15:27 :: adapcctl.sh: starting OPMN managed OHS instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-08:15:27 :: adapcctl.sh: exiting with status 0*
    *================================================================================*
    I have attempted to restart opmn using adopmnctl.sh, which was unsuccessful. Looking at the HTTP_Server~1.log I can see the following the error:
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    */u01/applR12/apps/tech_st/10.1.3/Apache/Apache/bin/httpd: error while loading shared libraries: libdb-4.3.so: cannot open shared object file: No such file or directory*
    Has been replaced by the recurring message:
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    Syntax error on line 264 of /u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/conf/httpd.conf:
    Cannot load /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so into server: /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so: undefined symbol: dbm_firstkey
    Looking at line 264 of httpd.conf I can see the following:
    LoadModule ossl_module libexec/mod_ossl.so
    Which looks fine when compared to the rest of the file.
    I am not able to look at the /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so.
    I do not know where else to go with this now. Any guidance which you could provide would be very much appreciated.
    Regards,

    Hello Hussein,
    Thank you for getting back to me! As per the installation instructions it states the following:
    # cd /usr/lib
    # ln -s libdb-4.7.so libdb-4.3.so
    However there is no libdb-4.7.so library there to link to.
    I have installed the db4 i686 & x86_64 packages which contain this library, then performed the above. I then ran the adstrtal.sh command which completed without incident.
    As such the Required Packages in the installation instructions should be updated to include the following:
    db4.i686
    db4-devel.i686
    db4.x86_64
    db4-devel.x86_64
    Regards,

  • Problem in starting HTTP Server (Oracle 9i AS Rel 1 on Solaris 2.8)

    Hi All,
    I have installed Oracle9i database Rel1 (version 9.0.1) on Sun Solaris2.8) successfully and now, I'm trying to install Oracle 9i Application Server Rel1 (version 1.0.2.2.1) on the same system. I stopped the database before starting installion of AS. My installation is limited to Oracle Forms & Reports Services and Oracle HTTP Server. Installation successfully completed, but, it is failed to start HTTP server. The error I'm getting is:
    Syntax error on line 14 of $ORACLE_HOME/Apache/Apache/conf/mod__sse.conf
    AuroraService - directive already in effect for this server.
    $ORACLE_HOME/Apache/Apache/bin/httpsctl start: httpd could not be started.
    Line 14 in mod__sse.conf is:
    AuroraService inst1_http
    How can I resolve this issue ? Please help.
    An early help would be highly appreciated.
    Thanks in Advance.
    Sajan Thomas

    Hi,
    I have resolved that issue by commenting that line. Since I'm not using servlets, I hope that wouldn't create any problems !
    Sajan

Maybe you are looking for

  • Yoga 13 after Win 8.1 update - apps for Netflix, CNN, ESPN, etc. will not play video - WTH?

    Can someone point me to where I can download the right driver(s) / updates that fix thw Windows 8.1 mess that crippled video playback in the Modern/Metro Win8 interface please?   I had other issues with wireless (which I fixed by buying a Linsys 802.

  • Messages sit in Outbox?

    For some odd reason - none of my email messages get sent out from my iPhone anymore. Everything used to work just fine. I never made any adjustments to any settings. All of my mail since this past weekend just sits in my outbox and never gets sent ou

  • JT400 General Advice Please

    I am looking at developing some code to access the AS/400 via program calls. What I am looking for is a bit of general advice on a couple of items: - 1. Connection Pooling. Seems like a good idea. Are there any pitfalls / traps that I should be aware

  • MXF files error importing

    Hey guys i need your help plz! im trying to import an mxf files from an hdd to primiere pro cs6 and it isnt working ,it gives an error say the importer reported a generic error any help ??

  • 3GS cannot send mail

    Just in the last couple of days I find that I cannot send mail. I compose and when I hit send it just disappears. No attempt at sending is made. It does not save a draft or try to connect. It does not end up in my Outbox either. The BCC copies never