Installing OIF11g with OHS as proxy webserver in front

Hi all,
I want to deploy OIF 11g with OHS as a web-proxy in front. So, I followed this link: http://download.oracle.com/docs/cd/E14571_01/oim.1111/e13400/deployment.htm#DAFEDIEA
This link says:
<snip>
When installing the IdM suite, select Oracle HTTP Server in the Select Components screen. This will install Oracle HTTP Server.
After installation, issue the following command-line instruction to create the instance:
$AS_INST/bin/opmnctl createcomponent -componentType OHS -componentName $OHS_NAME
</snip>
This is confusing me. Because after I install / configure the OIF with selected Oracle HTTP server, I see a OHS instance ohs1 already created and the same comes up in the EM console as well. Still, do we have to create another OHS component?

Hi.
You could try sending a cookie with the authentication info.
Try posting this question in weblogic.developer.interest.security - this newsgroup is
mostly for installation questions.
Thanks,
Michael
siva wrote:
Hi
My application requirement is something like this.
I have an application running in one computer domain(external to my machine from
where i am accessing). If i am accessing the application from the outside domain,
i am giving username and password in my url itself and the application works.
If the username and password are not provided, then a box pops up asking the two.
Now the requirement is to avoid the username and password hardcoding in the URL.
So what should i do to achieve this from weblogic server standpoint? I use weblogic
server 5.1 version.
Setting up the weblogic server as the HTTP Proxy , does it help? If so , how it
should be for this requirement?
Any pointers, Any inputs will be highly appreciated. Please help.
with regds
siva--
Developer Relations Engineer
BEA Support

