OAM installation using Apache

Hi,
Is it possible for me to install OAM webpass,policy manager,access server,webgate using Apache as the web server. If yes, cpuld you please tell me the supported version of Apache web server for OAM and also the OAM 10.1.4.3 installers for "Windows server 2008 R2" for Apache.

Hi, look at this manual page:
http://docs.oracle.com/cd/E12530_01/oam.1014/b32412/apch2ihs.htm#BABHEEBF
The above applies to OAM 10G.
I 'm looking myself for something similar for OAM 11G.

Similar Messages

  • SAP Content server installation using apache web server under HP-UX 11i

    Hello,
    I installed a SAP Content Server 6.4 in HP-UX 11.11 with MaxDB 7.6.
    Although Installation is finished completely I got an syxtext error when apache web server is started after completing installation as below;
    kbwpdc 106: /home/dmscs/bin>./apachectl start
    Syntax error on line 233 of /home/dmscs/conf/httpd.conf:
    Cannot load /home/dmscs/modules/mod_sapcs2.so into server: Invalid
    argument
    I think apache web server doesn't know mod_sapcs2.so although it exists in the directory(/home/dmscs/module).
    - Working sequence
    1) Environment variables setup to compile with 64bit.
    2) "configure" generation with option relevant to SAP content server
    3) "make" generation
    4) "make install" generation
    5) Install SAP Content server 6.40
    6) Install MaxDB 7.6
    7) Edit httpd.conf for loading mod_sapcs2.so module and changing Listen port.
    8) Start apache web server.
    Do I need to configure to solve this syntext error? missing any step?
    Please let me know to solution if you had experienced with the same problem.
    I will wait for your response.
    Thanks,
    Mark Yoo.

    Hi Mark,
    Can i check with you how do you set your environment to compile in 64bit ? My file mod_sapcs.o apear in the libexec directory instead of mod_sapcs.so. That why my apache cannot start. It prompted Cannot load module /home/sapcs/libexec/mod_sapc.o
    Regards
    Kim

  • Custom installation using XE

    Basic installation of SOA Suite does not seems to work, I don't why.
    I have tried Custom installation using XE Database which works but Apcahe
    Web Server is throwing exceptions in installation phase (when installation process tries to launch unmanaged Apache module when configurating it) so it terminates too. So boring!
    Is it possible to use XE's Http server as SOA Suite's Http Server?
    How to configure that?

    AFAIK, there is NO compilation of Apache on the win32 platform. If you use Vista please verify that it is certified to install SOA Suite there. Another common pitfall is not reading the installation guide and using computers with DHCP....
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Enterprise portal access using reverse proxy using Apache and webdispatcher

    Hi Guys,
    As requirement, we need to give solution to customer about Reverse proxy scenario. I am new to this part.
    What we have think of to use Apache and Web dispatcher.
    I tried to search documents and found some sdn links also but still i am not comfortable to go about.
    Need suggestion and document if anyone has used so far.reverse proxy.
    As basis person, we need to do all ( Apache installation, Apache configuration, Web dispatcher installation and configuration, integration with EP.)
    It will helpful to me if i can get Apache installation, Apache configuration part and integration with EP, or web dispatcher, configuration etc.
    Thanks,
    Deepak

    We used Netscaler for Reverse Proxy implementation and can assure you that network team performed most of the set ups. This was on EP 7.01.
    From BASIS stand point it would be primarily Web Dispatcher Configuration.
    Also refer the links I specified in another thread. There are several scenarios discussed there -
    Re: Post values for userid and passowrd fields in logon page
    http://wiki.sdn.sap.com/wiki/display/BSP/Using+Proxies
    ~ Dhanz

  • How do you configure 8.1.7 NT/IFS 1.1 to use Apache for IFS?

    Now that the 8.1.7 version for NT and IFS 1.1 is out how do you configure it to use Apache for IFS?
    There is no 'ifsapachesetup' file included in the download (the CDs are still not available).
    Installed 8.1.7 database on a clean (no oracle) PC running NT server 4.0 sp4.
    Installed IFS 1.1 download using default selections except I unchecked the JWS option.
    The database works fine and the IFS agents appear to be operating properly.
    IFSMGR batch file works fine but how do you access the webui? Have tried ports 80, 8080, 7777, 7070, 100 and nothing works.
    null

    Hanne ....Greetings. The Apache HTTP server is up and running. Even better, my users can get to it! The URL issue, I think, really put a damper on what was otherwise a pretty clean install. Specifically, on page 9-9 of the Oracle Internet File System Release 1.1 Setup and Administration Guide; Part No. A81197-04, 1-Sep-00, that I downloaded from technet.oracle.com, the ifsapachesetup.exe reference, the port 7777 reference and then the invalid URL sent me round and round for awhile. When I saw Rick Post's post on the iFS Forum and then Brian Ball's response, I knew there was something incomplete about the documentation. When I figured out which parts of the 'system' need to be running, I saw that the /ifs/files URL would work if Apache and ifs were up, and it did.
    Also, I think the startup/shutdown of the OracleHTTPserver service vs the Start/Programs/oracle_home/Oracle HTTP server/Start....Stop could be clarified a little more. I did find out that you could accidently shut down the Apache server by closing the NT application window it runs in, whereas, starting HTTPserver from the services Services eliminates this (this I think is in the documentation).
    In short, I'm up and running. Neat product. Need an errata in the Release Notes or Installation Guide regarding this URL deal.
    thanks
    fred

  • SSO with a website using Apache Httpclient form post

    Hi ,
    I am trying to obtain, SS0 with a website, that accepts the user information via post.
    I tried using app Integrator, but the website sends a cookie in first request, and redirects to another URL. App Integrator is only catching the first response.
    Thus i tried implementing this Form post using Apache HTTPClient class inside the Abstractportacomponent, as shown..
    The login is taking place. But, When i click on any link on the page, It is redirecting to the login page again, I am wondering where should i give the Cookie, so the portal request will include that cookie in its subsequent requests, so that i wont be prompted for login agian..
    thank you,
    chiranjeevi.
    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
        {try
                      String url = "http://www.xxxxxxxxxxxxx.com/gold_online/validate.asp";
                      //Here, calling the timberline comes into place.
                       HttpClient client = new HttpClient();
                        PostMethod method = new PostMethod (url);
                        method.setFollowRedirects(false);
                        method.addParameter( "code","xxxxxxx");
                        method.addParameter( "upass", "xxxxxx" );
                                  int statusCode = client.executeMethod( method );
                        if( statusCode != -1 ) {
                             // The Status code for this first request is 302..which is a redirect with the redirect path
                             Header locationHeader = method.getResponseHeader("location");
                             Header cookie = method.getResponseHeader("set-cookie");
                             String redirectedURL = locationHeader.getValue();
                             String host = "http://www.xxxxxxxxxxxxxx.com/gold_online/";
                             redirectedURL = host+redirectedURL;
                             GetMethod method2 = new GetMethod (redirectedURL);
                             method2.setFollowRedirects(false);
                             method2.setRequestHeader("cookie",cookie.getValue());
                             method2.addRequestHeader("Accept", "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, /");
                             int statuscode2 = client.executeMethod( method2);
                             String contents  = method2.getResponseBodyAsString();
                             // Converting the Relative URLs to Absolute URLs
                             contents = replace (contents,"src=\"","src=\""+host);
                             contents = replace(contents,"href=\"","href=\""+ host);
                             Cookie ck = new Cookie("cookie", cookie.getValue()) ;
                             //adding the cookie to the response...
                             response.addCookie(ck);
                             response.write(contents);
                          method.releaseConnection();

    Hi Manish,
    first, welcome on SDN! About your question:
    The URL iView in SP9++ has been reported quite instable from different sides (just do a look on "URL iView" within this forum). The alternative for the aim you have is to use the good "old" application integrator iView, which behaves very stable and will do what you want without hesitating...
    Also see URL iView and HTTP System - SSO to web app
    Hope it helps
    Detlev
    PS: Please consider to reward point for helpful answers on SDN. Thanks in advance!

  • How do I share tabs between my different Firefox installations using the new Firefox Accounts system?

    I am using Firefox Nightly (30.a1, 2014-02-18, x64) on my laptop computer (Windows 8.1 Pro x64) and I was using Firefox Beta on my Nexus 5 (Android 4.4.2). Recently, Mozilla announced the new Firefox Accounts system (which is replacing the old Firefox Sync Account) and I created a Firefox Account for my laptop Nightly installation. Since the new Firefox Account doesn't work with the old Firefox Sync Account, I replaced my Android installation of Firefox Beta with Firefox Nightly and signed into Firefox Account on my Android. However, when I attempt to send a tab from my Android installation to my laptop installation using the "Share to Nightly" intent, Nightly asks me to set up a Sync account, which is impossible to complete in my laptop Nightly installation. I've tried replacing my Android Nightly installation with an Android Aurora installation, but the same problem occurs.
    What's worse is that even with both my laptop and Android installations signed into the same Firefox Account, I cannot see any information being synced between the 2 installations. No history is being shared, and I cannot see the open tabs list from the other device. I cannot pass tabs between my phone and my laptop, which is something I used every week as I visited websites and read my RSS feeds on my phone. Does anyone know how to share tabs using the new Firefox Accounts? Does anyone know why Firefox Accounts does not seem to be syncing data between my 2 installations?

    Unfortunately with further investigation, Roland informed me that share tab was removed[https://bugzilla.mozilla.org/show_bug.cgi?id=965811]

  • Sidecar AIR Runtime install with  Native .exe installer using ADT

    I have packaged my AIR app into a Native .exe installer using ADT. If the user does not have air installed and they are connected to the internet, the AIR runtime is automatically installed.
    Is it possible to package the AIR runtime into the exe so that if the user is not online the AIR runtime is installed?
    I have experimented with the sidecar install and .air file but ideally I want to only have the one file(.exe). I already have a distribution licence from Adobe.

    manicjames wrote:
    I have packaged my AIR app into a Native .exe installer using ADT. If the user does not have air installed and they are connected to the internet, the AIR runtime is automatically installed.
    Is it possible to package the AIR runtime into the exe so that if the user is not online the AIR runtime is installed?
    I have experimented with the sidecar install and .air file but ideally I want to only have the one file(.exe). I already have a distribution licence from Adobe.
    This isn't available at this time, but I think it's a great idea.  You might want to add a feature request for this over at ideas.adobe.com and bugbase.adobe.com, or review and vote for these current feature requests if they provide for what you're looking for:
    Portable AIR Apps
    Create portable AIR apps
    If you decide to add a new request, please post back with the URL so others can cast their votes and add comments.
    Chris

  • How to write a Xml installation file to build  web installer using IzPack.

    Hai everyone,
    I have got a problem in building a web installer using IzPack.I am getting this exception,when I am compiling my install.xml using a compile tool provided by IzPack soft.Eventhough I have not mentioned "packsinfo.xml" in my Xml installation file.
    Fatal error :
    null\packsinfo.xml (The system cannot find the path specified)
    java.io.FileNotFoundException: null\packsinfo.xml (The system cannot find the path specified)
    What went wrong??
    It is very very urgent. Could anyone tell me how to write a Xml installation file for building web installer,please??
    any help will be highly appreciated....
    Thank you very much in advance

    Hi,
    that is not really a java related question. Have you tried to find some IzPack support forum? I've never heard about it, so I can't help.

  • How to write a Xml installation file to build a web installer using IzPack.

    Hi Everybody,
    I am using IzPack 3.11.0 version.I'd like to create a web installer using IzPack.IzPack soft has provided one p.d.f. In
    which they has explained how to create a standard installer using xml installation file,however ,they have not explained
    how to create a web installer using xml installation file.
    Could anyone help me how to create a web installer using xml installation file,please?? It is very very urgent.
    Any help will be highly appreciated.Thank you very much in advance.

    Hi,
    that is not really a java related question. Have you tried to find some IzPack support forum? I've never heard about it, so I can't help.

  • PDF Creation and Saving in Database using Apache FOP

    Hi,
    I read lot of topics in this forum about using Apache FOP for creating PDF documents and I have configured the same and works fine.
    When user clicks a button, the PDF file is generated and it downloads the document. How can I make the PDF document save in the database.
    I would like to provide a interactive report with a link and they can download the document later.
    Thanks
    Karthik

    Hi, Karthik
    Think here how to save pdf in APEX 3.0 you can find more information about this
    Michael

  • Chinese Charcters in PDF using Apache FOP

    Hi,
    I am creating a PDF using Apache FOP.
    This data contains Chinese characters.
    On APEX 3.1, I couldn't contain Chinese characters in PDF.
    On APEX 3.2, is it possible?
    Is there any way that I don't have to use BI Publisher?
    Please advise on this.
    Thanks

    Hi, Karthik
    Think here how to save pdf in APEX 3.0 you can find more information about this
    Michael

  • Providing security to the PDF file using apache FOP in java

    I am working on PDF file generation using Apache FOP, I have security concerns which are
    1. PDF file will be placed in a folder after generation and that should not be copied to other locations.
    2. PDF file should only have an option print nothing else. The save/save as options should never be enabled.
    3. PDF expiry date is required, so that PDF file will get expire after duration.

    HI,
    I did that too, with too much experiments.
    Code snippet for reference.
    PdfReader reader = new PdfReader(getOutputFilePath());
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream("my-new-file.pdf"));
    stamper.setDuration(1,1);
    int permissions = PdfWriter.HideMenubar & PdfWriter.HideToolbar & PdfWriter.HideWindowUI & ~( PdfWriter.AllowCopy | PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn | PdfWriter.AllowAssembly | PdfWriter.AllowModifyContents | PdfWriter.AllowScreenReaders);
    stamper.setEncryption(null, null,
    permissions, PdfWriter.STRENGTH40BITS);
    stamper.setFormFlattening(true);
    System.out.println(stamper.getMoreInfo());
    stamper.close();
    I am able to disable the save button, but I am unable to disable the save as option.
    It would be great help, if you can give some inputs on this.

  • Obtaining client certificate in servlet using apache + tomcat

    Hi,
    I'm porting a webapplication from Javawebserver to Apache/1.3.6 (Win32) mod_jk mod_ssl/2.2.6 OpenSSL/0.9.2b
    The application needs to get the client certificate hash code.
    Using Javawebserver I used
    request.getAttribute ("javax.net.ssl.cipher_suite");
    request.getAttribute("javax.net.ssl.peer_certificates");
    etc
    How do I set up the apache webserver so that I can read the client certificate and what is the attribute called?
    I've tried this in the httpd.conf:
    SSLOptions +ExportCertData
    And the attribute:
    "SSL_CLIENT_CERT"
    Like it says in the Tomcat documentation.
    I'm not sure if I need to set up Tomcat as well..
    Any help would be greatly appriciated!
    Sincerely,
    AM Hjemaas

    Yup use ajp13 not ajp12 or mod_webapp
    refer to http://www.galatea.com/flashguides/apache-tomcat-24-win32.xml on setting up..
    THIS IS IMPORTANT!!!
    use Apache mod_jk.dll diretive:
    JkEnvVar Apache_Env_Var FORWARD_ALIAS
    this will send a apache environment variable (http://myapache/cgi-bin/printenv.pl to see whats available) to Tomcat
    JkEnvVar SSL_CLIENT_CERT SSL_CLIENT_CERT
    Then in Tomcat servlet use request.getAttribute("SSL_CLIENT_CERT") to get the cert in PEM format
    Hope this helps
    Jay

  • Problems with SSL using Apache proxy

    I'm trying to use Apache+mod_ssl+openssl on linux RedHat 6.2 and mod_wl_ssl from WLS 5.1+SP5. Setting PathTrim in httpd.conf I'm able to send http request
    to WebLogic Cluster located on outside machines. However, https requests don't work and I receive the following messages in httpd's error_log
    [Fri Sep 1 13:44:01 2000] [notice] Apache/1.3.12 (Unix) mod_ssl/2.6.6 OpenSSL/0.9.5a configured -- resuming normal operations
    [Fri Sep 1 13:44:28 2000] [notice] child pid 12329 exit signal Segmentation fault (11) Do you receive the same message in error_log
    Any help you can provide will be appreciated.
    Enrico

    My client (Netscape browser) are making SSL connection to Apache.
    I would use SSL3 from client to Apache then read the client certificate from
    WebLogic (in back-end) servlet to check the user's attribute from ldap
    server. Could you tell me if there is some example of keeping client
    certificate from front-end web server to WebLogic servlet?
    Thanks,
    Enrico
    Michael Girdley <[email protected]> wrote in message
    [email protected]..
    >
    >
    You're making SSL connections from Apache to WebLogic? Or your clientsare
    making SSL connections to Apache?
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "enrico notariale" <[email protected]> wrote in message
    news:39b5fa6f$[email protected]..
    I'm trying to use Apache+mod_ssl+openssl on linux RedHat 6.2 andmod_wl_ssl from WLS 5.1+SP5. Setting PathTrim in httpd.conf I'm able tosend
    http request
    to WebLogic Cluster located on outside machines. However, https
    requests
    don't work and I receive the following messages in httpd's error_log
    [Fri Sep 1 13:44:01 2000] [notice] Apache/1.3.12 (Unix) mod_ssl/2.6.6OpenSSL/0.9.5a configured -- resuming normal operations
    [Fri Sep 1 13:44:28 2000] [notice] child pid 12329 exit signalSegmentation fault (11) Do you receive the same message in error_log
    Any help you can provide will be appreciated.
    Enrico

Maybe you are looking for

  • Time machine backups too much

    I recently started using time machine, backing up automatically wireless to timecapsule(1TB). I noticed that every hour, time machine is backing up approximately 20GB (while i only use 100GB in total of a 250hard drive). is it possible it has somethi

  • How to get cd from optical player. No tool on desktop that I can use. Imac do not shut down.

    A cd is tucked into the player and there is no thing on desktop to get it out. Its running all the time but das not show a thing. No label is as usuly on desktop and computer das not shutting down.

  • How to exit from LDOM?

    Hello, I am having Solaris 11 as host OS on Sparc T1 server. LDOM's of Solaris 10 are installed by Oracle partner. I am not able to exit from any of the LDOM's by using shift & *~* & *.* key combination. Any help?

  • Pricing attribute related question

    hi folks, i have a PTO Model BOM item, that has an option class, and underneath that a subcomponent. the subcomponent is also sold individually at price X. when it is sold as a part of the PTO Model item, the subcomponent is priced 10% lower (say Y).

  • Why do we work in sessoins in aslb?

    why do we work in sessoins in aslb? Edited by: dbr6 on Sep 22, 2008 8:53 PM Edited by: dbr6 on Sep 22, 2008 9:14 PM