How to install Apache Soap in OC4J?

I used Soap in Tomcat an couple of weeks ago. I try to use Soap in OC4j. I can not find any instruction in soap web site. Could you please tell me if you know how to do it?
Thank you.
Marian

Hi,
to deploy the Apache SOAP (Axis I guess) you can do the following (this deployment is to the global application of OC4J):
Add to application.xml:
<web-module id="axis" path="C:\\TEMP\\xml-axis-alpha3\\webapps\\axis" />
Add to http-web-site.xml or default-web-site.xml (depending if you are running 1.0.2.2 or the pre-release of OC4J v2.0):
<web-app application="default" name="axis" root="/axis" />
You can now access the app using the following URL: http://localhost:8888/axis
Thanks,
Andy

Similar Messages

  • How to install Apache Server on Linux 10G for HTML DB 1.6

    Hello,
    i have Oracle 10g installed under Suse Linux. Apache needed to be installed too in the oracle home but isn't.
    it's required for HTML 1.6 DB install.
    i did not found it with the normal installation image, how to install Apache for Oracle? for 10G?
    Regards
    Carl

    The Apache is on the Companion CD
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/linuxsoft.html
    Also HTMLDB 1.5, so Install only the Application Server and add the HTMLDB 1.6 from separate Download

  • How to install Apache module mod_rewrite

    Kindly tell me, how to install Apache module mod_rewrite which is a standard module in the Oracle HTTP Server (OHS).. I have installed OAS(10.1.2) but mod_rewrite module is missing..
    Edited by: SrinivasanSeniorDBA on 26 Feb, 2010 2:42 PM

    Got it

  • How to install Apache Web server on my SAP Content Server

    Dear Experts,
    I am in the process of installaing Content Server in my landscape, i am working on Suse Linux 10 SP2 and planning to install ContentServer 6.30.
    I have read the standard SAP installation document for the same and it says that we need to install Apache Web server version 1.3.XX, so i have downloaded the file apache_1.3.27-x86_64-whatever-linux22.tar.
    Now i want to know the following before i take any actions on my further installation of the Content Server
    What is the difference between Apache and httpd servers (services) are they different or same
    Is the file apache_1.3.27-x86_64-whatever-linux22.tar correct to install Web Server on my Linux system
    Do i have to download any other httpd files
    How to install and start the Web server on my Linux
    Waiting for some information
    Thanks and regards
    BasoKing

    You can install a higher apache also (2.2.x), I'd not use the old versions. I'd also not use a "somwhere" compiled apache, you don't now if that version is clean.
    I'd rather compile an own one, it's not that difficult:
    Note 664384 - Generation info for Apache Web server for SAP Content Server
    The result will be a default webserver (httpd) without any unnecessary modules compiled in.
    Markus

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • How to install Apache on Red Hat Linux Server-5.....Urgent Reply

    I have rhel-5 and i need to instal apache on that.I dont have any idea about that.
    Someone please explain step by step how to proceed with it.

    944096 wrote:
    I have rhel-5 and i need to instal apache on that.I dont have any idea about that.
    Someone please explain step by step how to proceed with it.why is it URGENT for me to provide you with any assistance?
    when all else fails Read The Fine Manual
    http://www.oracle.com/pls/db112/portal.portal_db?selected=11
    Handle:     944096
    Status Level:     Newbie
    Registered:     Jul 2, 2012
    Total Posts:     10
    Total Questions:     6 (5 unresolved)
    why do you waste time here when you rarely get your questions answered?

  • How to install Apache Http server on Solaris sparc-32 bit systems

    Hi Friends,
    I installed apache in windows platform, where we have direct .exe file to install apache on windows.
    I heard, in solaris different process of installation is that right...?
    will we get direct .bin executable file for apache like wls923_solaris32.bin or need to we follow diff procedure for apache installation in solaris.
    Please help me
    Thanks
    Deep
    Edited by: user10249953 on Feb 22, 2009 8:28 PM

    Hi Friends,
    I installed apache in windows platform, where we have direct .exe file to install apache on windows.
    I heard, in solaris different process of installation is that right...?
    will we get direct .bin executable file for apache like wls923_solaris32.bin or need to we follow diff procedure for apache installation in solaris.
    Please help me
    Thanks
    Deep
    Edited by: user10249953 on Feb 22, 2009 8:28 PM

  • How to Install Apache 2.x with ssl on solaris 8/9 for reverse proxy

    Hi,
    I need to install Apache 2.x on solaris , along with mod_ssl and openssl . I am not sure where to find the required version for solaris and also where to find openssl and mod_ssl for installation for 2.x.
    I need this for configuring reverse proxy pointing to the Portal.

    Harish,
    I think, I don't get your problem...
    the files are available at http://www.apache.org (binaries and source)
    http://www.artfiles.org/apache.org/httpd/binaries/solaris/
    openssl at http://www.openssl.org
    mod_ssl at http://www.modssl.org
    kr, achim

  • How to install Apache-Weblogic brige for Windows NT 4.0

    I had installed weblogic 5.1 and Apache 1.3.6 at Windows NT 4.0 SP4.Use
    apache as web server ,weblogic as web application server. But I can not find
    the way to install Apache-Weblogic brige, can anybody help me?

    That is correct. However, we plan to add ports to these other platforms in
    the future.
    Thanks,
    Michael
    Michael Girdley
    WLS Product Manager
    cedar z <[email protected]> wrote in message
    news:8ec3s4$5pv$[email protected]..
    It's seem that wl5.1 has no weblogic-to-apache brige for window NT.
    zhao wrote in message <8ebo1h$2gs$[email protected]>...
    I had installed weblogic 5.1 and Apache 1.3.6 at Windows NT 4.0 SP4.Use
    apache as web server ,weblogic as web application server. But I can notfind
    the way to install Apache-Weblogic brige, can anybody help me?

  • How to install Apache Open Office on Yosemite 10.10.1

    I had a MacBook Air late 2008 and it was destroyed by a mean person, now I have a late model MacBook 2009 and updated everything, but I cannot figure out how to load Apache Open Office. It keeps giving me a warning that the security system won't allow anything that is not made by Apple or has its approval or something, but it worked on the 2008 Mac and it worked awesomely! Why can I NOT find anything about it now that I have Yosemite , which is also hard to remember to spell! Any suggestions would be super appreciated especially if they work!!

    Thank you so much!
    I didn't set up my first Mac, the '08, but after I learned how easy it seemed to be compared to Windows, I was a "convert" - not that I was pro-Windows, I didn't know there was anything else-  then had to go to a Windows 8.1 for a couple weeks and wow, lot of new stuff but interesting & so different that maybe I'd be more prepared if they'd changed the name, like Panes or Blocks, ect., instead of Windows! 
    However, coming back to the Mac, it took a little time to get reacquainted, which was't much because my first one rarely needed me to do anything, unlike while I was on Windows just those 14 days of use was frustrating, continual maintenance stuff & I just want to use the thing, not keep it running all the time, but I managed to learn to operate it fairly well, - didn't want to waste the money & be stuck w/it, so thank God for 14 day money back guarantees! I took that money back and added a few bucks more and have quality, the Cadillac of Computers!
    All I needed next was Open Office and I can begin my new business I am starting!
    THANK YOU PHIL0124!!!

  • How to instal apache tomcat,,binary?

    i wan to instal and run tomcat,what is different between binary thingie and source code download, how do i use it?

    ok but do i need to do something or insall binary
    thing before i run apache? i tried to read help file
    but wount go through my mindSince the binaries are the program... yes you need to install it before running it.

  • How to install a certificate in OC4J

    Hi I want to connect a server from a java method in Jdeveloper (from local machine) using api which needs a certificate to be installed in the caller.
    I have installed the certificate in my machine by clicking the certficate file and clicking the Install Certificate option.
    But still the error is comming. Do I need to add the certificate somewhere in Jdeveloper? How?
    The error message is:-
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=userx,ou=employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=dbc13,ou=employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    javax.naming.CommunicationException: simple bind failed: ldapu.xyz.gov.sg:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target]
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=dbc13,ou=non-employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=dbc13,ou=non-employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    javax.naming.CommunicationException: simple bind failed: ldapu.xyz.gov.sg:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target]
    Creating ldapContext for user =>uid=dbc13,ou=employee,o=xyz,c=sg
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=dbc13,ou=employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    Establishing the LDAPConnection with the below env params =>
    {java.naming.provider.url=ldap://ldapu.xyz.gov.sg:636, java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory, java.naming.ldap.version=3, java.naming.security.principal=uid=dbc13,ou=employee,o=xyz,c=sg, java.naming.security.authentication=simple, com.sun.jndi.ldap.connect.pool=true, java.naming.security.credentials=password, java.naming.security.protocol=ssl}
    javax.naming.CommunicationException: simple bind failed: ldapu.xyz.gov.sg:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target]
    [Ljava.lang.StackTraceElement;@193385dsg.gov.xyz.ldap.base.LDAPException: Unable to connect to the server.[simple bind failed: ldapu.xyz.gov.sg:636]
    Thanks in advance
    Sam
    Edited by: Sam on Nov 16, 2010 9:50 PM

    Hi. To SSL comunication between the local machine and remote server with jndi, only need install or register the ca-certificate with keytool in the local machine. This instructions can help you:
    /oracle/oas/10.1.3.1/soa/jdk/bin/keytool -import -keystore /oracle/oas/10.1.3.1/soa/jdk/jre/lib/security/cacerts -trustcacerts -file /oracle/certificates/DcDg04Cert2.cer -alias alias_name -storepass store_pass
    Bye.

  • How to install apache tomcat in nebeans

    hello everyone,
    i am not able to configure apache tomcat in my netbeans.
    i am little bit confuse between apache tomcat and glassfish servers. can any one tell where we glassfish and where we use apache tomcat?

    Tomcat is a 'servlet engine'; put as simple as I can make it, it is a Java webserver. You can create web applications based on servlets & JSPs and run them on Tomcat.
    Glassfish is an Java Enterprise (JEE) server and provides an implementation for the full Java Enterprise Edition specification. This also includes servlets & JSPs, but on top of that you get a whole batch of additional services.
    I would start with Tomcat if I were you. You don't need to configure anything, if you download the proper Netbeans bundle it comes with Tomcat 7 already setup. If that is not the case, you either picked the wrong bundle or you made wrong decisions during installation.
    edit:
    Question for you. Do you know anything about Java at all (since you are posting this in new to java)? If not then you are waaaaaaaay out of your league trying to get into web programming, it is complicated and confusing enough if you know Java, it is near impossible to understand if you don't even know the basics of the basics yet.
    Edited by: gimbal2 on Aug 5, 2011 3:57 AM

  • Install PDK in an OC4J instance of OracleAS

    Hello.
    I have installed an OracleAS + Portal 10g (9.0.4), and I have created a new OC4J instance, named OC4J_newinstance.
    My question is: How do I install PDK in OC4J_newinstance?
    I have found a lot of tutorials and forums, but all of them explained how to install PDK in an OC4J STANDALONE instance. Please help me, and thanks in advance!
    Greetings!
    ps: I need to install PDK because I want to develop my own portlets, using my own JSP pages. I already have done that, but using an OC4J STANDALONE instance, and I want to use my OracleAS OC4J_newinstance.

    Hi Shail,
    i referred the link you have sent it was helpful to me, but the thing is while deleting the shared library apache.webservices it is saying the shared library is in use. When we brought down the Application Server and try to run the removeSharedLibrary command we got other error.
    Error: "Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    Is the way which i have done is correct ?? Please reply me.
    Thank You,
    Ravi kumar.

  • Installation apache soap in nb 5.5

    anyone can help me how can i install apache soap in nb 5.5?
    coz i've tried it, it ran, but not completely. especially when i clicked the deploy/undeploy/list button. It showed an exception (HTTP 500).
    i put the activation.jar, mail.jar, a complete xerces jar (resolver.jar, serializer.jar, xercesImpl.jar, xml-apis.jar), soap.jar in NB 5.5 home/enterprise3/apache-tomcat <its version>/commons/lib/
    i put the soap directory & soap.war under NB 5.5 home/webapps/ROOT/
    thx b4 in advance...

    Hi,
    Apache documentation can be found at http://httpd.apache.org/docs/
    You could also refer to (Note: 330250.1 - Tips & Tricks To Make Apache Work With Jserv) for details and explanation about those configuration files.
    Regards,
    Hussein

Maybe you are looking for

  • Speed problems with AE CS4 windows 7... fixed.

    Ok, this was the post I was going to write.. but in writing it I figured it out. on a 1280x720 30fps comp, I can't seem to preview higher than 20fps - even with a blank comp. my specs are as follows: Core 2 quad Q6600 @3GHz 8GB of DDR2 800 Geforce 28

  • Improving timing and solving tempo issues in Logic

    Hello, I was reading something about the beat mapping in user manual and also I was trying to improve timing of my drums recording but with no result. Is beat mapping the right tool for doing this and if so, what are the right steps to do it? Please,

  • Question on p.23 of WDJ/NWDS Tutl 2: "hAlign" not in Image FlowData layout

    On page 23 of WDJ/NWDS Tutorial #2 ("Creating an Extended Web Dynpro Application"), the instructions say to set the "h_align" property of the LayoutData of the UIElement "QImage" to "center". But in the properties window, there is no h_align property

  • Error when pressing F1 in messageboxes

    I am currently working on a .net windows application. I expected users to press F1 in the main screens.  These are the forms modified during design time to contain the proper index numbers for the Help file.  However one of the users pressed F1 in ou

  • Error when uploading a crystal report with dynamic parameter into Infoview

    Hi All, I was trying to upload a crystal report which has a dynamic parameter into a Infoview. It shows an error message that say:- "Failed to read data from report file C:\WINDOWS\TEMP\tmp27A.rpt. Reason: Failed to read parameter object ". Can anybo