Does Forms 11g uses opmn to startup the services like in 10g?

Hi,
In 10g forms services opmn was responsible for starting components such as forms, reports, discovery... does it works the same way in 11g? Do i need to start opmn to run forms 11g services? Or just startManagedWebLogic.sh WLS_FORMS ?
Regards
Ricardo

Hi,
As far as I know we need to keep any of these two to be up and running with WLS_FORMS
ohs or WC
You have to start this using opmnctl which you can find at $OI/bin directory

Similar Messages

  • What does a good Apple user do with the "Services"?

    Can someone help me understand what I am supposed to do with the services menu? It is probably really powerful and great, but I don't know when I would use this stuff?
    Thanks!...
    And as I searched this topic, I noticed that some people wanted to remove these from their menu. Would there be any benefit to doing this if I don't use the services menu?
    Thanks!

    Trevor
    Services are the most unused feature on OS X and I think they're great.
    However, they are immeasurably helped by two pieces of software:
    Service Scrubber which will allow you to turn off unwanted Services and add keyboard shortcut to others.
    Also ICeCoffEE which puts a services menu in the contextual menu.
    Regards
    TD

  • My i-tunes Wish List only shows the first page, it used to show all the pages- like the next page button is disconnected?

    My i-tunes Wish List only shows the first page- it used to show all the pages. Its a little like the next page button is disconnected?
    Any ideas?
    thanks
    Simon

    I would say all types. Any kind of document/ file that has multiple pages, I can't get to the next page.

  • Use of Contract in the Service purchase order

    Dear Experts,
    I am assigning the Contract for the services as a limit in the service purchase order for a specific service. The system is not checking the limit against the same at the time of the service entry sheet. I do not have the unlimited delivery checked for the line item.
    How it is possible to check the limit against the contract upto a certain limit.
    E.g. I have a total contract of 20000 USD for 12 months but in this month I only want to avail the services upto 2000USD against the same contract.
    How is it possible in the system

    If you are with value contract of 2000 usd then it will allow upto that?
    You can avial the service as per the coversion to Po with what ever the value with activity.

  • How to resolve the hostname by ipaddress of the service like ftp, smtp..?

    Hi,
    Can someone help me in identifying the hostname of the machine thru ftp or smpt address, assuming I have this application running in a LAN where these services are existing.
    I tried using gethostbyname by passing each of the computername in the LAN . What I get is hostent struct, but when I tried to match the ftp address with the address returned by hostent I doesnt match.
    I have not yet tried using gethostbyaddr, I think this may not work because the address that it expects there is the IPaddress of the machine but not the service IP address such as ftp address.
    Thanks for your time.
    Ram

    Hello Greg,
    Thank you for this question. What you are reporting looks to me like requires deeper analysis in the system. The channel for such questions is the Service Marketplace <i>http://service.sap.com/.</i> Please post it there.
    Thank you!
    Kind regards, Kyoko

  • Do I have to use opmn:ormi in the JNDI Service Provider URL?

    Trying to create a new Enterprise Message Source (JMS) and it's not updating the Data Object. Tested the OC4J queue using a Java POJO listener ... sending and receiving text message seems okay. I created a basic Plan (there's only one data element for now) and it is running.
    Any suggestions would be appreciated!

    Here is a document from Ranga on how to connect BAM to OJMS (hope it helps):
    Database Trigger - OJMS - BAM Integration Sample
    Last updated 07/27/05 Ranga
    OJMS setup
    Step 1 - Oc4j setup
    •     Install Standalone/Developer 10g OC4J or production version Application server.
    Developer version download -http://www.oracle.com/technology/software/htdocs/devlic.html?/technology/software/products/ias/htdocs/utilsoft.html#1012 or from http://bamqa.us.oracle.com/bamqaWiki/attach?page=Downloads%2Foc4j1012_extended.zip
    •     Modify following configuration files
    o     Add entry in <OC4J_Install_location>\j2ee\home\config\data-sources.xml for your database, use below sample replacing HOST, PORT and SERVICE_NAME in url tag
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="TTTDS"
    location="jdbc/OracleTTTDS"
    xa-location="jdbc/xa/OracleXaBamDS"
    ejb-location="jdbc/OracleEjbBamDS"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="scott"
    password="tiger"
    url="jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=tcp)(HOST=stank04)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=db10g)))"
    inactivity-timeout="30"
    />
    o     Add a resource provider entry in <OC4J_Install_location>\j2ee\home\config\application.xml
    <resource-provider name="BAMTTT" class="oracle.jms.OjmsContext">
    <description>BAM for Generic</description>
    <property name="datasource" value="jdbc/OracleTTTDS"/>
    </resource-provider>
    Step 2 - Database setup
    •     Install 10g or 9i database, below steps will setup AQ in sample schema scott.
    •     Connect to database as sys and grant AQ permissions to scott user
    connect sys/welcome1@db10g as sysdba
    grant SELECT_CATALOG_ROLE to scott;
    GRANT EXECUTE ON DBMS_APPLY_ADM TO scott;
    GRANT EXECUTE ON DBMS_AQ TO scott;
    GRANT EXECUTE ON DBMS_AQADM TO scott;
    GRANT EXECUTE ON DBMS_CAPTURE_ADM TO scott;
    GRANT EXECUTE ON DBMS_FLASHBACK TO scott;
    GRANT EXECUTE ON DBMS_STREAMS_ADM TO scott;
    execute dbms_aqadm.grant_system_privilege('ENQUEUE_ANY', 'scott', TRUE);
    grant aq_administrator_role to scott;
    grant execute on dbms_lock to scott;
    grant execute on sys.dbms_aqin to scott;
    grant execute on sys.dbms_aqjms to scott;
    •     Connect to database as scott user and create AQ
    connect scott/tiger@db10g
    execute dbms_aqadm.stop_queue( queue_name => 'bam_ttq' );
    execute dbms_aqadm.drop_queue( queue_name => 'bam_ttq');
    execute DBMS_AQADM.DROP_QUEUE_TABLE (queue_table => 'bam_ttq_tab');
    execute dbms_aqadm.create_queue_table( queue_table => 'bam_ttq_tab', queue_payload_type => 'sys.aq$_jms_text_message', multiple_consumers => true );
    execute dbms_aqadm.create_queue( queue_name => 'bam_ttq', queue_table => 'bam_ttq_tab' );
    execute dbms_aqadm.start_queue( queue_name => 'bam_ttq' );
    Database Trigger setup
    Run the following sql connected to database as scott user, it creates a trigger on EMP table.
    create or replace trigger send_recs_Employee AFTER INSERT OR Update ON EMP
    FOR each row
    declare
    xml_complete varchar2(8000);
    v_enqueue_options dbms_aq.enqueue_options_t;
    v_message_properties dbms_aq.message_properties_t;
    v_msgid raw(16);
    temp sys.aq$_jms_text_message;
    v_recipients dbms_aq.aq$_recipient_list_t;
    Begin
    temp:=sys.aq$_jms_text_message.construct;
    v_recipients(1) := sys.aq$_agent('istante',null,0);
    v_recipients(2) := sys.aq$_agent('test',null,0);
         v_message_properties.recipient_list := v_recipients;
    xml_complete :=
              '<?xml version="1.0"?><row>' ||
              '<EMPNO>' || :new.EMPNO || '</EMPNO>' ||
              '<ENAME>' || :new.ENAME || '</ENAME>' ||
              '<JOB>' || :new.JOB || '</JOB>' ||
              '<MGR>' || :new.MGR || '</MGR>' ||
              '<HIREDATE>' || :new.HIREDATE || '</HIREDATE>' ||
              '<SAL>' || :new.SAL || '</SAL>' ||
              '<COMM>' || :new.COMM || '</COMM>' ||
              '<DEPTNO>' || :new.DEPTNO || '</DEPTNO>' ||
              '</row>' ;
              temp.set_text(xml_complete);
    dbms_aq.enqueue(queue_name => 'bam_ttq',
              enqueue_options => v_enqueue_options,
              message_properties => v_message_properties,
              payload => temp,
              msgid => v_msgid );
    End ;
    BAM Setup
    •     Administrator - Fix the classpaths for oc4j jar files for Oracle (AS JMS and OJMS) Message source type using the OC4J_Install_location. If you are using production App Server you need to add extra classpath entry <App Server Location>\opmn\lib\optic.jar
    •     Architect - Create a new Enterprise message source of type Oracle (AS JMS and OJMS)
    Initial Context Factory:      com.evermind.server.rmi.RMIInitialContextFactory
    JNDI Service Provider URL:      o     For Standalone oc4j: ormi://machine name/
    Where machine name is OC4J installed host
    o     For Production App Server: opmn:ormi://<machine name>:<opmn request port>:home
    Where machine name is App server installed host, opmn request port could be found from looking at opmn.xml in <App server install location>/opmn/conf
    TopicConnectionFactory Name:      java:comp/resource/BAMTTT/TopicConnectionFactories/bam_ttq_tab
    Topic Name:      java:comp/resource/BAMTTT/Topics/bam_ttq
    JMS Message Type:      TextMessage
    Durable Subscriber Name (Optional):      Istante
    Message Selector (Optional):      
    Client ID (Optional):      ClientID
    Name     Flow name     Type     Max size     Formatting
    row.     row.     String     4000     (none).
    •     Enterprise Link Design Studio – create a basic plan with
    o     Oracle BAM Enterprise Message Receiver, selecting the message source you created in above step.
    o     Display sink Grid
    •     Create file jndi.properties in C:\Program Files\Oracle BAM\j2re1.4.1_01\lib with entries
    java.naming.security.principal=admin
    java.naming.security.credentials=welcome1 (App server/Oc4j password)
    Running
    •     Start OC4J
    •     To enqueue messages update or insert records in EMP table connected to database as scott user
    Insert into emp values (&empno,'FORD','ANALYST',7566,sysdate,60000,3000,20);
    •     Run update on the enterprise plan
    In above sample no parsing of the data is done, its got as one single string.
    OJMS setup
    Configuring JMS
    http://www.oracle.com/technology/books/pdfs/2352_Ch06_FINAL.pdf
    Oracle® Application Server Containers for J2EE Services Guide 10g Release 2 (10.1.2) for Windows or UNIX
    http://iasdocs/iasdl/101200doc/web.1012/b14012/toc.htm

  • In forms 11g ,use of web.eval_javascript_function()

    In forms11g ,I use web.eval_javascript_function('document.URL')  to get the URL of the page.
    but It may lead to lose focuse of forms ,and i can not to use the form by click it because it can not be selected .
    Any item on the canvas  cannot be click or be selected ,include button item.
    I show the value of the URL ,and it got the correct value.
    but in most of computers ,It works well.
    WHat may be the reason?

    Hi All,
    I am facing some issue while seeing the report using web.show_document as shown below:
    https://ucrmskr.apac.nsroot.net:10301/forms/html/001725032_gca.rtf_
    In this case the report opens directly without asking for me to save or open or cancel option
    whereas if I hit
    http://scrmskr.apac.nsroot.net:7801/forms/html/001725032_gca.rtf_
    it asks for save or open or cancel option
    so that I can save the report to my machine and open in wordpad format
    The report generated in the first case is not coming in proper format
    Below are my forms.conf mappings:
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/ucrmap1/weblogic/bea/ucrms/config/FormsComponent/forms/html/$1"
    RewriteRule ^/ucrms/icons/(..*) "/workaroundicons/$1" [PT]
    AliasMatch ^/workaroundicons/(..*) "/ucrmap1/weblogic/bea/ORA_PFRD/forms/java/$1"
    RewriteRule ^/forms/help/(..*) "/workaroundhelp/$1" [PT]
    AliasMatch ^/workaroundhelp/(..*) "/ucrmap1/ucrrgbg2/help/$1"
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicCluster kauh0079:9001
    DynamicServerList OFF
    </Location>
    Please let me know what needs to be done additionally if we are trying to hit https because in the second case we were hitting http with similar mapping in diff environment and it was generating report successfully.
    Regards,
    Harish

  • Does fibre channel use both ports on the same drive bay

    I would like to know if Fibre Channel uses both of the fibre ports when they are connected to the same fibre channel drive bay. (dual port communication)

    I would like to know if Fibre Channel uses both of the fibre ports when they are connected to the same fibre channel drive bay. (dual port communication)

  • As configuring the services like for example that of Forms and reports in Oracle 9iAs

    Como configurar los servicios como por ejemplo el de Forms y reports en Oracle 9iAs para sistema operativo Solaris. Para que los reports y forms sean vistos en la WEB.

    Jenny, for Forms and Reports configuration issues, you might try posting to the Oracle9i Forms forum:
    Forms: http://forums.oracle.com/forums/forum.jsp?id=345390
    Reports: http://forums.oracle.com/forums/forum.jsp?id=338539
    These are actively monitored by product managers from those groups. If your question covers Web services with Forms and Reports, check out the viewlets showing how to make those aspects of Forms and Reports work at:
    http://otn.oracle.com/tech/webservices/sample.html
    We are planning on rolling out some new content and how to's specific to Oracle Reports and Web services probably the last week of July. The content is just been written, reviewed and recorded this week based on the examples you see in those viewlets.
    Mike.

  • Unable to connect appstore and itune... i dont know whats wrong with u guys we are using apple beacause of the service but i think know better to move to samsung s 6 ...

    very bad service very bad srsly you guys are making fool
    customer buy iphone because of this service
    from mng my app store is not working i have iphone 6 i think my phone have problem i reset all setting... and now i dont have anyy app to use
    pls asap pls pls

    As per the Apple iCloud status page, they are having issues. Do not make changes at your end.
    https://www.apple.com/support/systemstatus/
    Edit

  • Is there any value in using software to clean the Mac like MacKeeper.  Is there serious need for this?

    I am concerned about malware and always had Macafee on my Dell.  When I go into Safari there is an initial delay saying that I am not connected to the internet and then the connection is made.  This is the cause of my concern.

    No. What ever you don't download MacKeeper. It will cause you nothing but troubles.
    As far as the best tool for malware on the Mac, it is your brain. Since there are no virus on the Mac, AV software only causes problems. So stay away from that. About the only exception is ClanXav. It has the best record of not causing problem. So if you need to test virus get ClamXav.
    The only malware out there are Trojans which use phishing attacks to get you to give them your permission to install them. This includes MacKeeper. It will attempt to get you allow it it with all means possible. So be careful and you don't need any software that is going to make your life miserable.
    Allan

  • Using Time Machine with Online Service like Mozy or Carbonite

    Can anyone advise me on whether or not I can use Time Machine with a Online Service provider like Carbonite or Mozy. I'm looking for best practices assuming it works at all.
    Thanks
    MikeK

    No, Time Machine because of the way it's written will only work wirelessly with the Time Capsule device. Althought it's not supported i've seen instances where you can use a third party router with an external HD to back up, but most of the time you won't actually be able to do a restore of the OS/individual files. Online storage is to say basically; completely out. Hope this answers your question

  • Loss of the services of Oracle 10g Express DB

    Hi,
    I don't know why those services disappeared this morning after I've logged into the PC, on which everything was set up (I mean the DB) and was working fine. It seems they disappeared after the reboot of the machine. Nothing was intentionally done against that. I do not see these at all
    ORACLEXE
    ORACLEXETNSLISTENER
    ORACLEJOBSCHEDULERXE
    ORACLEXECLRAGENT
    ORACLEMTSRECOVERYSERVICE
    When we're to remove the corr. registry entries when dropping Oracle 10 DB, do we need to change anything in the corr. login profile, if not, will anything be replaced (I mean will anything be reloaded from the corr. entries of the server profile, since we do have 2 profile copies, one on the local machine, another on the server?) after we've relogged in again?
    Bst Rgds,
    HuaMin

    Hi,
    Check this out:
    Re: Check database size
    database size
    Database Size
    Cheers,
    Marcello Travassos.

  • Forms 11g

    Hi,
    I am installing forms 11g.I have performed all the steps and the installation was done but it fails on domain creation.My error as shown in log file:
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:688)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Any suggestions will be appreciated.
    Regards

    Hi,
    I noticed you have two threads, i replied on both your threads :)
    It can be a variety of issues, please provide responses to my questions below - as i can quickly narrow down the issue that way. Typically the issue is either the installer can't indeed create the domain OR it created the domain and it can't startup the AdminServer.
    Questions for you:
    1.) What WLS version and Forms Software Version (and Patche(s) if applicable) have you installed?
    2.) Can you tell me in short what installation steps you did?
    3.) Can you provide System Specs? (OS, CPU Type, RAM, HDD Freespace).
    4.) During an installation, the Oracle Installer logs to both a .out and .log file. The .out is generally the most descriptive on errors. Can you post the entire .out file?
    5.) Can you find out if your domain directory was created? By default domains are stored in "%Middleware_Home%/user_projects/domains". If a domain was created, please use a command-line utility, navigate to your domain home directory (ex: %MW_HOME%/user_projects/domains/%domain_name%), then run the following command: startWebLogic. if it crashes and fails, let me know.
    Most Common Issues:
    1.) If Node Manager Windows is installed and running, this can cause a failure on creating domain. Verify if Node Manager is installed in your Windows Services. If it is, shut it down and 'retry' creating the domain. If Node Manager is not installed, ignore this.
    2.) Verify port 7001 is not being blocked by a firewall and verify if no other domains or processes are already listening on port 7001
    3.) The installer simply can't startup the AdminServer during this step (Starting up AdminServer is one of last activities the installer does). On 32-bit systems, the most common issue is JVM Heap allocation - if you are already using JDK 6, I'd recommend to use JRockit which comes with the weblogic 32-bit installer. For 64-bit Systems however, this most common issue has to do with "Program Files (x86)" entries in the PATH environment variable. Removing these from the PATH varaible, resolves this. If your domain has already been technically created on the filesystem and you're getting domain creation error, try manually starting up the AdminServer. If this script fails, this is the reason why you're getting the "domain creation" error.
    4.) Incorrect Forms Software version was installed on top of WebLogic. The following software version combinations are certified by Oracle.
    WLS 10.3.2 -> Forms 11.1.1.2
    WLS 10.3.3 -> Forms 11.1.1.3
    WLS 10.3.4 -> Forms 11.1.1.4
    WLS 10.3.5 -> Forms 11.1.2
    5.) Unsupported JDK Version
    This is all a lot at once, let me know if you need any clarifications. Hope this helps.
    Thank you,
    Gavin
    http://www.pitss.com/us

  • Forms 11g - web.show_document

    Hi!
    How can i reach the reports server with web.show_document in Forms 11g?
    "opmnctl status" shows the running reportsserver but when i make a call e.g. to
    http://pc1:8888/reports/rwservlet?report= ... a.s.o.
    the error message: Failure of server apache bridge:
    no backend server available for connections ...
    is thrown.
    any ideas?
    thanks in advance!
    Magoo

    Can you please specify the OS you are using. Because in Windows XP and Vista, only Forms & Reports Builder and Runtime are supported, and the system components (OHS, WC) are not supported.
    If you have installed in a Windows 2003 Platform and install is done with the system components, then the issue is with the OHS.
    OHS seems to be down.
    You can bring up the OHS, Reports Server through OPMN or start menu. And WLS_REPORTS from the start menu.
    In the command prompt, cd $ORACLE_INSTANCE\bin (By default - C:\oracle\Middleware\asinst_1\bin) run the command:
    opmnctl.bat status -l :- Will give the status of the components. If System components are not installed, this will not work.
    opmnctl.bat restartproc ias-component=ohs1 :- Will restart the OHS.
    This can be done from the Start Menu also:
    StartMenu -> Oracle Classic Instance - <Instance Name> -> Stop Oracle Http Server - ohs1
    StartMenu -> Oracle Classic Instance - <Instance Name> -> Start Oracle Http Server - ohs1
    You can stop and start the WLS_FORMS from the start menu:
    StartMenu -> Oracle Classic Instance - <Instance Name> -> Forms Services -> Stop WebLogic Server - WLS_FORMS
    StartMenu -> Oracle Classic Instance - <Instance Name> -> Forms Services -> Start WebLogic Server - WLS_FORMS
    Status of the WLS_FORMS can be seen from the Admin Console:
    http:<hostname>:7001/console (use the pwd given during the Classic SH install).
    Under Environment section, click Server.
    Summary of Servers Page will show the status of the WLS_FORMS.
    If you want to stop and start, select Control tab. Check the check box and press the corresponding button.