Similar Messages

  • I've developed a way to AUR search+install with pacman via proxy

    at the moment it's not complete, and the database is up-to-date only as of Oct-16-2007;; but i believe it's in a stable position to be tested ..
    i look forward to your feedback
    so anyway .. i call it alaura, and it is a system developed in python to create a pacman database in order to allow
    users to search as they normally would, and simply issue a command .. pacman -S pkg-in-aur and have that
    pkg installed as they would any other pkg ...
    add
    [alaura]
    Server = http://arch.u54.eu/repo
    to your pacman.conf
    the client side of the system is basically, download pkg from alaura repo, that pkg has an install script,
    the install script removes the (alaura)proxy pkg and then uses yaourt(i hope to develop a simpler installer that does one job) to install the pkg from aur
    . ad oh, the repo is generated using gradgrind's gen_repo script
    so far i've only indexed 100 pkgs :: `pacman -Sl alaura`
    more details will be published soon, i have to go study now ...
    Last edited by kumico (2007-10-17 12:07:24)

    no one seemed interested, so when i switched to using a laptop i didn't take the code with me, i have a slightly older version somewhere though,
    i have exams this week but i will prolly squeeze a tester out, i still have my design of the system somewhere as well so it shouldn't be too difficult to pickup where i left off
    thanks for taking an interest.

  • Tomcat as service : install path with spaces

    I'm trying to install tomcat as service
    but when I choose an install path with spaces
    I mean smthing like "c:\program files\tomcat"
    it doesn't work
    I tried to modify the wrapper.properties file
    with "" but it doesn't work
    I even set the parameter wrapper.cmd_line with
    a command line that works when launched for CMD
    but the service doesn't start
    any idea????

    I found it ! (hope it helps)
    wrapper.properties that works with spaces in the name
    of the java directory and the tomcat directory
    # $Header: /home/cvs/jakarta-tomcat/src/etc/Attic/wrapper.properties,v 1.2.2.1 2000/10/16 01:59:22 larryi Exp $
    # $Revision: 1.2.2.1 $
    # $Date: 2000/10/16 01:59:22 $
    # jk_service.properties - a bootstrup file for the Tomcat NT service.
    # This file provides jk_nt_service with the needed information to
    # start tomcat at a different process.
    # As a general note, the characters $( and ) are used internally to define
    # macros. Do not use them!!!
    # Whenever you see a set of lines such as:
    # x=value
    # y=$(x)\something
    # the final value for y will be value\something
    # Normaly all you will need to modify is the first two properties, i.e.
    # wrapper.tomcat_home and wrapper.java_home. Most of the configuration
    # is derived from these two.
    # wrapper.tomcat_home should point to the location where you
    # installed tomcat. This is where you have your conf, webapps and lib
    # directories.
    wrapper.tomcat_home=C:\Program Files\tomcat-3.2.1
    # wrapper.java_home should point to your Java installation. Normally
    # you should have a bin and lib directories beneath it.
    wrapper.java_home=C:\Program Files\JavaSoft\JRE\1.3
    #------ ADVANCED MODE ------------------------------------------------
    # Make sure that you read the how-to before making too many changes.
    # Defining where the service is going to put the standard
    # output of Tomcat. This is where System.out.println and
    # System.err.println goes to.
    wrapper.stdout=$(wrapper.tomcat_home)\logs\jvm.stdout
    wrapper.stderr=$(wrapper.tomcat_home)\logs\jvm.stderr
    # Additions to the path. put here directories where you store DLLs for
    # native methods etc.
    wrapper.ld_path=d:\
    wrapper.ld_path=c:\
    # Defining the classpath. All the rows that belongs to the class_path
    # property are concatenated to create the classpath for Tomcat.
    # If you have additional locations that you would like to add to the
    # claspath you should add a new wrapper.class_path=<location> line.
    wrapper.class_path="$(wrapper.tomcat_home)\classes"
    wrapper.class_path="$(wrapper.tomcat_home)\lib\jaxp.jar"
    wrapper.class_path="$(wrapper.tomcat_home)\lib\parser.jar"
    wrapper.class_path="$(wrapper.tomcat_home)\lib\webserver.jar"
    wrapper.class_path="$(wrapper.tomcat_home)\lib\servlet.jar"
    wrapper.class_path="$(wrapper.tomcat_home)\lib\jasper.jar"
    # This is where Javac is located in JDK1.2.x
    wrapper.class_path="$(wrapper.java_home)\lib\tools.jar"
    # and a tribute to JDK1.1.x
    wrapper.class_path="$(wrapper.java_home)\lib\classes.zip"
    # This is the Java interpreter used for running Tomcat
    wrapper.javabin=$(wrapper.java_home)\bin\java.exe
    # This is Tomcat's startup class (the class that contains Tomcat's
    # starting point.
    wrapper.startup_class=org.apache.tomcat.startup.Tomcat
    # This is the location where tomcat's server.xml configuration file
    # is located.
    wrapper.server_xml=$(wrapper.tomcat_home)\conf\server.xml
    # The NT service uses AJP12/AJP13 to shutdown Tomcat. The
    # wrapper.shutdown_port tells the service the identity of the port that
    # is used by AJP12/AJP13.
    wrapper.shutdown_port=8007
    # Can either be ajp12 or ajp13 depending on your configuration.
    # Default value is ajp12
    wrapper.shutdown_protocol=ajp12
    # This is the command line that is used to start Tomcat. You can add extra
    # parameters to it but you can not remove anything.
    wrapper.cmd_line="$(wrapper.javabin)" -classpath $(wrapper.class_path) $(wrapper.startup_class) -config "$(wrapper.server_xml)" -home "$(wrapper.tomcat_home)"

  • APEX3.0 on Oracle 10.2.0 with OHS 10.1.3.1.0

    Hello,
    I have just installed APEX3.0 on Oracle 10.2.0 with OHS 10.1.3.1.0, which went succesfully. I have configured the HTTP Server as mentioned in the documentation. However, when I try to access the login page at http://localhost/pls/apex/apex_admin, I get a 'logo less' form asking for Username and Password but not letting me inside, saying 'error on page'.
    Can somebody help me?

    Thank you, very much. Your question solved my 03 day old problem. Shud have seen it earlier.

  • SOA suite 10.1.3.3 with OHS Apache 2.0 ... mod_oc4j errors

    Hi all,
    I have a SOA Suite 10.1.3.3 environment fronted by Apache 2.0.
    Installed OHS 2.0 from the Companion CD in a new OHS ORACLE_HOME
    Installed SOA Suite 10.1.3.3 in a new J2EE ORACLE_HOME
    Can access the consoles ok (BPEL, ESB, etc ...).
    Can access EM ok.
    Can deploy BPEL processes OK.
    However, deployment of ESBs fail.
    The Apache 2.0 error_log has the following message:
    [Thu Feb 28 10:08:08 2008] [debug] /ade/aime_asrc2_2/oracle/asg_apache/oc4j/src/oc4j_ajp13_worker.c(1288): mod_oc4j: AJP error talking to OC4J atsapdod03:12511: recv failed, 0
    [Thu Feb 28 10:08:08 2008] [error] [client 10.38.75.180] mod_oc4j: request to OC4J atsapdod03:12511 failed: Connect failed
    Looking at the oc4j-status page, the OC4J container running on atsapdod03:12511 is the container that holds the esb-dt application.
    Has anyone out there got Apache 2.0 working with the SOA Suite?

    Looks definitely to be an issue with OHS Apache 2.0.
    * Shutdown OHS Apache 2.0
    * Installed OHS 1.3 in a new ORACLE_HOME.
    * Reconfigured OHS 1.3 to run on the same ports as OHS Apache 2.0
    * Started OHS 1.3
    * All works OK

  • Integrating SiteMinder with OHS 11.1.2.1

    Hello,
    I'm trying to find out if it's possible to integrate CA SiteMinder with OHS 11.1.2.1 running on Windows 2008 64Bit? We try to do it but was unable to make it work yet.
    Thank you!
    Alex

    Hello,
    1. The SiteMinder team installed the SiteMinder Web agent on the Windows 2008 64Bit server
    2. The SiteMinder team try to run the configuration wizzard but the wizzard cannot find the Oracle OHS Web server, so they try to do it manually
    3. We updated the httpd configuration files and added the line describe in the CA siteminder installation guide
    LoadModule sm_module "D:/siteminder/bin/mod_sm22.dll"
    SmInitFile "D:/siteminder/conf/WebAgent.conf"
    We always get the following error:
    12/01/20 13:08:02 Start process
    Apache.exe: Syntax error on line 1045 of D:\\Oracle\\Middleware\\user_projects\\epmsystem2\\httpConfig\\ohs\\config\\OHS\\ohs_component/httpd.conf: Syntax error on line 3 of D:/Oracle/Middleware/user_projects/epmsystem2/httpConfig/ohs/config/OHS/ohs_component/moduleconf/sm_module.conf: Cannot load D:/siteminder/bin/libapr.dll into server: %1 is not a valid Win32 application.
    12/01/20 14:25:09 Start process
    Apache.exe: Syntax error on line 1045 of D:\\Oracle\\Middleware\\user_projects\\epmsystem2\\httpConfig\\ohs\\config\\OHS\\ohs_component/httpd.conf: Syntax error on line 3 of D:/Oracle/Middleware/user_projects/epmsystem2/httpConfig/ohs/config/OHS/ohs_component/moduleconf/sm_module.conf: Can't locate API module structure `sm_module' in file D:/siteminder/bin/HttpPlugin.dll: No error
    12/01/20 14:25:11 Start process
    Apache.exe: Syntax error on line 1045 of D:\\Oracle\\Middleware\\user_projects\\epmsystem2\\httpConfig\\ohs\\config\\OHS\\ohs_component/httpd.conf: Syntax error on line 3 of D:/Oracle/Middleware/user_projects/epmsystem2/httpConfig/ohs/config/OHS/ohs_component/moduleconf/sm_module.conf: Can't locate API module structure `sm_module' in file D:/siteminder/bin/HttpPlugin.dll: No error
    Regards,
    alex

  • How to configure SharePoint HNSC with a reverse proxy server so that HNSC Share Point URLs are not exposed to end users.

    Could you please let me know how SharePoint HNSC can be configured with a reverse proxy server so that HNSC Share Point URLs are not exposed to end users.
    In normal path based site collections/web applications, reverse proxy configuration can be done using alternate access mappings with  Public URL = "proxy URL", internal = "HNSC Share Point URL" so that share point sends response back
    to Public URL = "proxy URL".
    In Host Named Site Collections,  alternate access mappings  are not supported. Each HNSC is designed to have only one URL in each zone. Zone is one of the five zones(Default,Intranet,Internet,Custom,Extranet) with each of which only one alternate
    URL is associated.  This is what we are able to get using power shell command "Set-SPSiteUrl", but this will not help us to get the response back to proxy URL after a request sent to share point because we could not find any mechanism in share
    point HNSC to respond  to a different URL(proxy URL). Consequently, Share Point URLs are exposed to  external users.
    Below share point article in MSDN blog is symmetrical to what we are observing with Share Point 2013 and Proxy Server. It mentions that internal HNSC URLs can’t be hidden using any proxy server. If  hiding the internal Share Point URLS is a requirement,
    it suggests to use a web application instead of host named site collections.
    Though I’m also observing the same behavior with Share Point 2013 HNSC, Could you please confirm my understanding is correct.
    http://blogs.msdn.com/b/kaevans/archive/2012/03/27/what-every-sharepoint-admin-needs-to-know-about-host-named-site-collections.aspx
    Excerpt from above article-
    "Host Named Site Collections Only Use One Host Name
    Continuing on the discussion on AAMs and host named site collections, you cannot use multiple host names to address a site collection in SharePoint 2010. Because host-named site collections have a single URL, they do not support alternate access mappings and
    are always considered to be in the Default zone.  This is important if you are using a reverse proxy to provide access to external users. Products like Unified Access Gateway 2010 allow external users to authenticate to your gateway and access a site
    as http://uag.sharepoint.com and forward the call to http://portal.sharepoint.com. Remember that URL rewriting is not permitted. Further, a site collection can only respond to one host name. This means if you are using a reverse proxy, it must forward the
    calls to the same URL.  If your networking team has a policy against exposing internal URLs externally, you must instead use web applications and extend the web application using an alternate access mapping."<u5:p></u5:p>

    Hi Satish,
    You are right that only one URL is allowed for each zone of the host-name site collections in both SharePoint 2010 and SharePoint 2013.
    It is by design that each host-name site collection only support one URL for each zone.
    The article below is about RTM version of SharePoint, and it is the same for SharePoint 2013 with the latest CU.
    https://support.microsoft.com/en-us/kb/2826457
    So to make the URL of HNSC not exposed to external users is not supported, you need to use path-based sites instead.
    Best regards.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • I am trying to install Appletv with an iPad2 and cannot get Homesharing to work

    I am trying to install Appletv with an iPad2 and cannot get Homesharing to work

    Homesharing only works with computers. If your using an ipad you want to use Airplay instead.
    http://support.apple.com/kb/ht4437?viewlocale=de_de&locale=de_de

  • If I do a clean install on my MacBook Pro will I be able to re-install apps (FCP, Aperture, MS Office etc.) from a Time Machine backup, or will I need the original install DVDs with authorization codes?

    I have two questions...
    1) If I do a clean install on my MacBook Pro will I be able to re-install apps (FCP, Aperture, MS Office etc.) from a Time Machine backup, or will I need the original install DVDs with authorization codes? (because I don't have them)
    2) Has anyone ever seen anything like this before on their computers?
    The Apple Genius' were stumped by my laptop issues and said they'd never seen anything like it before and recommended I did a clean install. Below you can see my trash bin, and if you look at the "Empty" button it reads "N201" and then there's the "N39" to the left of it. You can also see these numbers over by the folder area--"SD5, SD6, SD7." But that's not all...
    When I right click on items I see the numbers again. Instead of "Open with" I get "N152" and there's an "N35" and "LB1" towards the bottom.
    I have no idea what's going on so I'm just going to do a clean install on my machine but I don't want to lose my apps. I don't have the original install DVDs for them anymore. If you have any suggestions please let me know. Thanks!

    You don't lose them.  You can always redownload them from the app store after you log back in with your Apple ID.
    "Buy, download, and even redownload.
    You can install apps on every Mac you use and even download them again. This is especially convenient when you buy a new Mac and want to load it with apps you already own."

  • MAC PRO (Early 2008) RAID CARD ISSUE - SYSTEM FREEZEHello (hopefully someone can shed some light on my issue)  I own as above a MAC PRO (Early 2008) this has a RAID card installed along with two 15k.7 cheetah hdd (320gb) and a spare drive, (which i m

    Hello (hopefully someone can shed some light on my issue)
    I own as above a MAC PRO (Early 2008) this has a RAID card installed along with two 15k.7 cheetah hdd (320gb) and a spare drive, (which i made a regular drive)
    a while ago i had to replace the RAID card battery, so i did this, over a year later the same thing happened again, but as previous just left it and the system seemed fine for ages, until last night i was working in PHOTOSHOP and everything just froze and the screen kind of appeared GREEN, could not do a single thing. So restarted the mac, this time grey screen for ages and a message appeared, (macs version of blue screen) (see attached).
    I restarted the machine and this time a flashing question mark folder!
    could not do a thing.
    so i found my copy of snow leopard and got the computer to run this and at least launch the DISK UTILITY and (Interestingly in the drop down menu RAID UTILITY was also in the menu) but it did not matter which utility i used the (RAID or DISK) neither could see any of drives, just the dvd drive.
    so looked around on you tube and various forums and discovered if i take out the RAID CARD and re-plug the main lead from the RAID card back in to the LOGIC BOARD I would be reverting the MAC to a normal regular non-RAID computer.
    After performing this HARDWARE task and inserting all three HDD, and running the DISK utility from the drop down menu via the SNOW LEOPARD disc.
    (interestingly since the RAID card had been removed the RAID UTILITY  from the drop down menu no longer appeared). running disk utility I can now only see the regular (spare) hdd and DVD Drive, but the two RAID HDD , again, still do not show up DISK UTILITY?
    O.K. so i could chuck out the RAID card (AND RAID HDD) and just go with a regular set-up, and run a back restore from Time Machine on a NEW hdd purchased.
    but what is wrong with the RAID, is the card at fault or are both HDD used for the RAID knackered? can i perform any tests, to see whats what?
    thanks for your help in advanced.

    hello people, the issue was in fact the GRAPHICS card nothing to do with the HDD or RAID system ( although this did cause issues with the RAID system it basically lost its way) below is my replay to another similar  problem some one else had!
    working in photoshop and then everything stopped working and the lot froze! only option was to force shutdown (via button).
    and try to restart, hoping all was fine, this was not the case :-(
    I had the added issue of the RAID card system, that i have, this was confused to say the lease and would not behave or work, causing the start up to hang.
    so i thought the HDD must be bust and the root cause. ( but soon learnt it was not the cause )
    ...bought a new HDD removed the RAID card and replugged the cable from RAID card into LOGIC board, ( making the computer act like any normal non-RAID system). I managed to install the OSX, using the snow leopard disk way. once the mac was running, i started to notice the screen would flicker and started to see 'artefacts'. so i started to reveal my symptoms to the web and forums and soon discovered that my graphics card could be the issue all along?.
    (nvidia geforce 8800gt 2x dvi).
    I read up on that a fix, could be either A. reply the thermal paste, as the card could be over heating or B. stick the card in the oven trick.
    Tried option A. first and nothing still issues, so last night took the plunge carried out option B. and ta da it worked! i even managed to run
    from my new HDD my lasted install OS X, absolutely fine. I then thought, maybe i could repair my RAID so replugged all the HARDWARD back in and
    carried out a disk repair and disk permissions on drives( took a small amount of time), via the SNOW LEOPARD disc - (Disk utilities) and this worked and now have my system working as it was just over 6 days ago.
    what was the cost to get this?  bought a new hdd so 40.00gbp and thermal paste and cleaner kit ( your still need to do this ) search video card trick on you tube.
    and renew thermal paste, approx 15.00gbp, technically i don't need the new HDD, but it was all part of the trial and error way i went. ( i do have extra storage as a result!)"

  • APEX Advisor in APEX 4.0.2 with OHS didn't work

    We have a APEX 4.0.2.00.07 Installation on a Oracle 11gR1 with OHS.
    If i call the APEX Advisor i get following error:
    ORA-20999: ORA-01426: numeric overflow ORA-06512: at "APEX_040000.WWV_FLOW_ADVISOR", line 481 ORA-06512: at "APEX_040000.WWV_FLOW_ADVISOR", line 1784 ORA-06512: at "APEX_040000.WWV_FLOW_ADVISOR", line 3416 ORA-06512: at line 74 ORA-06512: at "APEX_040000.WWV_FLOW_ADVISOR", line 3806 ORA-06512: at line 28
    As far as i searched i only found some information about the old Advisor Plugin and problems with APEX Listener.
    Is there anybody who can tell me whats the problem?

    Problem is still present.
    Is there any know issue in version 4.0.2.00.07 which is similar to our problem? Otherwise we open a metalink call.

  • We uninstall photoshop cs6 on PC (creative suite design standard). How can we re-install it with our serial number ?

    After a problem with photoshop cs6 (CTRL+T stopped the application with an error message and closed the window), we uninstall it.
    We can't download photoshop cs6 on the adobe site to re-install it.
    At the moment I am working on photoshop cc evaluation for 1 month.
    What can we do to re-install cs6 with our serial number ?
    Thanks.

    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    If you did not deactivate the software before uninstalling then you should remember to do that in the future should you decide to uninstall again.  If you contact Adobe support thru chat they can help with deactivating the original installation.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • While installing windows with bootcamp error showing "A require Cd/Drive driver is missing" in the middle of installation. Please help what to do ??

    While installing windows with bootcamp error showing "A require Cd/Drive driver is missing" in the middle of installation m not able to install windows on my mac . Please help what to do ??

    What DVD drive are you using?

  • I'm getting error 205 when trying to install ID with Creative Cloud on Windows 7. Help please.

    I'm getting error 205 when trying to install ID with Creative Cloud on Windows 7. Help please.

    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • I get an error message when installing itunes with windows 8, error message is error occured while attempting to create the directory C:\program file(x86)\common files\apple\mobile device support\sync services\schemas\outlook.syncschema

    I keep getting an error message when installing iTunes with windows 8

    See the second box in Troubleshooting issues with iTunes for Windows updates.
    tt2

Maybe you are looking for

  • How to achieve round off value in SAP?

    here I have given my Query ..I need to calculate rounding off value for this query.. SELECT (CAST($[OBTN.U_Length] AS FLOAT)/CAST($[OBTN.U_Width] as FLOAT) *($[BTNT.Quantity]))

  • Linking webi reports dynamically

    Hi, I have a main report linked to a sub report. The customer can run the main report or schedule the main report. So here my question is how to create the open document url (with refresh on open option or with the latest instance option)? How to cha

  • Precise placement of inline objects

    Hi there! I need some help with placement of inline objects. When I work with floating objects, everything works fine. I can insert image and mark certain part of image with circe (from Shapes menu) or pull the arrow from the specific part of tex to

  • Pulseaudio random crashes after a three week update

    Since yesterdays (three weeks delayed) update I have faced multiple issues, the most buggy update I think I have had on arch ever. Managed to fix seven of them, but pulseaudio keeps crashing and behaving weirdly. Most of the times, it just stops with

  • Disk Needs to be repired????

    I ran disk utility (ran both repair permissions and verify disk) and It said "The Volume Macintosh HD was found corrupt and needs to be repaired". Then when I ran the disk utility from my installation disk it said no repair necessary, or everything i