PLEASE : How to configure a QueueConnectionFactory

I need to know how to configure a QueueConnectionFactory in jms.xml. I tried :
     <queue name="Queue proc" location="jms/movProcQueue">
          <description>A dummy queue</description>
     </queue>     
     <queue-connection-factory name="Queue Conn Factory" location="jms/movProcQueueConnectionFactory">
          <description>A dummy topic</description>
     </queue-connection-factory>
but when i try to get it :
QueueConnectionFactory conFactory =(QueueConnectionFactory) ctx.lookup("java:comp/env/jms/movProcQueueConnectionFactory");
I get the following message:
javax.naming.NameNotFoundException: jms/movProcQueueConnectionFactory not found in Application Client
java.lang.Object com.evermind.naming.MapContext.lookup(java.lang.String) MapContext.java:49
Please, I really need to know...

Hi Marcelo,
Obviously I can't speak for any one else on this forum -- but I'm not
a mind reader. The lookup string you use depends on whether your queue
client is also deployed to the OC4J container or not -- which you fail
to mention (in fact you don't mention anything about your environment,
this always helps -- me, at least :-)it's in the same machine (client and OC4J)
Also, the type of InitialContext object you create also depends on your client type and how you deploy it.it'd the com.evermind.server.ApplicationClientInitialContextFactory
So perhaps it would help you obtain an answer if you supplied the following:
1. Platform (SUN, intel, etc.)Intel
2. Operating system (UNIX, WinNT, linux, etc.)WinNT
3. OC4J version (1.0.2.2.1?)R2
4. Your JMS provider (OC4J, Swift, etc.)OC4J
5. Your deployment descriptors (XML files).I really need to reference the QueueConnectionFactory and the QUeue itself int he application-client.xml file?
mine:
<?xml version="1.0"?>
<!DOCTYPE application-client PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN" "http://java.sun.com/j2ee/dtds/application-client_1_2.dtd">
<application-client>
     <resource-ref>
          <res-ref-name>jdbc/OracleDS</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
     </resource-ref>
     <resource-ref>
          <res-ref-name>jms/QueueConnectionFactory</res-ref-name>
          <res-type>jms.javax.jms.QueueConnectionFactory</res-type>
          <res-auth>Container</res-auth>
          <resource-env-ref-type>jms.javax.jms.Queue</resource-env-ref-type>     
     </resource-ref>     
     <resource-env-ref>
          <resource-env-ref-name>jms/Queue</resource-env-ref-name>
          <resource-env-ref-type>jms.javax.jms.Queue</resource-env-ref-type>
     </resource-env-ref>
</application-client>
6. Code showing how you are creating your "Context" object.InitialContext ctx=new InitialContext();
// Lookup a JMS connection factory
QueueConnectionFactory conFactory =(QueueConnectionFactory) ctx.lookup("java:comp/env/jms/QueueConnectionFactory");
// Create a JMS connection
QueueConnection connection = conFactory.createQueueConnection();
// Create a JMS session object
QueueSession session = connection.createQueueSession(true,0);
// Lookup a JMS queue
Queue queue= (Queue) ctx.lookup("java:comp/env/jms/Queue");
// Create a JMS sender
QueueSender sender = session.createSender(queue);
Enumeration enum=vetor.elements();
ObjectMessage message=null;
while(enum.hasMoreElements())
Movimento mov=(Movimento) enum.nextElement();
message=session.createObjectMessage(mov);
sender.send(message);
//enviar mensagem de fim de processamento
connection.close();
Cheers,
Avi.