Maybe you are looking for

  • Premiere Pro CS4 "Export Settings" window does not show up.

    Hello, I've run into a new problem with Premiere Pro CS4. Basically, when I select "File > Export > Media" my Export Settings window doesn't show up. If I click on the Premiere window I hear the beeping sound and nothing happens, if I hit Enter the E

  • How can I stop net gear from blocking websites on my MacBook Pro 10.9.1?

    This problem only started occurring after I upgraded to Mavericks recently. Many sites I visit are now "blocked by NetGear." I'm wondering why this is happening and what I can to do stop it.

  • Standard authorization object for Infotype 41

    hi Just wondering did anyone came across standard profile that can define access based on date types? thanks

  • Zynq DMA access to PL memory (AXI BRAM)

    Hi, We need to transfer data from Zynq PL memory (AXI BRAM) to DDR and also DDR to PL. We have instantiated AXI BRAM controller in PL and are using M_AXI_GP0 interface from PS. We have verified the data transfer between DDR and PL using memcpy functi

  • Q100 audio drivers for Windows 7?

    I recently purchased a Q100 (3014-1CU), and after an initial bootup to the factory installed Win XP, I installed Windows 7 (32-bit), via USB cdrom. That process went smooth and everything works except for the audio. Windows 7 detected audio as "High