Weblogic certificate is not being authenticated in Oracle HTTP Server

I am using Oracle HTTP Server with SSL and mod_proxy set up trying to pass a url through to the weblogic server. I start with my OHS url in the browser and the proxy is switches to the url to weblogic but I get the following error on the OHS side:
[2011-12-22T18:40:09.4683-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-2077] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] nzos proxy handshake error, nzos_Handshake returned 29024(server social.us.oracle.com:443, client 10.139.164.191)
[2011-12-22T18:40:09.4683-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-2171] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] NZ Library Error: Invalid X509 certificate chain [Hint: the client probably doesn't provide a valid client certificate]
[2011-12-22T18:40:09.4685-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-9999] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] (20014)Internal error: proxy: pass request body failed to 10.139.164.191:7001 (denovm11-1.us.oracle.com)
[2011-12-22T18:40:09.4685-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-9999] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] proxy: pass request body failed to 10.139.164.191:7001 (denovm11-1.us.oracle.com) from 10.139.164.196 ()
And the following error on the weblogic side:
####<Dec 22, 2011 6:40:10 PM MST> <Warning> <Security> <denovm11-1> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <8e6c6502a1af117a:4eeee51e:13466bb040d:-8000-000000000000a764> <1324604410502> <BEA-090482> <BAD_CERTIFICATE alert was received from denovm11-6.us.oracle.com - 10.139.164.196. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
Here is my ssl.conf from OHS:
# Oracle HTTP Server mod_ossl configuration file: ssl.conf #
# OHS Listen Port
Listen 443
<IfModule ossl_module>
## SSL Global Context
## All SSL configuration in this context applies both to
## the main server and all SSL-enabled virtual hosts.
# Some MIME-types for downloading Certificates and CRLs
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
# Pass Phrase Dialog:
# Configure the pass phrase gathering process.
# The filtering dialog program (`builtin' is a internal
# terminal dialog) has to provide the pass phrase on stdout.
SSLPassPhraseDialog builtin
# Inter-Process Session Cache:
# Configure the SSL Session Cache: First the mechanism
# to use and second the expiring timeout (in seconds).
SSLSessionCache "shmcb:${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/ssl_scache(512000)"
SSLSessionCacheTimeout 300
# Semaphore:
# Configure the path to the mutual exclusion semaphore the
# SSL engine uses internally for inter-process synchronization.
<IfModule mpm_winnt_module>
SSLMutex "none"
</IfModule>
<IfModule !mpm_winnt_module>
SSLMutex pthread
</IfModule>
## SSL Virtual Host Context
<VirtualHost *:443>
<IfModule ossl_module>
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
# Client Authentication (Type):
# Client certificate verification type and depth. Types are
# none, optional and require.
SSLVerifyClient none
# SSL Cipher Suite:
# List the ciphers that the client is permitted to negotiate.
SSLCipherSuite SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_DES_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA
# SSL Certificate Revocation List Check
# Valid values are On and Off
SSLCRLCheck Off
#Path to the wallet
SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfModule>
<IfModule proxy_module>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
# Path to the wallet
SSLProxyWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
SSLProxyEngine on
SSLProxyVerify none
# ottest : denovm11-1
ProxyPass /test https://abc.us.oracle.com:7001/test
ProxyPassReverse /test https://abc.us.oracle.com:7001/test
</IfModule>
</VirtualHost>
</IfModule>
On the OHS side I have all the certificates needed so SSL is working properly. The weblogic environment is currently working fine with other webgates, but those are apache and we are trying to switch to OHS.
Can OHS use mod_proxy to connect to weblogic or do I need to use mod_wl_ohs?
Does anyone see anything wrong in my ssl.conf file in regards to the proxy section.
Thanks in advance.

In summary:
You need to create a new wallet with CSR (certificate signing req)
Send this to your certificate authority and get the signed server certificate.
Now import the signed server cert and the trusted root cert in to the wallet that you created newly.
Modify ssl.conf to point to the new wallet location.
To create wallet refer to : http://docs.oracle.com/cd/E25054_01/core.1111/e10105/wallets.htm#CHDGIJDC
Further reference: http://docs.oracle.com/cd/E25054_01/core.1111/e10105/sslconfig.htm#CBDGIJDF
Dont mind if this doc is 500 pages ;)