Similar Messages

  • How to configure File Adapter (Read)..?

    Hi all,
    While configuring the Read Adapter in BPEL 11g i am getting not reading any data from given location. But my location are correct.. So please how to configure File Read adapter and give any URL for this ... Thank you

    Hi all,
    The file adapter it consists many operations like
    1: Read
    2:Write
    3:Synchronous Read
    4:ListFiles
    So you are asking about Read operation
    First you take one File Adapter-->Select Read Operation--->Give Incomming file Location ( In local system you can give like C:/temp/NewDir Or Unix Envornment like you can give /temp/NewDir)
    After that you can give file Name like wich format it's incomming file name like CSV.txt or CSV.xml after you give Polling Intervels second or Mintued or Hour.You can select Native format or Define service Later once configure all those things the file adapter configration is done . If you have any doubts in file configrigation please go for the below link...........
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10231/adptr_file.htm#TKADP322

  • How to configure Queue and QueueConnectionFactory for a MDB

    Hi *,
    I want to send some messages from a session bean to a message driven bean. Therefore I'll use the default Queue (sapDemoQueue) and QueueConnectionFactory.
    In the ServiceLocator of my SessionBean I do the lookup with following methods:
        public QueueConnectionFactory getQueueConnectionFactory() throws NamingException {
            if (queueConnectionFactory == null) {
                Object obj = ctx.lookup("jmsfactory/default/QueueConnectionFactory");
                queueConnectionFactory = (QueueConnectionFactory) obj;
            return queueConnectionFactory;
        public Queue getQueue() throws NamingException {
            if (queue == null) {
                Object obj = ctx.lookup("jmsqueues/default/sapDemoQueue");
                queue = (Queue) obj;
            return queue;
    My Message Driven Bean is configure as followed:
    ejb-jar.xml:
    <message-driven>
      <ejb-name>ExportBean</ejb-name>
      <ejb-class>de.test.ejb.abschluss.ExportBean</ejb-class>
      <transaction-type>Container</transaction-type>
      <message-driven-destination>
        <destination-type>javax.jms.Queue</destination-type>
      </message-driven-destination>
    </message-driven>
    ejb-j2ee-engine.xml:
    <enterprise-bean>
      <ejb-name>ExportBean</ejb-name>
      <message-props>
        <destination-name>jmsqueues/default/sapDemoQueue</destination-name>
        <connection-factory-name>jmsfactory/default/QueueConnectionFactory</connection-factory-name>
      </message-props>
    </enterprise-bean>
    I also create a jms-factories.xml and a jms-destination.xml.
    EAR-Project/META-INF/jms-factories.xml:
    <jms-factories>
      <connection-factory>
        <factory-name>jmsfactory/default/QueueConnectionFactory</factory-name>
        <context-factory-type>
          <link-factory-name>jmsfactory/default/QueueConnectionFactory</link-factory-name>
          <initial-context-factory>com.sap.engine.services.jndi.InitialContextFactoryImpl</initial-context-factory>
          <provider-url>localhost</provider-url>
          <security-principal>Administrator</security-principal>
        </context-factory-type>
        <client-id></client-id>
      </connection-factory>
    </jms-factories>
    EAR-Project/META-INF/jms-destination.xml:
    <jms-destinations>
      <destination>
        <connection-factory>jmsfactory/default/QueueConnectionFactory</connection-factory>
        <destination-name>jmsqueues/default/sapDemoQueue</destination-name>
      </destination>
    </jms-destinations>
    How to configure correctly?
    Does anybody an example how to configure?
    Where may I download the example of the SAP documentation at http://help.sap.com/saphelp_nw04/helpdata/en/3d/41bee546e94ad48537f2cf06a29818/frameset.htm
    Thank a lot,
    Juergen

    Hello Vesselin
    My deployment descriptors:
    ejb-jar.xml
              <session>
                   <ejb-name>MonatsabschlussBean</ejb-name>
                   <home>de.filiadata.leistungserfassung.ejb.abschluss.MonatsabschlussHome</home>
                   <remote>de.filiadata.leistungserfassung.ejb.abschluss.Monatsabschluss</remote>
                   <local-home>de.filiadata.leistungserfassung.ejb.abschluss.MonatsabschlussLocalHome</local-home>
                   <local>de.filiadata.leistungserfassung.ejb.abschluss.MonatsabschlussLocal</local>
                   <ejb-class>de.filiadata.leistungserfassung.ejb.abschluss.MonatsabschlussBean</ejb-class>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
                   <resource-ref>
                        <res-ref-name>FdlbQueueConnectionFactory</res-ref-name>
                        <res-type>javax.jms.QueueConnectionFactory</res-type>
                        <res-auth>Container</res-auth>
                   </resource-ref>
                   <resource-env-ref>
                        <resource-env-ref-name>FdlbQueue</resource-env-ref-name>
                        <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
                   </resource-env-ref>
              </session>
              <message-driven>
                   <ejb-name>ExportBean</ejb-name>
                   <ejb-class>de.filiadata.leistungserfassung.ejb.abschluss.ExportBean</ejb-class>
                   <transaction-type>Container</transaction-type>
                   <message-driven-destination>
                        <destination-type>javax.jms.Queue</destination-type>
                   </message-driven-destination>
                   <resource-ref>
                        <res-ref-name>FdlbQueueConnectionFactory</res-ref-name>
                        <res-type>javax.jms.QueueConnectionFactory</res-type>
                        <res-auth>Container</res-auth>
                   </resource-ref>
                   <resource-env-ref>
                        <resource-env-ref-name>FdlbQueue</resource-env-ref-name>
                        <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
                   </resource-env-ref>
              </message-driven>
    ejb-j2ee-engine.xml
              <enterprise-bean>
                   <ejb-name>MonatsabschlussBean</ejb-name>
                   <session-props/>
              </enterprise-bean>
              <enterprise-bean>
                   <ejb-name>ExportBean</ejb-name>
                   <message-props>
                        <destination-name>FdlbQueue</destination-name>
                        <connection-factory-name>FdlbQueueConnectionFactory</connection-factory-name>
                   </message-props>
              </enterprise-bean>
    jms-factories.xml
    <jms-factories>
      <connection-factory>
        <factory-name>FdlbQueueConnectionFactory</factory-name>
        <context-factory-type>
          <link-factory-name>jmsfactory/default/XAQueueConnectionFactory</link-factory-name>
          <initial-context-factory>com.sap.engine.services.jndi.InitialContextFactoryImpl</initial-context-factory>
          <provider-url>localhost</provider-url>
          <security-principal>Administrator</security-principal>
          <security-credentials></security-credentials>
        </context-factory-type>
      </connection-factory>
    </jms-factories>
    jms-destinations.xml
    <jms-destinations>
      <destination>
        <connection-factory>FdlbQueueConnectionFactory</connection-factory>
        <destination-name>FdlbQueue</destination-name>
      </destination>
    </jms-destinations>
    And I'll put mit ServiceLocator:
        public QueueConnectionFactory getQueueConnectionFactory() throws NamingException {
            if (queueConnectionFactory == null) {
                Object obj = ctx.lookup("java:comp/env/FdlbQueueConnectionFactory");
                queueConnectionFactory = (QueueConnectionFactory) obj;
            return queueConnectionFactory;
        public Queue getQueue() throws NamingException {
            if (queue == null) {
                Object obj = ctx.lookup("java:comp/env/FdlbQueue");
                queue = (Queue) obj;
            return queue;
    Kind Regards,
    Juergen

  • How to configure Time-sheet in Project server 2013 please share the doc with screen shot

    How to configure Time-sheet in Project server 2013 please share the doc with screen shot
    Thanks and Regards, Rangnath Mali

    Hi,
    Please refer to the following Youtube video and article.
    https://www.youtube.com/watch?v=lZWvg4q17JE
    https://support.office.com/en-sg/article/Set-up-timesheets-and-task-status-672fa06f-8c4b-4e43-bfbc-4c355d681605
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • Please guide me How to configure the swift integration packages

    Hi frinds,
    Please guide me How to configure the swift integration packages, in swift we have to use MT103 format
    sender side we have ERD system and Receiver side File system,
    wt adapters  we have to use in sender side and what kind of encrypt and decrypt formats support for swift in PI

    hi,
    the only reference we have is this OSS note and guides inside it
    1064419 SAP Integration Package for SWIFT: Info about installation
    Please have a look at it,
    Regards,
    Michal Krawczyk

  • Welcome. At the outset, I'm sorry for my English :) Please help with configuration Photoshop CS6 appearance. How to disable the background of the program so you can see the desktop. (same menus and tools) Chiałbym to be the same effect as CS5.

    Welcome.
    At the outset, I'm sorry for my English
    Please help with configuration Photoshop CS6 appearance.
    How to disable the background of the program so you can see the desktop. (same menus and tools)
    i wantto be the same effect as CS5.

    Please try turning off
    Window > Application Frame

  • Could you please tell me how to configure NSP as « trusted » system  in the latest trial version of NetWeaver?

    Hi,
    Could you please tell me how to configure NSP as « trusted » system in the latest trial version of NetWeaver?
    Please see the attachment.
    Thanks,
    Marc

    Hi Marc,
    go to transaction STRUSTSSO2, generate a certificate for your system, then add it to certicate list and to ACL for your client.
    There will probabely be  several parameters to set in instance profile if you plan to use SSO.
    Best regards,
    Vincent

  • Can any one please tell me how to configure the oracle data gaurd. in steps

    can any one please tell me how to configure the oracle data gaurd. in steps

    Hi,
    http://docs.oracle.com/cd/E11882_01/server.112/e25608/create_ps.htm#i63561
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/ha/dataguard/physstby/physstdby.htm
    Regards
    Yoonas

  • Can AnyOne Please Tellme How to configure the HTML files

    This is very Urgent.
    1.I am using the WLS7.0 sp1 .I need to configure theHTML files which are in a
    different path how can I map them to the present DefaultWebAPP directory.
    2. How can I get rid of the port number when I am fully using in production mode.
    I have been posting this query since long but in vain. Please guide me

    1. I got rid of port number with link provided by the karthik.
    2.How can I create a link .The link appends to the defaultwebapp directory
    and checks from their .I need to know how to configure the
    HTML files which are not in the DefaultWebApp.But completely in directory.
    Any suggestions !!!!!!!
    Shehzad <[email protected]> wrote:
    1. You can create a link to that directory
    2. In order to get rid of port number, either boot weblogic at default
    port 80, or use Apache or Iplanet webserver, and use Weblogic plugin.
    That way all the traffic comming in from http will comein at port 80
    to the webserver, and would then be forwarded to Weblogic at whatever
    port it is booted.
    This is very Urgent.
    1.I am using the WLS7.0 sp1 .I need to configure theHTML files whichare in a
    different path how can I map them to the present DefaultWebAPP directory.
    2. How can I get rid of the port number when I am fully using in productionmode.
    I have been posting this query since long but in vain. Please guideme

  • I using new ipad 32gb and i cant get user name and password how i configure it ? please give me solution

    im using new ipad 32gb and i cant get user name and password how i configure it ? please give me solution

    What do you mean 'can't get user name and password' ? What are you trying to do with your iPad and what happens when you do it ?

  • Please how do i configure my lycamobile simcard for internet on my iphone 4?

    please how do i configure my lycamobile simcard for internet on my iphone 4?

    This has nothing to do with Apple, so I don't know why you're posting here.  You need to contact lycamobile.

  • Please help : How to configure a datasource in 9iAS

    Hello all,
    I am new at 9iAS . Can anyone tell me how we configure datasource with JNDI name in 9iAS.
    any help will be appriciated.
    Thanks a lot
    Madhukar
    null

    Do you mean from flash in a web page or do you mean
    converting the swf file format (maybe with a decompiler or
    whatever).
    If you're meaning to do it from flash in a web page:
    You can't save a movieclip from flash to svg. You could
    perhaps record drawingAPI commands and create the appropriate svg
    output in an internal xml object which you then send to the server.
    But I don't know of any pre-built classes to do that (disclaimer:
    because I don't know of any doesn't mean they don't exist).
    Going from svg to flash is doing it the other way around.
    Converting the svg paths back to actionscript drawing commands. I
    think I've seen some examples of this online somewhere.

  • How to configure oracle listener profile for multiple oracle database

    Hi,
    I am going to install solution manager system in the same server of ERP EHP4 on Windows. Both DB are oracle.
    I'd like to know how to configure listener in this kind of envirnmonent.
    a. use two listener and different ports
    b. use same listener but different ports
    c. use same listener and same port
    Which is the correct mothed?
    And, after installation, there seem three set of profiles of listten, one for ERP, one for SLM, and the other for OS?(%windir%system32), which one is functional?
    Please advise.
    Thanks a lot.
    Regards,
    Alex

    Hi,
    standard installation is creating new configs for listener for each instance.
    I would recommend to use one listener per each instance.
    YOU CAN NOT HAVE one port number for two differnet systems!
    If you want to use one listener than you must adapt tnsnames.ora, listener.ora and ensure that both systems will use different port numbers.
    For example PORT= 15<system number>
    Peter

  • How to configure sso with SSL step by step

    Purpose
    In this document, you can learn how to configure SSO with SSL. After user have certificate installed in browser, he can login without input username and password.
    Overview
    In this document we will demonstrate:
    1.     How to configure OHS support SSL
    2.     How to Register SSO with SSL
    3.     Configure SSO for certificates
    Prerequisites
    Before start this document, you should have:
    1.     Oracle AS 10g infrastructure installed (10.1.2)
    2.     OCA installed
    Note:
    1.     “When you install Oracle infrastructure, please make sure you have select OCA.
    2.     How Certificate-Enabled Authentication Works:
    a.     The user tries to access a partner application.
    b.     The partner application redirects the user to the single sign-on server for authentication. As part of this redirection, the browser sends the user's certificate to the login URL of the server (2a). If it is able to verify the certificate, the server returns the user to the requested application.
    c.     The application delivers content. Users whose browsers are configured to prompt for a certificate-store password may only have to present this password once, depending upon how their browser is configured. If they log out and then attempt to access a partner application, the browser passes their certificate to the single sign-on server automatically. This means that they never really log out. To effectively log out, they must close the browser.
    Enable SSL on the Single Sign-On Middle Tier
    The following steps involve configuring the Oracle HTTP Server. Perform them on the single sign-on middle tier. In doing so, keep the following in mind:
    l     You must configure SSL on the computer where the single sign-on middle tier is running.
    l     You are configuring one-way SSL.
    l     You may enable SSL for simple network encryption; PKI authentication is not required. Note though that you must use a valid wallet and server certificate. The default wallet location is ORACLE_HOME/Apache/Apache/conf/ssl.wlt/default.
    1.     Back up the opmn.xml file, found at ORACLE_HOME/opmn/conf
    2.     In opmn.xml, change the value for the start-mode parameter to ssl-enabled. This parameter appears in boldface in the xml tag immediately following.
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    3.     Update the distributed cluster management database with the change: ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct opmn
    4.     Reload the modified opmn configuration file:
    ORACLE_HOME/opmn/bin/opmnctl reload
    5.     Keep a non-SSL port active. The External Applications portlet communicates with the single sign-on server over a non-SSL port. The HTTP port is enabled by default. If you have not disabled the port, this step requires no action.
    6.     Apply the rule mod_rewrite to SSL configuration. This step involves modifying the ssl.conf file on the middle-tier computer. The file is at ORACLE_HOME/Apache/Apache/conf. Back up the file before editing it.
    Because the Oracle HTTP Server has to be available over both HTTP and HTTPS, the SSL host must be configured as a virtual host. Add the lines that follow to the SSL Virtual Hosts section of ssl.conf if they are not already there. These lines ensure that the single sign-on login module in OC4J_SECURITY is invoked when a user logs in to the SSL host.
    <VirtualHost ssl_host:port>
    RewriteEngine on
    RewriteOptions inherit
    </VirtualHost>
    Save and close the file.
    7.     Update the distributed cluster management database with the changes:
    ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct ohs
    8.     Restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl startproc process-type=HTTP_Server
    9.     Verify that you have enabled the single sign-on middle tier for SSL by trying to access the OracleAS welcome page, using the format https://host:ssl_port.
    Reconfigure the Identity Management Infrastructure Database
    Change all references of http in single sign-on URLs to https within the identity management infrastructure database. When you change single sign-on URLs in the database, you must also change these URLs in the targets.xml file on the single sign-on middle tier. targets.xml is the configuration file for the various "targets" that Oracle Enterprise Manager monitors. One of these targets is OracleAS Single Sign-On.
    1.     Change Single Sign-On URLs
    Run the ssocfg script, taking care to enter the command on the computer where the single sign-on middle tier is located. Use the following syntax:
    UNIX:
    $ORACLE_HOME/sso/bin/ssocfg.sh protocol host ssl_port
    Windows:
    %ORACLE_HOME%\sso\bin\ssocfg.bat protocol host ssl_port
    In this case, protocol is https. (To change back to HTTP, use http.) The parameter host is the host name, or server name, of the Oracle HTTP listener for the single sign-on server.
    Here is an example:
    ssocfg.sh https login.acme.com 4443
    2. Restart OC4J_SECURITY instance and verify the configuration
    To determine the correct port number, examine the ssl.conf file. Port 4443 is the port number that the OracleAS installer assigns during installation.
    If you run ssocfg successfully, the script returns a status 0. To confirm that you were successful, restart the OC4J_SECURITY instance:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Then try logging in to the single sign-on server at its SSL address:
    https://host:ssl_port/pls/orasso/
         3. Back up the file targets.xml:
    cp ORACLE_HOME/sysman/emd/targets.xml ORACLE_HOME/sysman/emd/targets.xml.backup
    4. Open the file and find the target type oracle_sso_server. Within this target type, locate and edit the three attributes that you passed to ssocfg:
    ·     HTTPMachine—the server host name
    ·     HTTPPort—the server port number
    ·     HTTPProtocol—the server protocol
    If, for example, you run ssocfg like this:
    ORACLE_HOME/sso/bin/ssocfg.sh http sso.mydomain.com:4443
    Update the three attributes this way:
    <Property NAME="HTTPMachine" VALUE="sso.mydomain.com"/>
    <Property NAME="HTTPPort" VALUE="4443"/>
    <Property NAME="HTTPProtocol" VALUE="HTTPS"/>
    5.Save and close the file.
    6.     Reload the OracleAS console:
         ORACLE_HOME/bin/emctl reload
    7. Issue these two commands:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Registering mod_osso
    1.     This command sequence that follows shows a mod_osso instance being reregistered with the single sign-on server.
    $ORACLE_HOME/sso/bin/ssoreg.sh
         -oracle_home_path $ORACLE_HOME
         -config_mod_osso TRUE
         -mod_osso_url https://myhost.mydomain.com:4443
    2.     Restarting the Oracle HTTP Server
    After running ssoreg, restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    Configuring the Single Sign-On System for Certificates
    1.     Configure policy.properties with the Default Authentication Plugin
    Update the DefaultAuthLevel section of the policy.properties file with the correct authentication level for certificate sign-on. This file is at ORACLE_HOME/sso/conf. Set the default authentication level to this value:
    DefaultAuthLevel = MediumHighSecurity
    Then, in the Authentication plugins section, pair this authentication level with the default authentication plugin:
    MediumHighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    2.     Restart the Single Sign-On Middle Tier
    After configuring the server, restart the middle tier:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Bringing the SSO Users to OCA User Certificate Request URL
    The OCA server reduces the administrative and maintenance cost of provisioning a user certificate. The OCA server achieves this by authenticating users by using OracleAS SSO server authentication. All users who have an Oracle AS SSO server account can directly get a certificate by using the OCA user interface. This reduces the time normoally requidred to provision a certificate by a certificate authority.
    The URL for the SSO certificate Request is:
    https://<Oracle_HTTP_host>:<oca_ssl_port>/oca/sso_oca_link
    You can configure OCA to provide the user certificate request interface URL to SSO server for display whenever SSO is not using a sertificate to authenticate a user. After the OracleAS SSO server authenticates a user, it then display the OCA screen enabling that user to request a certificate.
    To link the OCA server to OracleAS SSO server, use the following command:
    ocactl linksso
    opmnctl stoproc type=oc4j instancename=oca
    opmnctl startproc type=oc4j instancename=oca
    You also can use ocactl unlinksso to unlink the OCA to SSO.

    I have read the SSO admin guide, and performed the steps for enabling SSL on the SSO, and followed the steps to configure mod_osso with virtual host on port 4443 as mentioned in the admin guide.
    The case now is that when I call my form (which is developed by forms developer suite 10g and deployed on the forms server which is SSO enabled) , it calls the SSO module on port 7777 using http (the default behaviour).
    on a URL that looks like this :
    http://myhostname:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    and gives the error :
    ( Forbidden
    You don't have permisission to access /sso/auth on this server at port 7777)
    when I manually change the URL to :
    https://myhostname:4443/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    the SSO works correctly.
    The question is :
    How can I change this default behaviour and make it call SSO on port 4443 using https instead ?
    Any ideas ?
    Thanks in advance

  • HOW TO CONFIGURE MANAGER or APPROVER USER IN ACCESS REQUEST MANAGEMENT TO APPROVE OR REJECT REQUEST

    hi sap gurus,
    i configured grc 10 system successfully. I created one user: GR_AR_APP001 and assign following roles:
    SAP_GRAC_ACCESS_APPROVER
    SAP_GRAC_ACCESS_REQUEST_ADMIN
    SAP_GRC_FN_BASE
    SAP_GRC_FN_NUSINESS_USER
    and I maintained GR_AR_APP001 in access control owners as "POINT OF CONTACT", "SECURITY LEAD" and "WORKFLOW ADMINISTRATOR"
    but when i am creating access request for new user and defining MANAGER under user details tab as GR_AR_APP001.
    the user GR_AR_APP001 is not receiving any request for APPROVE or REJECT in his WORK INBOX.
    can u please guide me how to configure APPROVER or MANAGER to approve or reject request.
    I will be very much thankful if you guide me successfully.

    Hi Colleen,
    thanks a lot for your time.
    PIC1: I created one user: GR_AR_APP001
    and assigned all the GRC ROLES.
    PIC2: I assigned owner type to GR_AR_APP001 user : POINT OF CONTACT, SECURITY LEAD and WORKFLOW ADMINISTRATOR in NWBC ACCESS CONTROL OWNERS
    PIC3: I created one EUP 980 (copied from default EUP)
    PIC4: I maintained default manager as GR_AR_APP001 user in 980 EUP
    PIC5: I selected SAP_GRAC_ACCESS_REQUEST process id
    PIC6: I created one agent id as ZGRAC_MANAGER11 in which I added approver user id: GR_AR_APP001
    PIC7: I saved agent id
    PIC8: I added agent id as ZGRAC_MANAGER11 in stage5 in manager stage.
    PIC9: I saved
    PIC10: I maintained EUP 980 (in which I configured manager as GR_AR_APP001 user) in stage 5 task settings
    PIC11: Maintain Route Mapping, I clicked on next
    PIC12 and PIC13: I saved and activated.
    After this process I created one request for new account and selected the manager as GR_AR_APP001 and one request is created with request no 9000000030.
    now I logged into system by user GR_AR_APP001 and checked, there is no request under his work inbox.
    please guide me at least one procedure, how to receive request in approver work inbox so that I can learn other procedures to configure approver as per our organization requirement.
    thanks for your support Colleen.

Maybe you are looking for