Smart Agents

Hi,
We are going to create Agent. This agent have to run even in absence of the user ie even when the user is not logged in. This agent may be created to generate some report, search for some products, etc. This agents may fire job depending on some frequency, or on some calender days.
This agents will be running on the server. When a job fire, we get some result like some report. The user have to be informed if the user is logged in. If the user is not logged in we will store this result in the back end.
Well i am planning to use JMS to push the message on to the queue. From the queue user get the message and updates the client front end with the latest search results.
Ours is an swing based application and Weblogic as application server. I am planning to for some third party job scheduler.
Is using JMS is advisable in this seniorio.
I am looking forward for ur valuable suggestions.
Thanks in advance.

As u are saying that weblogic have a scheduler. There is time services API. But the Weblogic 6.1 documents have deprecated this Time services and have recommeded Flex job scheduler.
If there is a built in or something like job scheduler, then i think that will be good.
Can u just sent me the link for the Weblogic job scheduler.
Thanks in advance.

Similar Messages

  • 9i reports path

    Hi,
    i have few queries regarding reports 9i.
    1) where can i find(in which file) the REPORTS_PATH parameter?
    2) what is the default folder path of oracle reports ?
    3)is there is different path for web reports n rdf reports ?
    4) first time when i run report ..it starts SMART AGENT n it take longer time to run report. whehter this is delay is due to it starts report server or smart agent.. how can i optimize?
    thanks

    Refer this, hope its helps you.
    http://download.oracle.com/docs/html/B13673_01/pbr_conf.htm#i1006129
    http://download.oracle.com/docs/html/B13673_01/pbr_rfap.htm#i648209
    http://download.oracle.com/docs/html/B13673_01/pbr_run.htm

  • Container crashes from time to time

    Hi there
    I'm running JDK 1.3.1, Tomcat 4.0.1, Borland JBuilder 6 latest update with fitting Borland Enterprise Server. The VisiBroker Smart Agent is running. So I start my container containing a few EJBs. The I start my WebApp, consuming the EJBs.
    I can work with it between a few Minutes and several hours but suddenly I cet errors from my WebApp. I take a look into the log of the Containers and I get the following (excerpt).
    Does anybody know this error ob even better know a solution?
    Thank you,
    Rolf.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x1f7f7e28
    Function name=SQLDisconnect
    Library=C:\WINNT\System32\ODBC32.dll
    Current Java thread:
         at sun.jdbc.odbc.JdbcOdbc.disconnect(Native Method)
         at sun.jdbc.odbc.JdbcOdbc.SQLDisconnect(JdbcOdbc.java:2413)
         at sun.jdbc.odbc.JdbcOdbcDriver.disconnect(JdbcOdbcDriver.java:859)
         at sun.jdbc.odbc.JdbcOdbcConnection.close(JdbcOdbcConnection.java:735)
         at sun.jdbc.odbc.JdbcOdbcConnection.finalize(JdbcOdbcConnection.java:85)
         at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
         at java.lang.ref.Finalizer.runFinalizer(Finalizer.java:86)
         at java.lang.ref.Finalizer.access$100(Finalizer.java:17)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:163)
    Dynamic libraries:
    0x00400000 - 0x00405000      C:\Programme\JBuilder6\jdk1.3.1\bin\javaw.exe
    0x77880000 - 0x77901000      C:\WINNT\System32\ntdll.dll
    0x68F30000 - 0x68F3B000      C:\WINNT\System32\PSAPI.DLL
    Local Time = Fri Sep 20 09:03:45 2002
    Elapsed Time = 1495
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.3.1-b24 mixed mode)
    # An error report file has been saved as hs_err_pid1660.log.
    # Please refer to the file for further information.

    Well, it looks like you're using a JDBC/ODBC bridge. Clearly something's seriously broken there, and you could try submitting the log file to Sun.
    However, it also looks as if you're allowing JDBC connections to be closed because they're becoming unreachable rather than because you're explicitly closing them. This is never a good idea. You could try closing them in the appropriate place (ejbRemove at a guess). This may solve your problem. At worst your container will crash sooner :(
    Sylvia.

  • How to bind the java client stub and the C++ server's skeleton?

    hi, i'm currently working on a project which a java client invoke a C++ object.
    i've wrote the idl and compile it using idl2cpp and a object is created.
    then i try to compile my java client using vbjc Client. it was done without errors.
    but when i try to run the client (after i run the smart agent and the C++ server) using vbj Client, it promts error which fail to load the class Client.java
    and i've try to run my java client using jre (java Client), the program throws exception --> org.omg.CORBA.BAD_PARAM: minor code: 0 completed: No
    so, wat's wrong with my codes actually??
    it's urgent and i really need you all's help...
    thanks a lot...

    below is my code:
    TimeObject.cpp (C++ server)
    #include "TimeImpl.h"
    // USE_STD_NS is a define setup by VisiBroker to use the std namespace
    USE_STD_NS
    int main(int argc, char* const* argv)
    try {
    // Initialize the ORB.
    CORBA::ORB_ptr orb = CORBA::ORB_init(argc, argv);
    /* // Initialize the BOA
    CORBA::BOA_ptr boa = orb->BOA_init(argc, argv);
    // Create the Time object
    POA_Time::TimeSetting timesetting = new TimeSettingImpl("My TimeSetting");
    // Export the newly created object
    boa->obj_is_ready(timesetting);
    // Ready to service requests
    boa->impl_is_ready(); */
    // get a reference to the root POA
    CORBA::Object_var obj = orb->resolve_initial_references("RootPOA");
    PortableServer::POA_var rootPOA = PortableServer::POA::_narrow(obj);
    CORBA::PolicyList policies;
    policies.length(1);
    policies[(CORBA::ULong)0] = rootPOA->create_lifespan_policy(
    PortableServer::PERSISTENT);
    // get the POA Manager
    PortableServer::POAManager_var poa_manager = rootPOA->the_POAManager();
    // Create myPOA with the right policies
    PortableServer::POA_var myPOA = rootPOA->create_POA("sntp_poa",
    poa_manager,
    policies);
    // Create the servant
    TimeSettingImpl timeServant;
    // Decide on the ID for the servant
    PortableServer::ObjectId_var managerId =
    PortableServer::string_to_ObjectId("TimeManager");
    // Activate the servant with the ID on myPOA
    myPOA->activate_object_with_id(managerId, &timeServant);
    // Activate the POA Manager
    poa_manager->activate();
    CORBA::Object_var reference = myPOA->servant_to_reference(&timeServant);
    cout << reference << " is ready" << endl;
    // Wait for incoming requests
    orb->run();
    catch(const CORBA::Exception& e) {
    cerr << e << endl;
    return 1;
    return 0;
    Client.java:
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    public class Client
         public static void main(String args[]) throws IOException, InterruptedException
              try
                   // Initialize the ORB
                   System.out.println("Initializing the ORB");
                   org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, null);
                   // Get the manager Id
                   byte[] managerId = "TimeManager".getBytes();
                   System.out.println("get the manager id");
                   // Locate an account manager. Give the full POA name and the servant ID.
                   Time.TimeSetting time =
                   Time.TimeSettingHelper.bind(orb, "/sntp_poa", managerId);
                   System.out.println("bind the object");
                   // Bind to the TimeSetting Object
                   //System.out.println("Binding to TimeSetting Object");
                   //Time.TimeSetting time = Time.TimeSettingHelper.bind(orb, "My TimeSetting");
                   SntpClient client = new SntpClient();
                   long Offset = client.synchronizeTime();
                   // Set offset
                   System.out.println("Setting offset to" + Offset);
                   time.offset((long)Offset);
                   // Set the system time
                   System.out.println("Setting system time");
                   time.SetTime();
              } catch (org.omg.CORBA.SystemException e)
                   System.out.println("System Exception");
                   System.err.println(e);

  • CiscoWorks won't start after LMS upgrade 3.0 - 3.2 ERROR 502 Bad Gateway in Portal

    I upgraded CiscoWorks LMS from 3.0 to 3.2 today.  Everything worked prior to the upgrade.
    The upgrade was successful, with no errors, and all services started.
    Can anyone help, and check everything and I see no problem. The system creates the file MDCSupportInformation.zip me clean without any content.
    I add the installation log file;
    And tell them that after upgrading to 3.2, you carge the following patches:
    LMS321-win-CSCtr77570-0.zip,
    cm5.2.1-nt-CSCtw88763-1.0.zip,
    lms3.2.1-win-CSCts95764-0.zip,
    lms3.2.1-win-CSCts82530-0.zip
    in that order.
    He added the logs generated by the LMS services Tomcat and Apache

    Hi,
    Here are the various errors/warning I found while looking through the attached logs.
    WARNING:The application that you are installing requires new tasks to be
    WARNING:registered with ACS. If you have already registered this application
    WARNING:with ACS from another server, you do not need to register it again.
    WARNING:However if you re-register the application, you will lose any custom
    WARNING:roles that you  had created earlier for this application  in ACS.
    WARNING:Some features in ACS may not work correctly on Dual-stack servers.
    Warning: System memory is less than the minimum requirement.This may affect performance.
    Warning: Current swap space is less than the minimum requirement. This may affect performance.
    WARNING: The available RAM is 4086 MB which is lesser than the required RAM of 4096 MB. User chose to continue the installation
    WARNING: Domain Name is not found from TcpIp parameters, setting PX_FQDN same as PX_HOST
    INFO: User Selected to Reboot the Machine
    Installation Completed at 16:38:06
    Nov 23, 2012 7:59:11 PM org.apache.tomcat.util.threads.ThreadPool$ControlRunnable run
    SEVERE: Caught exception (java.lang.NoClassDefFoundError) executing org.apache.jk.common.ChannelSocket$SocketConnection@d888c7, terminating thread
    [warn] RSA server certificate CommonName (CN) `LOND-CW-MDF-1' does NOT match server name!?
    [Fri Nov 23 19:19:46 CST 2012] CMFX - fileLoc is \C:\PROGRA~1\CSCOpx\lib\classpath\md.properties
    [ Fri Nov 23 19:22:22 CST 2012 ] TomcatMonitor After gettingAJPPort
    [ Fri Nov 23 19:22:22 CST 2012 ] TomcatMonitor After gettingAJPPort : ajpPort = 9009 and host =LOND-CW-MDF-1
    Cookie value is invalid
    LTGateway.run(): connection to LWMS failed, trying again,  Nov 23 19:22:28
    You have a BUNCH of the ChannelSocket$SocketConnection exceptions.
    The next step for you:
    Check the running processes via cmd line (pdshow -brief).
    Check that all processes are running as expected.  If they are then take a look at what is keeping ports open on your box (netstat -anob).  From above, the reason may be an application occupying a port LMS needs.  Also check the Windows error logs.
    Check the following services, they should look like:
    Ciscoworks ANI database engine :Manual
    CiscoWorks Daemon Manager :Auto
    CiscoWorks RME NG database :Manual
    CiscoWorks Tomcat Servlet engine : Manual
    CW VisiBroker Smart Agent :Manual
    CiscoWorks Web Server :Manual
    CWCS Cmf database engine :Manual
    CWCS rsh/rcp service :Auto
    CWCS syslog service :Auto
    CWCS tftp service :Auto
    DFM dfmEpm :Manual
    DFM dfmFh :Manual
    DFM dfmInv :Manual
       4.  Log in as the local Administrator (not Domain).
    Stop daemons (net stop crmdmgtd)
    CSCOpxMDC\Apache\perl ConfigSSL.pl -disable
    CSCOpx\MDC\Apache\perl ConfigSSL.pl -enable (Answer when prompted)
    navigate to ..\NMSROOT\setup\support
    Execute resetCasuser.exe
    Start Daemons (net start crmdmgtd) and wait 20 minutes.
    Check if condition persists.
       5.  Check the output of  ..\NMSROOT\MDC\Apache\bin>pdreg -l Apache
    A couple other things:
    Set the server name to be the server name with the domain as well.
    Set the primary DNS suffix to match
    Modify md.properties & Registry & set PX_FQDN to the above.
    - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet
    - HKEY_LOCAL_MACHINE\SOFTWARE\Cisco\ResourceManager\CurrentVersion\Environment
    Thanks.

  • Urgent! http listener not started with services

    Hi,
    I installed oracle 9i on my win2k, and it runs fine when I started manually with the ${ORA_HOME}\j2ee\Oracle9iDS\startinst.bat.
    I then try to registrate it as services with this command: rwserver -install rep_mypcname autostart=yes
    It registrated successfully and I save it is started automatically, I also saw an icon (smart agent) on my right hand bottom taskbar.
    But when I tested it via http://localhost:8888/reports/
    It can't find the server, and obviously no http listener is up.
    All my config are default, here is my rwservlet.properties:
    SERVER_IN_PROCESS=YES
    Also there is no log files generated in ${ORA_HOME}\j2ee\Oracle9iDS\log\ when it is started as service, but if it is started from command line by using "startinst.bat", some log files are generated.
    Am I missing some steps?
    Thanks.
    David

    David,
    Script startinst.bat starts the OC4J instance, not the Reports Server. When you send request to http://<server>:<port>/reports/rwservlet, it will startup an in-process Reports Server if it has not been started.
    The command you run:
    rwserver -install rep_mypcname autostart=yes
    only install Reports Server as a service. It has nothing to do with OC4J instance, which you will still need to startup yourself. That's why http server is not up.
    The difference is that if the Reports Server is up, after you start up OC4J, the in-process server will no longer need to be started.
    -Jeff

  • A simple Report Server question!!

    Hi there,
    I have recently installed 9iDS; as to start publishing my reports to the web, none of the following works:
    http://myhost:port/reports/
    http://myhost:port/reports/rwservlet/showenv
    http://myhost:port/reports/rwservlet/showjobs
    they all give me the same result:
    an empty browser window and an empty "smart agent"window too!!
    I have already started the OC4J instance and I have my "default-web-site.xml" file modified as the following:
    <web-site host="myhost" port="8888" protocol="http"
    display-name="Oracle9iDS instance of Oracle9iAS Containers for J2EE Web Site">
    my question is:
    Does Report Server ship with 9iDS? or do I have to install an application server(9iAS i.e) to use Report Server???
    appreciating ur cooperation.. Mourad

    1)i think rwservlet is not there in ids - only in ias
    2) Does Report Server ship with 9iDS? or do I have to install an application server(9iAS i.e) to use Report Server???
    look for rwserver.exe in oh/bin.
    for production applications "yes", u need a iAS license to deploy over web

  • Ciscoworks LMS2.6 can't start

    Hi all,
    Our organization using LMS 2.6 running on the Windows Server 2003 Std Edition. I installed the Acronic True Image Enterprise Server on this and I'm backup my system using this. After I restart the server, Ciscoworks cannot working properly. I can see the login page but after login, there is only blank page.
    I can use " net stop/start crmdmgtd" but sometimes it takes 20 minutes to stop. Sometimes its very first to stop the service.
    After stop/start I tried to use "pdterm ANIServer" but system reply
    ERROR: GetReply from server failed:
    ERROR: Daemon Manager startup in progress. Please wait.
    I tried many times but still the same error.
    Here is the log from ciscoworks.
    I really really appreciate any help. Thanks everyone.
    Jun 30 16:16:42 127.0.0.1 100: <30>   dmgt[1992]: 3007(I):Started application(EssMonitor) "C:\PROGRA~1\CSCOpx\bin\cwjava.exe -cp:a C:\PROGRA~1\CSCOpx com.cisco.nm.cmf.ess.EssMonitor" pid=4540.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2005(W):Internal Error: The maximum number of retry attempts (3) to restart application (TomcatMonitor) has been reached.  This application will not be restarted. Call your technical support representative for assistance.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2005(W):Internal Error: The maximum number of retry attempts (3) to restart application (EDS) has been reached.  This application will not be restarted. Call your technical support representative for assistance.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2005(W):Internal Error: The maximum number of retry attempts (3) to restart application (EssMonitor) has been reached.  This application will not be restarted. Call your technical support representative for assistance.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2039(W):An application (LicenseServer) has terminated. No action necessary.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2119(W):A registered application, LicenseServer, exited with an unexpected status, stopped with signal 1073741823, exit value -1  and no  core dump.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2053(W):An application that is not registered sent a status message ServNotificationDM to the daemon manager.  The message was ignored.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2055(W):An application that is not registered sent message ServNotificationDM to the daemon manager.  The message was ignored.
    Jun 30 16:17:43 127.0.0.1 100: <30>   dmgt[1992]: 3007(I):Started application(LicenseServer) "C:\PROGRA~1\CSCOpx\bin\cwjava.exe -DNMSROOT=C:\PROGRA~1\CSCOpx  -cp:p lib\classpath;objects\log4j\1.1.3\log4j.jar;lib\classpath\License.jar -cw:jre MDC\jre com.cisco.nm.license.server.LicenseServer" pid=6156.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2053(W):An application that is not registered sent a status message Archive Mgmt to the daemon manager.  The message was ignored.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2055(W):An application that is not registered sent message Archive Mgmt to the daemon manager.  The message was ignored.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2039(W):An application (LicenseServer) has terminated. No action necessary.
    Jun 30 16:17:43 127.0.0.1 100: <30>   dmgt[1992]: 3007(I):Started application(LicenseServer) "C:\PROGRA~1\CSCOpx\bin\cwjava.exe
    -DNMSROOT=C:\PROGRA~1\CSCOpx  -cp:p lib\classpath;objects\log4j\1.1.3\log4j.jar;lib\classpath\License.jar -cw:jre MDC\jre com.cisco.nm.license.server.LicenseServer" pid=6884.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2039(W):An application (LicenseServer) has terminated. No action necessary.
    Jun 30 16:17:43 127.0.0.1 100: <30>   dmgt[1992]: 3007(I):Started application(LicenseServer) "C:\PROGRA~1\CSCOpx\bin\cwjava.exe -DNMSROOT=C:\PROGRA~1\CSCOpx  -cp:p lib\classpath;objects\log4j\1.1.3\log4j.jar;lib\classpath\License.jar -cw:jre MDC\jre com.cisco.nm.license.server.LicenseServer" pid=4392.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2039(W):An application (LicenseServer) has terminated. No action necessary.
    Jun 30 16:17:43 127.0.0.1 100: <28>   dmgt[1992]: 2095(W):Internal Error: The daemon manager cannot run application Exceeded maximum restart attempts 3.

    Hi,
    Check the Services (Control Panel->Administrative Tools->Services). Look for the services beginning with "CiscoWorks" and note their Startup Type.
    CiscoWorks ANI database engine
    CiscoWorks Daemon Manager
    CiscoWorks RME NG database engine
    CiscoWorks Tomcat Servlet Engine
    CiscoWorks VisiBroker Smart Agent
    CiscoWorks Web Server
    The Daemon Manager should be "Automatic", ALL the rest should be "Manual". If this is not the case, set the rest to Manual and restart the daemon manager.

  • ANI Server failed, CiscoWorks homepage blank

    Hi All,
    We are using LMS2.6. Now can't start ANIServer. Whenever we tried to start ANIServer with this command "pdexec ANIServer" the system reply
    ERROR: Get reply from server failed:
    ERROR: Daemon Manager startup in progress. Also, when we open the CiscoWorks,we can reach to login page. After login, there is only blank page.
    C:\Program Files\CSCOpx\campus\bin>pdShow ANIServer
    Process= ANIServer
            State  = Failed to run
            Pid    = 0
            RC     = -1
            Signo  = 1073741823
            Start  = N/A
            Stop   = 6/30/2010 5:15:53 PM
            Core   = Not applicable
            Info   = Application failed or was registered incorrectly.
    We really need help and we can't run our CiscoWorks since a week ago.

    You've changed your Service startup parameters, and this is breaking LMS.  You must NEVER touch the LMS Service startup parameters unless instructed to do so by TAC.
    Change the startup parameter of each of the following services to Manual, then reboot the server.  LMS should operate correctly.
    CiscoWorks Web Server
    CiscoWorks ANI database engine
    CWCS Cmf database engine
    DFM dfmEpm database engine
    DFM dfmInv database engine
    DFM dfmFh database engine
    CiscoWorks RME NG database engine
    CiscoWorks Visibroker Smart Agent
    CiscoWorks Tomcat

  • Cisco LMS questions

      I need the help from the expert of LMS installation , i need to make sure that services must be as the following
    CiscoWorks ANI database engine: Manual
    CiscoWorks Daemon Manager: Automatic
    CiscoWorks RME NG database engine: Manual
    CiscoWorks Tomcat Servlet Engine: Manual
    CiscoWorks VisiBroker Smart Agent: Manual
    CiscoWorks Web Server: Manual
    CWCS Cmf database engine: Manual
    CWCS rsh/rcp service: Automatic
    CWCS syslog service: Automatic
    CWCS tftp service: Automatic
    DFM dfmEpm database engine: Manual
    DFM dfmFh database engine: Manual
    DFM dfmInv database engine: Manual
    Other things i will install on cisco server 2008 service pack 2.

    Hi Islam,
    Services STARTUP type is Absolutely correct..
    Thanks
    Afroz

  • Oracle reports(9i) as destype=file and desformat=dflt

    Hello,
    I have a front end in forms which give a call to run a report on press of button.The report(9i) is not using charecter mode runtime.It is giving me error though dflt.prt is already there in the printer file under oracle home directory.
    Can any one tell me why is it unable to get this prt file.
    Is it beacuse that we can use these prt files in charecter mode only.
    If yes,how can i use it to run my report from forms with charecter mode runtime? When i try the same i am getting an error saying charecter mode runtime is not allowed.
    Cheers,
    Rajeev

    Hi,
    Thanks for your reply.
    Clustering seems to be very good feature of the Oracle Reports server however in our application we do not want more than one server. The problem which I face is mentioned below:
    1. We have a server application which actually starts the oracle rwserver.exe in a separate process during its initialization.
    2. Whenever this server application receives a report request it from some client then it executes the reports by calling rwclient.exe through a separate process which in turns submits the request to rwserver.exe
    3. My problem is that in our network we can have multple such server application running different releases. For this we need to run the rwserver on all the machines where my server application is running.
    4. In this scenario this Smart agent (osagent.exe) is preventing me to make the different servers applications of different releases to be up and running.
    5. How can I configure my rwserver.exe/osagent.exe so that it remains concerned with the specific machine on which it is running.
    Thanks
    Ashish

  • CiscoWorks problem

    Hi Netpro's,
    My CiscoWorks application is failing to start. There are 3 services displayed under the Services console:
    1) CW2000 ANI database engine (Started)
    2) CW2000 Daemon Manager (Unable to Start)
    3) CW2000 VisiBroker Smart Agent (Started)
    Is there any other service along with these services. Can anyone point to any troubleshooting document on this. Any valuable feedback welcome. Thanks in advance.

    Is the casuser account is still active (not disabled)on the system? Has anyone changed the password security policy for the user
    "casuser"?
    Can you try resetCasuser.exe to reset it to default and then try to start the service.

  • Need guidance for upgrading application server

    hello everyone ,
    i have recently upgraded my oracle database from 9.2.0.5 to 10.2.0.4 on HP uX 11.11 , my EBS version is 11.5.10
    now i want upgrade my application server, firstly i didnt knew version of my AS
    after searching through oracle installer i found out the following components
    /appldvp/apps/prodora/8.0.6
    Oracle Unix Installer 4.0.3.0.0
    Oracle On-Line Text Viewer 1.0.1.0.0
    Client Software 8.0.6.0.0
    Ordts Common Libraries 8.0.6.0.0
    ORACLE NLS Libraries and Utilities 8.0.6.0.0
    ORACLE Core Libraries 8.0.6.0.1
    ORACLE Common RDBMS Libraries and Utilities 8.0.6.0.1
    ORACLE PL/SQL Libraries 8.0.6.0.0
    ORACLE Common Libraries 8.0.6.0.1
    ORACLE Common Precomp Libraries 8.0.6.0.1
    ORACLE Common Network Libraries and Utilities 8.0.6.3.0
    ORACLE Common Trace Libraries 8.0.6.0.0
    ORACLE Common Utilities 8.0.6.0.0
    ORACLE Common Agent Libraries 8.0.6.0.0
    ORACLE Common Libraries and Utilities 8.0.6.0.0
    Platform specific Libraries and Utilities 8.0.6.0.0
    Net8 (SQL*Net and Names) 8.0.6.3.0
    TCP/IP Protocol Adapter 8.0.6.0.0
    Remote Operations 3.0.2.0.1
    Oracle Names 8.0.6.3.0
    ToolKit 6.0 Base 6.0.8.10.1
    Discoverer Collector 4.1.48.06.00
    Configuration Guide 4.1.33f
    Discoverer Libraries 4.1.48.06.00
    Discoverer Locator 4.1.48.06.00
    Discoverer Preferences 4.1.48.06.00
    Discoverer Session 4.1.48.06.00
    Oracle Discoverer Viewer for Web 4.1.48.06.00
    Oracle Discoverer Plus 4.1.48.06.00
    Oracle Discoverer Server (Web) 4.1.48.06.00
    JInitiator 1.1.7.30
    JInitiator 1.1.8.11
    VisiBroker Smart Agent 3.3.1.0
    VisiBroker for C++ 3.3.3.0
    VisiBroker for Java 3.4.0.0
    VisiBroker Products 3.3.1.0
    PL/SQL 8.0.6.3.0
    Oracle Server Manager 3.0.6.0.0
    Oracle8 Enterprise (RDBMS & PLSQL) 8.0.6.3.0
    <Database Startup> Load Files 1.0.0.0.1
    Oracle Intelligent Agent 8.0.6.0.0
    Oracle Trace 8.0.6.0.0
    Precomp 8.0.6.3.0
    Pro*C/C++ 8.0.6.3.0
    Oracle8 JDBC Drivers 8.0.6.3.0
    Java Runtime Environment 1.1.6.2o
    Java Runtime Environment 1.1.8.13
    SQL*Plus 8.0.6.0.0
    ToolKit 6.0 Extension 6.0.8.10.1
    Multimedia APIs 6.0.5.33.0
    Tools Common Area 6.0.5.32.0
    PL/SQL Procedure Builder 6.0.8.11.0-449
    Integration Services 6.0.5.35.0
    Oracle SQL Manager Library 6.0.8.10.0
    Virtual Graphics System 6.0.5.35.0
    Oracle Charting Library 6.0.8.10.1
    Oracle Graphics 6.0.8.10.0
    Oracle Forms Server and Forms Developer 6.0.8.11.3
    Oracle Reports Server and Reports Developer 6.0.8.11.2
    ZRC Library 6.0.8.3.5
    GE Libraries 6.0.8.10.0
    Release Notes for Oracle Tools Products 6.0.8.11.2
    Tuxedo Support for Forms 6.0.5.2.0
    Oracle Jinitiator (Domestic) 1.1.7.31
    Oracle JDK Appletviewer (Domestic) 1.1.7.31
    Oracle Browser 6.0.5.32.0
    Oracle Wallet Manager 2.1.0.0.0
    Common documentation resources 2.0.0.0
    Oracle for HP 9000 Servers and Workstations Documentation 8.0.6.0
    Resource Object Store 6.0.5.0.1
    Toolkit Utility Library 6.0.5.33.1
    Toolkit Automation Library 6.0.5.33.1
    Oracle Information Navigator 6.0.4.0.0
    Online Documentation Library 6.0.8.11.4
    Project Builder 6.0.5.6.0
    is AS version 8.0.6 , if it is , how do i upgarde to the latest on avaialble
    thanx in advance

    document 146468.1 specifies how to upgrade to latest realese of 9i AS , but i want ot upgrade it to 10gYou cannot upgrade your Oracle 9iAS to Oracle AS10g, you can only upgrade it to 9iAS (1.0.2.2.2). For more details, refer to Note: 186981.1 (What versions of Oracle9i Application Server Release 1 can be used with Oracle E-Business Suite Release 11i) and (Can an existing Release 11i application server be upgraded to Oracle Application Server 10g?)
    If you want to have Oracle Applications Server 10g, you need to install it in a NEW ORACLE_HOME (Refer to Note: 233436.1 for more details).
    i am still confused for my AS version , how can i clarify that To determine the version, issue:
    UNIX: $ORACLE_HOME/Apache/Apache/bin/httpd -version
    Windows: %ORACLE_HOME%\Apache\Apache\apache.exe -version
    main components which i am using with my current AS are forms and reports serverOracle Developer 6i (Forms and Respports) are NOT part of Oracle Applications Server installation, it is installed under 8.0.6 ORACLE_HOME.
    can they be independently upgraded?Yes, see my answer to the first question in this reply.

  • How to deploy a distributed visibroker based-application ?

    Hell,
    I have build a collaborative video application that allows physicians to work remotely, at the same time and together on medical video files preliminary replicated on each site.
    To initiate a collaborative session, an application, called supervisor, is run on a computer with a well-known IP adress. Then, each remote user must connect it client application (collaborative video player) to the supervisor one by filling the IP adress of the computer running the supervisor application. The aim of the supervisor aplication is to receive messages that encode user action, and to redistribute these messages to all other client applications that will be updated indentically (state consistency must be maintained).
    Both client and supervisor application have benn developped using Java and the Visibroker 4.5 Corba ORB has been used for communications between remote applications.
    All the tests we made on a local nework were successful. However, we have big problem to use this distributed application if the computers running the supervisor and the client applications are connected through the Internet and not through the same local network.
    If you are familiar with Visibroker, you may know that a daemon, named Smart Agent must be run so that remote objects can be seen. This daemon works well on a local network but how can we use it through the Internet ???
    The visibroker documentation mentionned that a command instruction allows to mentionned the IP adress of the computer running the smart agent (.... -Dvbroker.agent.addr= 125. ...) and even on which port the smart agent is listening to. We have tried this withourt success !!!
    So, I don't know what to do now. That is the reason why I post this message to this forum. I really hope that someone would help me to solve this problem.
    Thank you very much per advance.
    With my best regards.
    Yannick.

    By default, the visibroker orb performs resolve_initial_references using multicast, which (depending on your network configuration) will not be routed outside the local subnet. You should be able to connect to the visibroker smart agent on another network by supplying the following options to the client application -Dvbroker.agent.addr=<address of machine running smart agent> -Dvbroker.agent.port=<smart agent port> -DSVCnameroot=NameService (as long as you have started the naming service with the name NameService). This assumes you are using the visibroker orb on the client. If you are using an applet, the usual security restrictions apply. If you have to go through a firewall, ensure it is configured to let IIOP traffic through or I think you may be able to configure visibroker to use HTTP tunneling.

  • Run Report  Server  in Oracle9iDS

    Hello!
    I use Oracle9iDS ( from9i & report9i)
    I can open report direct from browser by writing URL
    http://test:8888/reports/rwservlet?report=test.rep&userid=test/test@test&destype=cache&desformat=html&server=repserver and it Runs the Smart Agent .
    I note when the Smart Agent is running , I can call and run report server from Form by using the following code , otherwise it gives me blank page and alerts me that it cant find report server . Please point me how the Smart Agent will be running immediately after I call report server from Form .
    please mail at [email protected]
    Best Regards
    Omar
    ------Code--------
    DECLARE
    report_id Report_Object;
    report_job_id VARCHAR2(200);
    rep_status VARCHAR2(200);
    job_number NUMBER;
    server_name VARCHAR2(200) := 'repserver';
    BEGIN
    report_id:= FIND_REPORT_OBJECT('rep1');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER, server_name);
    report_job_id := RUN_REPORT_OBJECT(report_id);
    rep_status:=REPORT_OBJECT_STATUS(report_job_id);
    WHILE rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(report_job_id);
    END LOOP;
    IF rep_status='FINISHED' THEN
    message('OKKKKK');
    JOB_NUMBER := length(server_name) + 1;
    Web.show_document('http://172.20.228.5:8888/reports/rwservlet/getjobid'||substr (report_job_id,instr(report_job_id,'_',-1)+1)||'?server='||server_name,'_blank');
    ELSE
    message('STATUS: '||rep_status);
    END IF;
    END;

    Omar,
    the Smart Agent is a part of the Object Request Broker (ORB) used by the Reports Services internal communication. Seeing the Smart Agent window shows you that the Reports Server is running. The problem you are having is that the Reports Servlet that you run from the URL in the Web implicitly starts the Reports Server for you. Forms does not use this Servlet for reporting and thus requires the Reports Services to be up and running when first requesting it. You need to start the Reports Server prior to using it with Forms. E.g. as a service:
    rwserver -install repsrv
    to install it as a windows service
    Frank

Maybe you are looking for

  • Droplets and unmanaged services

    Is it possible to have a droplet start a job on Compressor 3 and use "unmanaged services on this machine"? The only way I have found to use the unmanaged services to use all the processors is to manually start the job. Thanks, Scott

  • DataGrid itemrenderer with switch statement

    Hi, I have datagrid control with this columns <mx:DataGrid id="dgvParagraphs" >     <mx:columns>         <mx:DataGridColumn dataField="type" headerText="Type"/>         <mx:DataGridColumn dataField="title" headerText="Title"/>         <mx:DataGridCol

  • Cinema 4d Lite not recognizing mouse clicks?

    Hello everyone. I've been working on a project in After Effects CC and was reading about the integration of Maxon Cinema 4d Lite. I wanted to try to make my 2D diamond into a 3D model and it seemed the perfect application to do so. Unfortunately, whe

  • To empty iPhoto Library

    Hi everyone I would like to empty the iPhoto Library to retrieve a bit of space from my Hard Disk After a back up and copied the pictures on DVD's I would like to delete the originals from the Library. In the library there are 3 folders: Originals,Mo

  • To create a mailing list for a specific ou

    Dear all, I am trying to define an emailing list for a specific ou members! using dynamic ldap search filters! I have already working lists for all domain, and for static lists! but not a restricted dynamic ldap :( i used many queries and all result