Similar Messages

  • Slow performance with oracle http server connecting weblogic

    I have a performance issue while using Oracle HTTP server as a proxy with weblogic server. It takes 10-15 seconds to pass the requests.
    I also received the error related to SSL in my error logs even though i havent configured the SSL.
    please find the error received in the OHS error logs
    nzos handshake error, nzos_Handshake returned 28862
    NZ Library Error: SSL IO error [Hint: the client stop the connection unexpectedly]
    And please find a request information from the access log files.
    Fri May 28 09:24:48 2010 <5944127503148828> getPooledConn: No more connections in the pool for Host[114.57.162.39] Port[6499] SecurePort[6499]
    Fri May 28 09:24:48 2010 <5944127503148828> general list: trying connect to '114.57.162.39'/6499/6499 at line 3082 for '/fed/user/authnoam?refid=id-ixGFItkxw4Nt4l3wlz4W9sWR-ao-'
    Fri May 28 09:25:00 2010 <5944127503148828> SSL is not configured for this connection
    Fri May 28 09:25:00 2010 <5944127503148828> Local Port of the socket is 4472
    it is visible that the while it is doing "general list trying to connect to" it takes a long time
    Any pointers are highly appreciated.

    Shannon,
    The OHS + Weblogic installation, just means you will have an admin server, with Enterprise Manager that can manage your OHS instances. That being said:
    1 - You don't have to extend any domain, since the only thing OHS will need is an Admin Server with Enterprise Manager.
    2 - I (myself, I don't speak for Oracle here) have a personal preference of having stand alone OHS. If you don't know how to work with httpd.conf and mod_wl.conf, I would suggest installing a separate domain only for it, that way you can keep the weblogic turned off, and turn it on only when you need to edit any configuration.
    Thanks

  • Install SSL certificate for Oracle HTTP server

    I received a PFX file that contains an SSL wildcard certificate for our company *.xyz.com.
    I used this tool "xca" to extract two files: "server.crt" and "serverkey.pem".
    I want to install this on the oracle 11g HTTP server (OHS) installed as standalone based on apache 2.2
    With oracle, i have to create a wallet and point the SSL.CONF wallet directive to use that wallet.
    I used Oracle Wallet Manager to create it and import the certificate but this is where i am having a problems.
    First I could not restart the web server but the it worked but I got SSL handshake errors (Shown below).
    According to oracle steps, I have to create a CSR and then import the certificate into the wallet
    http://www.apache.com/resources/how-to-setup-an-ssl-certificate-on-apache/
    However, when I tried to use Oracle Wallet Manager, there were two options: import server certificate and trusted certificate.
    The import server certificate was greyed out. I had to create a CSR just to get it enabled but I did not use the CSR, i just imported the "server.crt" file.
    I also tried to import the "serverkey.pem" into the trused certificate option but was rejected (invalid certificate).
    Do you know how to create a successful wallet based on the files i have and not creating a CSR since i already have a certificate file?
    2013-05-04T20:11:40.2718-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1253263680] [user: root] [VirtualHost: ptp.xyz.xom:443] nzos handshake error, nzos_Handshake returned 29040(server ptp.xyz.xom:443, client 10.60.117.121)
    [2013-05-04T20:11:40.2719-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1253263680] [user: root] [VirtualHost: ptp.xyz.xom:443] NZ Library Error: Unknown error
    [2013-05-04T20:11:40.4774-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1263753536] [user: root] [VirtualHost: ptp.xyz.xom:443] unusably short session_id provided (0 bytes)
    [2013-05-04T20:11:40.4776-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1263753536] [user: root] [VirtualHost: ptp.xyz.xom:443] nzos handshake error, nzos_Handshake returned 29040(server ptp.xyz.xom:443, client 10.60.117.121)
    [2013-05-04T20:11:40.4776-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1263753536] [user: root] [VirtualHost: ptp.xyz.xom:443] NZ Library Error: Unknown error
    [2013-05-04T20:11:40.6814-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1274243392] [user: root] [VirtualHost: ptp.xyz.xom:443] unusably short session_id provided (0 bytes)
    [2013-05-04T20:11:40.6816-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1274243392] [user: root] [VirtualHost: ptp.xyz.xom:443] nzos handshake error, nzos_Handshake returned 29040(server ptp.xyz.xom:443, client 10.60.117.121)
    [2013-05-04T20:11:40.6816-04:00] [OHS] [ERROR:32] [] [core.c] [host_id: ptp.xyz.xom] [host_addr: 10.72.11.211] [pid: 11339] [tid: 1274243392] [user: root] [VirtualHost: ptp.xyz.xom:443] NZ Library Error: Unknown error

    I do not have weblogic installed. I only have standalone 11g HTTP server with mod_plsql.
    If i can get OWM working to create a successful certificate them the problem would be resolved.
    I am just not sure what is Root Certificate and Trustworthy Certificate and how to get that from the files i have.

  • How to integrate Oracle Http Server with Weblogic

    Weblogic supports Apache web server 2.0 and 2.2 to be a proxy server. Oracle Http Server (OHS) is based on Apache 2.0. I am trying to configure Weblogic to use OHS that comes with OAS install as proxy on Linux environment. I am unable to get the WLS plugin for Apache to work with OHS. When I tried to start the OHS, I got the following errors:
    /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/bin/apachectl startssl: execing httpd
    Syntax error on line 1125 of /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/conf/httpd.conf:
    Cannot load /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/libexec/mod_wl128_20.so into server: /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/libexec/mod_wl128_20.so: undefined symbol: apr_pool_cleanup_null
    I checked the library, and I found in several places, such as /usr/lib.
    The following is the configuration that I put in http.conf file:
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7001
    MatchExpression /AIP
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7001
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    Anybody knows how to fix this?
    Thanks.

    You're right: Weblogic supports Apache web server 2.0 and 2.2 to be a proxy server but you are using Oracle Application Server 10.1.3.1.0 which is based on Apache *1.3* as you can read in "Oracle® HTTP Server Administrator's Guide"
    10g (10.1.3.1.0) - Part Number B28948-01 - 1.1 Oracle HTTP Server Features, right under "Based on Apache - HTTP v1.1 Support" at
    http://download.oracle.com/docs/cd/B31017_01/web.1013/b28948/overview.htm#i1008837.
    As far as I know, the only OHS based on Apache *2.0* is available as a standalone release: "Oracle HTTP Server (Apache 2.0) (10.1.3.3.0) for Linux x86" - 32bit. You can download it from http://www.oracle.com/technology/software/products/database/oracle11g/111060_linuxsoft.html (as_101330_apache2_lnx.zip).
    I've tested it successfully.
    Edited by: Virgil on Jan 15, 2009 3:08 AM

  • SSL Certificate problem in the Oracle http server

    Hi,
    I have setup the oracle http server (OHS 11g) in linux machine and we created a virtual directory to access a web application.
    In NON SSL connection it is working fine but when we try use the SSL connection we are not able to access the web application the port (4443) is not up.
    Require help in this issue ?
    regards,
    Suresh G
    Edited by: Sangeetha on Jan 3, 2013 12:13 PM

    Hi Suresh,
    Did u check the port ??
    Also cud you paste the steps u followed do configure SSl on Ohs ??
    Cheers :-)

  • Fatal error: Client does not support authentication protocol requested by server; consider upgrading MySQL client

    Fatal error: Client does not support authentication protocol
    requested by server; consider upgrading MySQL client in
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on line 9
    This is the error that comes up on the server where the site
    sits. The database is working on my local machine with the local
    settings, but wont connect due to the above.
    I think im using MySQL client 3.23 How do i upgrade?
    I found this on MySQL site:
    http://dev.mysql.com/doc/refman/5.0/en/old-client.html
    I'm not sure how to edit the connection string to make it
    accept the vaules.

    The_FedEx_Guy wrote:
    > Fatal error: Client does not support authentication
    protocol requested by
    > server; consider upgrading MySQL client in
    >
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on
    > line 9
    > I think im using MySQL client 3.23 How do i upgrade?
    The MySQL client that the error refers to isn't the version
    of MySQL,
    but the MySQL library bundled with PHP. It sounds as though
    your hosting
    company has upgraded to MySQL 4.1 or higher, but is still
    using PHP 4.
    > I'm not sure how to edit the connection string to make
    it accept the vaules.
    You can't. It's the way that the user account passwords are
    stored in
    MySQL. You need to get the hosting company to upgrade to PHP
    5 or to
    reset the passwords in MySQL using the OLD_PASSWORD()
    function. This
    needs to be done by someone with top-level administrative
    privileges on
    the database.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Oracle HTTP server could not be started.. Urgent....  help me!!!

    Dear oracle professionals,
    I've installed 9iAS in my win2000 server. and it was working well but yesterday when i started my oracle http server service it says the following error in a message box,
    "Apache.Exe - Entry point not found
    The procedure entry point OCIUserCallBackRegister could not be located in the dynamic link library OCI.dll "
    and service failed without starting. my day to day operations in this server have been stopped now. anybody can help me noww????
    Thanks in advance!!
    Kathir

    Hi,
    what's the version of iAS you are using. If it is iAS v2, you shouldn't start / stop HTTP server stand-alone. You should use opmnctl script $ORCALE_HOME/opmn/bin. This "opmn" service is also listed in you win*2000 machines service list.
    Hope that helps.
    Ved

  • Oracle HTTP server could not be started.. Ur....  help me!!!

    Dear oracle professionals,
    I've installed 9iAS in my win2000 server. and it was working well but yesterday when i started my oracle http server service it says the following error in a message box,
    "Apache.Exe - Entry point not found
    The procedure entry point OCIUserCallBackRegister could not be located in the dynamic link library OCI.dll "
    and service failed without starting. my day to day operations in this server have been stopped now. anybody can help me noww????
    Thanks in advance!!
    Kathir

    Hi,
    what's the version of iAS you are using. If it is iAS v2, you shouldn't start / stop HTTP server stand-alone. You should use opmnctl script $ORCALE_HOME/opmn/bin. This "opmn" service is also listed in you win*2000 machines service list.
    Hope that helps.
    Ved

  • Trying to download Oracle HTTP Server keeps sending me to Weblogic Server

    I'm trying to find a link to download Oracle HTTP Server for use with APEX. Can someone provide a current link?
    I've gor a linux 64 bit x86 installation redhat version 5.3. I tried to do a see all, on the database download page, but I'm not seeing Oracle HTTP Server as an available link. Did this recently change?
    Thanks,
    Phil
    Edited by: Phil McDermott on Feb 3, 2009 10:46 AM

    I remember it, but all signs are gone on the web site. Cannot for the life of me remember its name something like "Oracle HTTP Server"
    is this it??
    http://www.oracle.com/technetwork/middleware/ias/index-091236.html

  • Oracle Http server can not start

    Hi friends,
    I'm running OAS 9i Release 2 (9.0.2.0.1) under Windows 2000 Server and I have some difficulties to start Oracle http server.
    When starting it under this the dos prompt (using the following command: C:\ora9ias_forms\opmn\bin>opmnctl.exe startall), I receive the following message:
    Request partial success -- 1 of 6 processes started.
    What's wrong ?.
    How to solve this matter. Thanks.

    Look under opmn/logs/
    There are 3 logs that can help, read the ons.log, You can fin de reason in there.
    Did you modify any conf file before restart?

  • Oracle HTTP Server

    Sir,
    I once again facing problem of HTTP Server it again not started the file contain the following entries where didn't show any duplicate entries but HTTP server couldn't start please help me.
    Oracle Appachae file contain following entries
    # Advanced Queuing - AQ XML
    include "H:\oracle\ora92\rdbms\demo\aqxml.conf"
    include "H:\oracle\ora92\xdk\admin\xml.conf"
    include "H:\oracle\ora92\Apache\modplsql\cfg\plsql.conf"
    include "H:\oracle\ora92\Apache\jsp\conf\ojsp.conf"
    include "H:\oracle\ora92\sqlplus\admin\isqlplus.conf"
    include "H:\oracle\ora92/oem_webstage/oem.conf"
    oracle isqlplus.conf contain following entries
    # Copyright (c) 2001, 2002, Oracle Corporation. All rights reserved.
    # NAME
    # isqlplus.conf
    # PURPOSE
    # Oracle HTTP Server directives for the iSQL*Plus server
    # USAGE
    # This file should be included in the Oracle HTTP Server
    # "oracle_apache.conf" file.
    # Enable handling of all virtual paths beginning with "/iplus/"
    # Note: only /iplus/ is mapped, /iplus is not being mapped
    <IfModule mod_alias.c>
    Alias /iplus/ "H:\oracle\ora92\sqlplus\admin\iplus/"
    # Disallow users from trying to access /iplus/ directory listing
    <Directory "H:\oracle\ora92\sqlplus\admin\iplus">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Maps all virtual paths beginning with "/isqlplus*" to the iSQL*Plus
    # FastCGI application
    <IfModule mod_alias.c>
    ScriptAliasMatch ^/isqlplus(.*) H:\oracle\ora92\bin\isqlplus
    ScriptAliasMatch ^/isqlplusdba(.*) H:\oracle\ora92\bin\isqlplus
    <Directory "H:\oracle\ora92\bin">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Enable handling of all virtual paths beginning with "/isqlplus"
    <Location /isqlplus>
    SetHandler fastcgi-script
    Order deny,allow
    # Comment "Allow ..." and uncomment the four lines "AuthType ..."
    # to "Require ..." if Oracle HTTP authentication access is required
    # for the http://.../isqlplus URL
    Allow from all
    #AuthType Basic
    #AuthName 'iSQL*Plus'
    #AuthUserFile H:\oracle\ora92\sqlplus\admin\iplus.pw
    #Require valid-user
    </Location>
    # Enable handling of all virtual paths beginning with "/isqlplusdba".
    # Note: Oracle HTTP authentication access must be configured to
    # prevent unauthorized users performing DBA operations on
    # the database
    # Use the HTTP server utility script "htpasswd" to add users to the
    # "iplusdba.pw" file.
    <Location /isqlplusdba>
    SetHandler fastcgi-script
    Order deny,allow
    AuthType Basic
    AuthName 'iSQL*Plus DBA'
    AuthUserFile H:\oracle\ora92\sqlplus\admin\iplusdba.pw
    Require valid-user
    </Location>
    # Setup the iSQL*Plus FastCGI application.
    <IfModule mod_fastcgi.c>
    FastCgiServer H:\oracle\ora92\bin\isqlplus -port 8228 -initial-env iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
    </IfModule>

    I once again facing problem of HTTP Server it again not startedWhat error do you get? What OS are you using? Which release
    and version of Oracle are you using? What debugging steps have you
    alread tried and what results did they give you?
    -- CJ

  • Oracle HTTP Server as web tier for OBIEE - Best Practices?

    Hi All,
    A bit of a cross-topic issue - IHAC which wants to add a web tier (in a form of additional DMZ server with Oracle HTTP Server installed) to existing OBIEE installation.
    Are there any best practices regarding all the security aspects - installations, ports, SSL, certificates, keystores etc. ?
    Thank you in advance,
    Roman

    Am not using weblogic, I'm doing standalone setup
    Standalone:
    FMW 11g Web-Tier products are configured without a domain and administered from the command line. In this case, be sure to UN-check the selection for “Associate to WebLogic Domain” during the installation prompts and uncheck the web cache.. Only OHS is installed.
    Is it possible to install sun jdk 64 bit on AIX 7.1 machine.. ?

  • Oracle HTTP Server (OHS)  Installation Problem on Win 2003 Server SP2

    Hi,
    I tried to install Oracle HTTP Server (OHS) on my Windows 2003 server SP2, however I couldn't manage to succeed this.
    I tried on 3 different win2003 server SP2 machines and couldn't able to install properly.
    I easily installed and run this HTTP server on my Windows 7 machine. However on the other partition of my PC
    windows server 2003 is installed. It didn't worked on this OS.
    Once I was somehow able to install OHS on my 64 bit Windows 2008 Server, but again never:((
    I got the following error messages during the install.
    waiting for your answers .
    ERROR1
    Web Tier Configuration
    Log
    Config Action Web Tier Configuration started
    Create and Start AS Instance (instance1)
    Error
    Unable to validate NonJ2EEManagement Application deployment on admin server.
    Step Create and Start AS Instance (instance1) failed
    Unable to validate NonJ2EEManagement Application deployment on admin server.
    Step Create and Start AS Instance (instance1) failed
    Log
    Step Create and Start AS Instance (instance1) started
    Deploying NonJ2EEManagement Application...
    Step Create and Start AS Instance (instance1) failed
    Step Create and Start AS Instance (instance1) failed
    Create and Start OHS Component (ohs1)
    Log
    Create Shortcuts
    Log
    ERROR2
    Web Tier Configuration
    Log
    Config Action Web Tier Configuration started
    Create and Start AS Instance (inst2)
    Error
    Unable to start opmn
    Step Create and Start AS Instance (inst2) failed
    Unable to start opmn
    Step Create and Start AS Instance (inst2) failed
    Log
    Step Create and Start AS Instance (inst2) started
    Creating Oracle Instance directories...
    Recording OPMN ports reservations...
    Bootstrapping OPMN configuration files...
    Instantiating opmnctl for direct usage...
    Registering instance
    Step Create and Start AS Instance (inst2) failed
    Step Create and Start AS Instance (inst2) failed
    Create and Start OHS Component (ohs2)
    Log
    Create Shortcuts
    Log

    A few guesses what could be wrong.
    - Under which user are you installing, does this user have all the rights to create and start stuff.
    - Have you first installed a weblogic server (this should be installed) and did associate any components with the weblogic domain?
    I usually do not associate anything with my weblogic domain and configure the httpd.conf file for the Apache server by hand instead of using the enterprise manager.
    Once the WebLogic server is installed i follow the following steps
    Installation WebTier
    Run setup.exe
    Select Install Software - Do Not Configure.
    Click Next.
    Prerequisite Checks --> Next.
    Accept the default installation directory.
    Click Next.
    Uncheck i wish to... click Next (in the pop-up Yes)
    Click Install.
    Click when the installation it finished and click Finish
    Configuration WebTier
    Run the file <WebTier-Home>/bin/config.bat.
    Click Next
    Uncheck Associate Selected Components with WebLogic Domain and click Next
    Accept the defaults and click Next
    Enter the parameters for the WebCache
    Web Cache Administrator Password: password
    Confirm Password: password
    Click Next.
    Select Auto Port Configuration and click Next.
    Uncheck I wish to... and click Next. (pop-up Yes)
    Click Configure
    Click Next and Click Finish
    When i follow the above steps an instance of the webtier is running.

  • How to call webservice through Oracle HTTP Server

    I have cluster of three Managed Servers. They are behind a Oracle HTTP Server. I deployed a web service to the cluster. When calling web service, I got the error. The error is that the client of web service can not directly access the Managed Servers.
    The error tell that it can not access http://webapp01:7003/webservice/HelloWorld?WSDL
    Where webapp01 is the host name of a managed server.
    Is there a way that web service return the result to HTTP Server and HTTP Server return it to web service client.

    1. Before you invoke the WebServices from client program, I guess you may have already generated the webservices client jar for the WSDL that is deployed using sun jdk "wsimport" command or bea's clientgen ant task. At this time, what is the wsdl url you gave. In the generated client jar file you should see .JAVA files also. Check the Service related .java file and check the WSDL URL in that file. If it is using weblogic servers managed server host and port, then the problem you see is obvious.
    2. To fix this, you re-generate the webservices client jar file again this time giving the http server host and port instead of weblogic host and port. I am hoping you already modified httpd.conf file to accept the webservice url pattern. Check the .JAVA file generated for service to see the WSDL URL that is having inside.
    3. Another approach is on your client side, before you invoke any operation on WebService, you will be first getting Service object, then Port object and invoke methods on Port object. When you get Service Object, you can pass the WSDL URL as one parameter and ServiceName (QName) as second parameter. Most of time we use default constructor without any parameters to get Service object. But you can use other constructor and pass 2 parameters. The WSDL URL will have HttpServers host and port, and rest of the url for wsdl will be the same.
    In our env, we have similar requirment. SOAP BPEL Process WebServices are deployed on WLS 10.3.1 on a Cluster with 2 ManagedServers. We have Apache Proxy in front of this Cluster. All our WSDL requests goes to Apache host and port + wsdl url. This inturn goes to one of the managed servers at a time in round-robin. This is working. In httpd.conf we gave "MatchExpression / " so that any request from apache will go to cluster.
    HTH
    Ravi Jegga

  • How to install Soap on the (Apache) Oracle HTTP Server

    Hi,
    Does anyone know how to install SOAP on the Oracle HTTP Server? I downloaded a soap version (it seems that the standard version comes without SOAP) from the xml.apache.org site and followed the installation instructions as far as I could (only Tomcat is described). However, no 'soaping'!!! Maybe I'm overlooking something because I cannot imagine that it should be difficult.
    Thanks in advance!
    Hans

    Hans, the SOAP implementation is part of OC4J. You get it out of the box. Check out how to use the out-of-the-box implementation in the tutorials on Web services with Oracle9i JDeveloper at:
    http://otn.oracle.com/tech/webservices/htdocs/series/content.html
    These tutorials/samples use the implementation of SOAP/WSDL that Oracle calls J2EE Web Services and this is the long term direction of Oracle's Web services implementation. This implementation is what Oracle will be evolving to Sun's Java Web Services Developer Pack as it finalizes into J2EE 1.4.
    If you want to use Oracle/Apache SOAP, this too is included in OC4J but its support is being deprecated in future releases of Oracle9iAS in favour of the J2EE Web Services implementation. To find it, check out the OC4J/soap/webapps/ directory for the soap.ear file (it is in a slightly different spot if you are using the full Oracle9iAS R2 but still within the soap directory structure. Simply add <application name="soap" path="../../../soap/webapps/soap.ear" auto-start="true"/> to your OC4J server.xml and <web-app application="soap" name="soap" root="/soap" /> to your OC4J http-web-site.xml, re-start and away you go.
    Finally, just to be sure, SOAP support in Oracle9iAS did not appear until 1.0.2.2.x and higher. If using 1.0.2.1 or less, you are correct, there is no SOAP support.
    Mike.
    Most folks that try out the J2EE Web Services find it is pretty easy to use so

Maybe you are looking for

  • Select-options in dynpro

    Hi expert, I maked a modul pool ( se80 ) and i maked a dynpro. In this dynpro i putted a Input/Output field. It's run ok, but I would change it in select-options and not a simply I/O field. It's possible ? How ? Tks a lot, bye. <LOCKED BY MODERATOR -

  • Screensaver, system sounds and itunes problem

    I did all the updates and even used migration assistant so my computer has been through allot already. I do not know which update affected my screen saver and optical audio but my screen saver is having the same issue with two monitors. My VGA monito

  • Physical Inventory by Area

    I have a simple business scenario that for physical inventory counting.  Raw Materials are store in 1 storage location.  They are required to count them 1 time a month.  The warehouse personnel split up the storage location into 4 areas (lanes) and c

  • Assign  Business Area to Controling area

    Hi All, Please tell me How we can Assign Contrling Area / Cost Centre to Business Area? Regards Ajit Gawade.

  • Can't delete transition

    I have many projects that I have saved and when I select a transition, I can not drag the transition to the trash. It makes no difference whether I am in timeline or clip view, same problem. I can edit the transition by changing the length and updati