Message Queue Enterprise Edition

I have Sun One Directory server Service pack 4 installed and configured in a multi-master configuration. I want to install identity sync to sync up with a 2003 server to support windows clients with single point of maintenance for accounts and passwords. The release notes for the identity sync tool 1 2004Q3 SP1 say I need Message Queue Enterprise Edition. I have a bunch of message queue packages already installed and need to know if what I have is enough, or what I need to download (and where) to make this thing work.
I have : SUNWiqdoc, SUNWiqfs, SUNiqjx, SUNWiqr, SUNWiqu, SUNWiquc, SUNWiqum
Thanks
...MJW

Customers who purchased the iPlanet Message Queue for Java version 2.0
Enterprise Edition, or the iPlanet Java Message Queue version 1.1 Business Edition,
who also have a current maintenance contract for this product, are entitled to a free
upgrade. Sun customers should use their normal support channels to request the
upgrade. All corporate customers with Sun Software Support contracts should be
automatically notified of the upgrade via the ProductTracker by SubscribeNet
program. If you haven't, please contact Sun Customer Service online or by phone at
888-786-8111. Parties interested in upgrading will be required to provide
proof-of-purchase. Customers of previous versions of the free Developer Editions, or
customers without a current maintenance contract on this product, can not upgrade
for free, they must buy the Sun ONE Message Queue 3.0 Enterprise Edition product,
or they can download the Sun ONE Message Queue 3.0 Platform Edition product for
free from: http://wwws.sun.com/software/download/download/5275.html

Similar Messages

  • Revised product name: "Oracle GlassFish Enterprise Message Queue"

    Hello,
    the release notes for OpenMQ 4.5 build 16 include a note about a revised product name, "Oracle GlassFish Enterprise Message Queue". Is this planned to be the future product name for the commercial product (the product formerly known as Java System Message Queue), or is this meant to be the name for both versions?
    Many thanks in advance,
    Michael Justin
    Edited by: 801285 on 10.10.2010 01:49

    Hi all,
    I have finally solved the problem, it seems somehow on my windows home premium I can't run the install script (on H:\ ) from the command line. I manually ran the batch script by double clicking on it, it ran fine and I was finally able to install ORE (server + supported + client) on my laptop. Now the connection -- followed through the manual, created user and granted all the roles. Now that I want to test the connection, I open R console and below are the input and output error message though it seems I can connect to the database:
    R>
    R> library(ORE)
    Loading required package: OREbase
    Attaching package: ‘OREbase’
    The following object(s) are masked from ‘package:base’:
        cbind, data.frame, eval, interaction, order, paste, pmax, pmin, rbind, table
    Loading required package: OREstats
    Loading required package: MASS
    Loading required package: OREgraphics
    Loading required package: OREeda
    Loading required package: OREdm
    Loading required package: lattice
    Loading required package: OREpredict
    Loading required package: ORExml
    R>
    R>
    R>
    R> ore.connect(user = 'scott', sid = 'sinha', host = 'win7', password = 'tiger', port = 1521, all = T)
    Error in .oci.GetQuery(conn, statement, data = data, prefetch = prefetch,  :
      ORA-06520: PL/SQL: Error loading external library
    ORA-06522: Unable to load DLL
    ORA-06512: at "RQSYS.RQEVALIMPL", line 17
    ORA-06512: at "RQSYS.RQEVALIMPL", line 14
    ORA-06512: at line 4
    R>
    R>
    R> ore.is.connected()
    [1] TRUE
    R> I get the exact same error when I try to use even the ORE user "rquser". Any suggestion how to resolve this error?
    Thanks,
    Sourabh

  • PL/SQL AQ notification works in XE but not in our Enterprise Edition

    Hello,
    I am trying to get a Queue up and working and have ran through several examples, but I cannot get the Notify to work in our development environment but it works just fine in my local XE instance.
    Below is the code that WORKS in XE but does not call the procedure in the Enterprise Edition of Oracle:\
    Please note I may manually DBMS_AQ.DEQUEUE the queued item -- that works just fine, but the intent is the have it notify the procedure (this is still hashing out this technology so keep that in mind during critiquing).
    What is different between XE and Enterprise Edition in these regards or what is it I should check?
    (I got the job_queue_processes increased as noted in the below)
    GRANT EXECUTE ON dbms_aq TO aq;
    GRANT EXECUTE ON dbms_aqadm TO aq;
    GRANT CONNECT, RESOURCE, aq_administrator_role TO aq;
    begin
      dbms_aqadm.grant_system_privilege('ENQUEUE_ANY','aq',FALSE);
      dbms_aqadm.grant_system_privilege('DEQUEUE_ANY','aq',FALSE);
      commit;
    end;
    drop procedure demo_queue_callback_procedure;
    BEGIN
            DBMS_AQADM.STop_QUEUE ( queue_name => 'aq.streams_queue_1' );
            DBMS_AQADM.DROP_QUEUE ( queue_name => 'aq.streams_queue_1' );
            DBMS_AQADM.DROP_QUEUE_TABLE ( queue_table => 'aq.streams_queue_1_table'
                                         ,FORCE       =>TRUE );
    END;
    BEGIN
            DBMS_AQADM.CREATE_QUEUE_TABLE (
                      queue_table        => 'aq.streams_queue_1_table'
                     ,queue_payload_type => 'aq.APP_INFO'
                     ,multiple_consumers => TRUE );
           DBMS_AQADM.CREATE_QUEUE (
              queue_name  => 'aq.streams_queue_1',
              queue_table => 'aq.streams_queue_1_table'
           DBMS_AQADM.START_QUEUE (
             queue_name => 'aq.streams_queue_1'
       END;
    CREATE TABLE aq.queue_message_table
       ( message VARCHAR2(4000)  , ins_date date default sysdate);
    CREATE or replace PROCEDURE aq.demo_queue_callback_procedure(
                         context  RAW,
                         reginfo  SYS.AQ$_REG_INFO,
                         descr    SYS.AQ$_DESCRIPTOR,
                         payload  RAW,
                         payloadl NUMBER
                         ) AS
          r_dequeue_options    DBMS_AQ.DEQUEUE_OPTIONS_T;
          r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
          v_message_handle     RAW(16);
          o_payload            aq.APP_INFO;
       BEGIN
          r_dequeue_options.msgid := descr.msg_id;
          r_dequeue_options.consumer_name := descr.consumer_name;
          DBMS_AQ.DEQUEUE(
             queue_name         => descr.queue_name,
             dequeue_options    => r_dequeue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
          INSERT INTO aq.queue_message_table ( message )
          VALUES ( '[' || o_payload.parameter || ';' || o_payload.value || ';' || to_char(o_payload.dte,'ddMONyy:hh:mi:ss') ||']' );
          COMMIT;
       END;
    BEGIN
           DBMS_AQADM.ADD_SUBSCRIBER (
              queue_name => 'aq.streams_queue_1',
              subscriber => SYS.AQ$_AGENT(
                               'aq_queue_subscriber',
                               NULL,
                               NULL )
           DBMS_AQ.REGISTER (
              SYS.AQ$_REG_INFO_LIST(
                 SYS.AQ$_REG_INFO(
                    'streams_queue_1:aq_queue_subscriber',
                    DBMS_AQ.NAMESPACE_AQ,
                    'plsql://aq.demo_queue_callback_procedure',
                    HEXTORAW('FF')
              1
       END;
    DECLARE
           r_enqueue_options    DBMS_AQ.ENQUEUE_OPTIONS_T;
           r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
           v_message_handle     RAW(16);
           o_payload            aq.app_info;
           vreclst DBMS_AQ.AQ$_RECIPIENT_LIST_T;
        BEGIN
          o_payload := aq.app_info('msg4',4,sysdate);
         --vreclst(1):= sys.aq$_agent('ANYONE','', null);
          --r_message_properties.recipient_list:= vreclst;
          DBMS_AQ.ENQUEUE(
             queue_name         => 'aq.streams_queue_1',
             enqueue_options    => r_enqueue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
         COMMIT;
       END;
    select * from aq.queue_message_table   ;
    SELECT *
        FROM   aq.aq$streams_queue_1_table;
    set serveroutput on   
        DECLARE
           r_dequeue_options    DBMS_AQ.DEQUEUE_OPTIONS_T;
           r_message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
           v_message_handle     RAW(16);
           o_payload            aq.app_info;
        BEGIN
          --r_dequeue_options.dequeue_mode := DBMS_AQ.BROWSE;
              r_dequeue_options.consumer_name := 'aq_QUEUE_SUBSCRIBER';
          DBMS_AQ.DEQUEUE(
             queue_name         => 'aq.streams_queue_1',
             dequeue_options    => r_dequeue_options,
             message_properties => r_message_properties,
             payload            => o_payload,
             msgid              => v_message_handle
          DBMS_OUTPUT.PUT_LINE(
             '*** message is [' || o_payload.parameter || ';' || o_payload.value || '] ***'
       commit;
       END;
        select * from dba_queue_schedules ;
        select * from dba_objects;
    SELECT *
       FROM v$parameter
      WHERE name = 'aq_tm_processes'
         OR name = 'job_queue_processes';
    job_queue_processes = 10;
    aq_tm_processes = 0;
    SELECT *
       FROM v$parameter
      WHERE name = 'aq_tm_processes'
         OR name = 'job_queue_processes';
    in XE
    aq_tm_processes     => 0
    job_queue_processes => 10
    Ora Type:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production    
    PL/SQL Release 11.2.0.1.0 - Production                                          
    CORE     11.2.0.1.0     Production                                                        
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.1.0 - Production               
    NLSRTL Version 11.2.0.1.0 - Production  
    in XE
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production             
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production                                                        
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production                         
    NLSRTL Version 11.2.0.2.0 - Production
    the
    job_queue_processes => 4

    Got it working,
    in running this
    SELECT owner, queue_name, queue_table, consumer_name
    FROM dba_queue_subscribersI saw that there was an initial queue consumer that was overlapping, I dropped the initial queue and recreated all and it now works.

  • ORACLE8 SERVER RELEASE 8.0.4 ENTERPRISE EDITION NEW FEATURES

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    Oracle8 Server Release 8.0.4 Enterprise Edition New Features
    ============================================================
    97.12월 Solaris용 Oracle8.0.4가 출시된 것을 필두로 Q3 중에 Major Platform용
    Oracle8.0.4가 나올 것으로 예상됩니다.
    8.0.4는 Oracle8 최초의 Maintenance Release이고, 각종 Bug Fix를 비롯하여
    다음과 같은 영역에서 기능을 보강하였습니다:
    Oracle8 and Oracle8 Enterprise Edition product factoring
    Time Series Data Cartridge
    Visual Image Retrieval Data Cartridge
    Legato Storage Manager integration
    JDBC drivers
    Advanced queuing enhancements
    Easing of restrictions on parallel DML operations
    Improvements to national character support
    Improved automation of tablespace point in time recovery (PITR)
    Improved Oracle Parallel Server diagnostics
    Oracle Enterprise Manager enhancements
    Net8 restrictions lifted
    Oracle8 및 Oracle8 Enterprise Edition Product Factoring
    Oracle은 두가지의 Oracle8 server로 구분되는데 이는, Oracle8 and Oracle8
    Enterprise Edition입니다. 두 제품간의 기능이나 타겟 시장의 차이는 설명않습
    니다. 8.0.3과 8.0.4의 가장 중요한 차이는 소위 "Factored"개념이 적용되어
    8.0.3을 구매하면 licensing하지 않은 기능과 옵션도 install/use할 수 있던
    것이 이제는 licesing한 기능과 옵션만을 사용할 수 있도록 제한된다는 것입니다.
    - Error Message가 뜬다고 함. (제품기술실에서는 이 사항에 대해 확인 부탁드
    립니다.)
    Time Series Data Cartridge
    8.0.4에는 새로이 Time Series Data Cartridge가 추가되는데, 이는 Temporal
    Data를 데이타베이스에서 관리할 수 있는 것으로, 즉 시계열 데이타 타입을 정의
    해서 사용할 수 있다는 것입니다. (예, 캘린더를 사용자 마음대로 정의할 수
    있음) 타임 시리즈 카트리지는 관계형과 객체형 인터페이스를 모두 지원하며,
    서드 파티는 카트리지에서 제공하는 인터페이스를 통해 솔루션을 개발할 수 있습
    니다. (SHYANG BJN, This needs to have some good examples for better
    understanding, also)
    Visual Information Retrieval (VIR) Cartridge
    타임 시리즈 카트리지 이외에 추가되는 또 하나의 카트리지는 VIR(이미지 정보
    검색용) 카트리지로서, 이미지의 속성(색깔, 구조, 질감 등)을 이용하여 검색할
    수 있도록 해 줍니다.
    이는 Virage라는 회사의 이미지 검색 기술-소위 "패턴 매칭 알고리즘"-을 이용한
    것으로 "find me objects that look like this one." 과 같은 질의가 가능합
    니다.
    Legato Storage Manager 통합
    8.0.4는 Legato의 Storage Manager가 통합 컴포넌트로 제공됩니다. Legato
    Storage Manager는 테이프 저장 매체 관리용 유틸리티로서 이제 Oracle8에서
    이를 활용할 수 있습니다. 8.0.3에서는 미디어 관리 레이어(MML:Multimedia
    Management Layer)를 제공하지 않았으며, 데이타를 테이프에 백업받기 위해서는
    써드파티의 MML을 구매해야 합니다.
    8.0.4에서 제공되는 Legato MML은 최대 4개의 테이프 드라이버에 동시 백업이
    가능한 Limited Version입니다.
    JDBC Drivers
    8.0.4에는 두개의 JDBC 드라이버가 포함되는데, 이를 통해 자바 프로그래머들은
    Oracle7과 Oracle8에 액세스할 수 있습니다. 이중 하나는 JDBC/OCI 드라이버라고
    불리우며 클라이언트/서버 자바 애플리케이션이나 자바 기반 미들티어를 개발하는
    개발자들을 타겟으로 합니다. 이 드라이버는 JDBC invocations 을 Oracle Call
    Interface [OCI]용 call로 바꿔주어 SQL*Net이나 Net8으로 보내 오라클 데이타
    베이스를 액세스하게 합니다.
    또 하나는 Thin JDBC driver라고 하는 것으로 자바 애플릿과 자바 애플리케이션
    개발자들을 위한 것입니다. 이 드라이버는 자바로 코딩되어 있어 완벽하게 JDBC
    표준을 따르고 있습니다. Thin JDBC driver는 대략 150K 의 크기에 (압축되지
    않으면300 K) 자바 애플릿과 함께 다운로드 될 수 있습니다. 이는 Oracle8만을
    지원하며, Oracle7은 지원않습니다.
    두 드라이버 모두 Javasoft의 JDBC 스펙을 따르며 JDK 1.0.2와 JDK 1.1을 지원
    합니다. 이들은 현재 상용화 되어있는 대부분의 browsers, tools, 그리고 Java
    VMs과 사용될 수 있고, 2 티어 이상의 멀티티어 컨피규레이션을 지원합니다.
    Advanced Queuing 개선
    8.0.4의 Enterprise Edition은 AQ기능이 보강되었습니다. 즉, remote queuing과
    de-queuing, 그리고 OCI interface 등이 추가되었고, 큐의 통계를 제공하며
    Oracle Enterprise Manager와 통합되었습니다.
    이제 메시지가 로컬 큐로 부터 리모트 큐로 자동 전달되고, 따라서 분산
    애플리케이션의 개발과 운영이 한층 용이해졌습니다.
    API는 8.0.3에서 PL/SQL API만 제공되던 것이 이제 OCI 인터페이스까지 제공됨에
    따라 AQ call 실행이 개선되고, AQ 기능을 활용하는 Pro*C애플리케이션 개발이
    한층 용이해졌습니다.
    8.0.4에서 제공되는 큐의 통계값은 평균 큐의 길이, 대기중인 메시지의 수, 시간
    초과된 메시지의 수 등을 포함하며 테이블로 유지되어 SQL문으로 조회가 가능
    합니다.
    큐와 관련한 관리작업을 단순화할 수 있도록 OEM이 큐를 사용하는 사용자와
    오퍼레이션을 관리합니다. 큐를 생성하고, 큐를 시작하거나 정지시키는 작업, 또는
    큐의 사용자를 늘리는 등의 태스크를 이제 OEM을 통해 가능합니다.
    Parallel DML Operations 관련 제한 완화
    Oracle8 Release 8.0.4 Enterprise Edition은 parallel DML
    (Insert/Update/Delete) operations에서 비롯되는 제한 사항을 더욱 완화시켜
    줍니다. 8.0.3에서는 하나의 트랜잭션에서 하나의 병렬 DML 오퍼레이션만이 가능
    하였으나 8.0.4에서는 복수 개가 허용됩니다.
    단 한가지 제약은, 만일 어떤 트랜잭션내에서 테이블을 병렬로 수정하는 DML
    오퍼레이션이 실행되면 그 트랜잭션내에서는 더 이상 그 테이블에 대해 조회
    하거나 DML을 하지 못한다는 것입니다. (다른 트랜잭션으로 처리해야 함)
    National Character Support 개선
    Release 8.0.4는 Korean NCHAR character set과 European sort for the
    UTF8 character data를 지원합니다.
    또한 Tablespace Point in Time Recovery (PITR) 자동화가 개선되었다고
    합니다. 본사는 비록 이 기능이 개선되었다고 해도 수행시키는데 필요한 단계
    (step) 중 몇 가지는 아주 "critical"하다고 하여 필히 Oracle Worldwide
    Support를 contact 하라고 조언합니다.
    Oracle Parallel Server Diagnostics 개선
    8.0.4는 Oracle Parallel Server diagnostics도 개선하였습니다. Fixed global
    views (GV$views) 상에서의 성능이 개선되었으며, 새로 추가된V$ view 를 통해
    DLM (distributed lock manager) lock을 볼 수 있습니다.
    Oracle Enterprise Manager 개선
    Oracle Enterprise Manager는 Release 1.5가 Release 8.0.4와 함께 사용됩니다.
    릴리즈1.5에서는 Backup Manager component 가 개선되어stored Recovery
    Manager scripts를 지원합니다. 즉, 이들 스크립트를 OEM에서 편집, 관리 가능
    합니다. 또한 "report wizard"가 추가되어 Recovery Manager report commands
    를 위저드의 순서대로 생성가능합니다.
    OEM 1.5의 schema manager 역시 오브젝트를 지원하도록 개선되었습니다. DBA는
    스키마 매니저를 이용하여 객체 타입과 객체 테이블을 생성, 드롭, 관리할 수
    있습니다. 스키마 매니저는 이외에도 AQ기능도 관리할 수 있게 되었습니다.
    사용자들은 스키마 매니저 인터페이스를 통해 큐에 주어지는 오퍼레이션을 관리
    가능합니다.
    Net8 제한 완화
    Net8 Release 8.0.4 역시 제한이 완화되었고, 보다 손쉬운 관리를 위해 기능이
    추가되었습니다. 일례로Net8이 이제는 DCE를 지원합니다. (8.0.3에서는 지원 안함)
    Net Assistant는 리스너의 컨피규레이션을 할 수 있도록 개선되었고, 마침내
    커넥션 풀링과 멀티플렉싱을 동시에 "enable"할 수 있게 되었습니다.
    Migration 과 Interoperability
    Oracle8 Release 8.0.4 는 마이그레이션 유틸리티를 이용 기존의 Oracle7
    (Release 7.1, 7.2, or 7.3) 데이타베이스를 쉽게 마이그레이션 할 수 있습니다.
    마이그레이션 유틸리티는 데이타 딕셔너리를 재구축해주고, 콘트롤 화일, 로그
    화일 및 데이타 블록을 바꿔줍니다.
    Oracle8 Release 8.0.3 데이타베이스는 8.0.4를 인스톨하는 것으로 업그레이드가
    끝납니다.

    Try this statement to get more information:
    SELECT a.job, a.log_user, to_char(a.this_date, 'MM/DD/YYYY HH24:MI:SS'), b.sid,
    to_char(a.last_date, 'MM/DD/YYYY HH24:MI:SS'), to_char(a.next_date,
    'MM/DD/YYYY HH24:MI:SS'), a.total_time, a.broken, a.failures, a.Interval , a.what
    from dba_jobs a, dba_jobs_running b
    where a.job=b.job(+)
    order by a.job
    The what column should display the script you're suppose to run.
    I just posted an integrated set of GUI tools to administer the Oracle database. One of the many functions is a GUI interface to Oracle Jobs. This function allows you maintain the Oracle Jobs (in the Tools section) – Create, modify, run a job. You may need same help to get started, so feel free to contact me ([email protected]). The link is http://www.barsoft.net/

  • Installation Questions Documaker 12.3 Enterprise Edition

    We are looking to install Documaker 12.3 Enterprise Edition and have the following installation questions:
    When installing Documaker can we have our own VM in our own OU for the WAS application servers? This will make maintenance easier on our side.  There doesn’t seem to be anything in the documentation saying this is a good or a bad idea.
    Our WAS Admins would like to know what the scripts in the Post-Setup documentation actually do.  Is it possible to use our existing scripting environment to build the necessary pieces instead of using scripts from the documaker install?  If it’s not possible, can we get a look at the documaker scripts before we run them?
    We would like to know if WAS 8.5 is supported, or if version 7.0.0.27 in the requirements pdf is the only version supported?

    When installing Documaker can we have our own VM in our own OU for the WAS application servers? This will make maintenance easier on our side.  There doesn’t seem to be anything in the documentation saying this is a good or a bad idea.
    The typical installation scenario is to have 3 tiers - application (WAS), application (Documaker), and data. WAS tiers host web applications (Dashboard, Administrator, Interactive) as well as providing database connection pools and JMS queues for messaging - it is expected that the WAS environment is a clustered environment and that the applications are deployed to the cluster members, which can be physical or virtual. For the Documaker application server, these can be physical or virtual as well. It's recommended to install Documaker on single-purposes environments, however there's nothing to prevent you from doing otherwise. The Documaker applications are self-contained JVMs and can be tuned accordingly.
    Our WAS Admins would like to know what the scripts in the Post-Setup documentation actually do.  Is it possible to use our existing scripting environment to build the necessary pieces instead of using scripts from the documaker install?  If it’s not possible, can we get a look at the documaker scripts before we run them?
    The installation process (currently) writes the scripts according to responses provided during the installation process. The scripts can be reviewed/modified prior to execution.
    We would like to know if WAS 8.5 is supported, or if version 7.0.0.27 in the requirements pdf is the only version supported?
    The official supported version of WAS is 7.0.0.27, however WAS 8.5 may be suitable (I believe there might be a fix pack requirement there - would recommend you submit a question to Oracle Support for verification).

  • Sun ONE Message Queue 3.0.1 is now available

    Sun One Message Queue 3.0.1 is now available. Sun ONE Message Queue 3.0.1
    is an implementation of the Java Message Service version 1.1 specification.
    It comes in two editions; a free Platform Edition as well as an Enterprise
    Edition for full-scale, enterprise deployments.
    Noteworthy changes in 3.0.1 (compared to 3.0):
    * Substantial performance boost
    MQ 3.0.1 provides message delivery throughput up to double that
    attained with MQ 3.0, a performance boost that is especially important
    under heavy load conditions.
    * Certified for use with the Sun ONE Application Server 7.0
    MQ 3.0.1 is certified for Sun ONE Application Server 7.0, and is used as
    its native JMS provider. MQ has been integrated with the Application
    Server, providing JMS messaging support in an Application Server
    environment. You can configure the system for an internal MQ message
    server managed with Application Server administration tools, or an
    external MQ message server requiring MQ administration tools.
    * Support for Linux Red Hat 7.2 (JDK 1.4.1)
    MQ 3.0.1 is now certified for JDK 1.4.1 on Linux Red Hat 7.2 (and still
    supported on Linux Red Hat 7.1).
    * Bundled on Solaris
    MQ 3.0.1 Platform Edition will be bundled with Solaris 9 Update 2 when
    it ships in early 2003.
    For more specific details about 3.0.1 please see the product Release Notes
    at: http://docs.sun.com/source/816-6454-10/index.html
    The two editions of Sun ONE Message Queue 3.0.1 are:
    * The Platform Edition provides a free commercial grade JMS implementation,
    ideal for small-scale deployments and development environments on various
    operating environments.
    * The Enterprise Edition delivers maximum scalability and security features
    necessary for larger full-scale deployments.
    For specific details about the editions see the Administration Guide at:
    http://docs.sun.com/source/817-0354-10/overview.html#20864
    For more information about the product or to download the current version
    please visit:
    http://www.sun.com/software/products/message_queue
    Receiving feedback from current and potential customers is important to the
    product team. If you have questions, thoughts for additional features or
    think you have found a bug, we encourage you to send the team feedback.
    Please send mail to [email protected]. If appropriate, be sure to
    include the product version, information on the platform you are using and
    steps to duplicate the problem you are experiencing. If you are interested
    in purchasing the product and have a sales related question send mail to
    [email protected]
    Thank you for your interest in Sun ONE Message Queue!

    Customers who purchased the iPlanet Message Queue for Java version 2.0
    Enterprise Edition, or the iPlanet Java Message Queue version 1.1 Business Edition,
    who also have a current maintenance contract for this product, are entitled to a free
    upgrade. Sun customers should use their normal support channels to request the
    upgrade. All corporate customers with Sun Software Support contracts should be
    automatically notified of the upgrade via the ProductTracker by SubscribeNet
    program. If you haven't, please contact Sun Customer Service online or by phone at
    888-786-8111. Parties interested in upgrading will be required to provide
    proof-of-purchase. Customers of previous versions of the free Developer Editions, or
    customers without a current maintenance contract on this product, can not upgrade
    for free, they must buy the Sun ONE Message Queue 3.0 Enterprise Edition product,
    or they can download the Sun ONE Message Queue 3.0 Platform Edition product for
    free from: http://wwws.sun.com/software/download/download/5275.html

  • Search Service Application problems after upgrading from Foundation to Enterprise edition of SharePoint 2013

    Hi all. I have been searching for days for a solution to a problem I am having with SP2013 Enterprise edition.
    We recently upgraded from SP2013 Foundation to SP2013 Enterprise. After the upgrade, the search services are no longer working and we are receiving many application log entries indicating the following:
    Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (ea2019ef-bb9e-4efe-85ee-5d2307406f31).
    Reason: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Technical Support Details:
    System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
       at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)
    as well as:
    Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (ea2019ef-bb9e-4efe-85ee-5d2307406f31).
    Reason: The object you are trying to create already exists. Try again using a different name.  
    Technical Support Details:
    System.Runtime.InteropServices.COMException (0x80040D02): The object you are trying to create already exists. Try again using a different name.  
       at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
       at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)
    I have tried to remove the search service application and recreate it, and even though the SharePoint Central Administration states that it was created successfully, I am still getting the same errors in the log. If I go to the Search Service Application
    Search Administration page, the "System Status" shows the following message:
    The search service is not able to connect to the machine that hosts the administration component. Verify that the administration component '0359af35-0982-4ede-8838-b1d390e915bf' in search application 'Search Service Application' is in a good state and
    try again
    Additionally, under the "Search Application Topology" section, it states "Unable to retrieve topology component health states. This may be because the admin component is not up and running" which I assume is normal if the admin is not
    running.
    Does anyone know how I can resolve this problem? 
    Thanks!

    Hi Joaquin,
    According to your description, the error occurred when you re-created the Search Service Application.
    Based on the error message, I recommend to verify the things below:
       1. Check if the association between the Search Service Application proxy and the web application is configured.
    Please go to Central Administration > Application Management > Configured service application associations > Click Default to see if the Search Service application is checked.
       2. Change the app pool for the Search Service Application to SharePoint Web Services Default in the properties of the Search Service Application.
    Please go to Central Administration > Application Management > Manage service applications > Highlight the Search Service Application > Click Properties in the ribbon > Change
    the two app pool to SharePoint Web Services Default: App Pool For Search Admin Web Service and Application Pool for Search Query and Site Settings Web Service.
        3. Run PS command to check if the search admin timer job is enabled: Get-SPTimerJob
    job-application-server-admin-service | fl. If it is not enabled, use PS command to enabled it and then reset Internet Information Services: Enable-SPTimerJob job-application-server-admin-service.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Problem with GlassFish and Sun Java System Message Queue

    Hi,
    I used application server PE.8 and I upgraded to Sun Java System Application Server Platform Edition 9.0 Update 1 Patch 1, and I changed all my CLASSPATH and everything. My system is working fine, but the Sun Java System Message Queue that I used before is still showing the queues and physical queues of the previous application server, not the new one. Do you know if there is way to change that and link it to the new version?
    thanks

    Use an ESB like ServiceMix to bridge JMS providers
    http://servicemix.org/
    Or write your own MessageListener to consume from one JMS and publish on another one. Be careful with queues to avoid loosing the ordering - so you probably want to use a single MessageListener per subscription/queue - or to take advantage of Tibco's exclusive queues to ensure ordering is preserved. If ordering doesn't matter then don't worry too much about it and maybe have a pool of consumers to improve throughput
    James
    http://logicblaze.com/

  • XML Publisher Enterprise Edition's report errors

    I have installed XML Publisher Enterprise Edition.when i open it through explorer i can see it's different folder that also have some report as Executive,Financials,HR Manager,Sales Manager,Warehouse Managment.when i try to open reports under these folders as Employee Salary Report under HR it gives error
    "The report cannot be rendered because of an error, please contact the administrator".
    plz help me how i can view these reports.same problem in my own created report.

    Shaun,
    How did get World Sales report work? What did you put on URL? I put:
    http://Sever name:15101/xmlpserver/Sales Manager/World Sales/WorldSales.xml
    It always showed error message to me.
    Please help, Thanks.
    - Jessie

  • How can i install  Oracle Apex 3.2 in oracle 10G enterprise edition

    Hi friends,
    I have installed oracle 10.2.0.1.0 Enterprise edition , now i want to install APEX 3.2 in this Oracle enterprise edition . Please tell me the procedure step y step.
    thanks
    Ramyas

    @user12218340
    Thanks very much for the post. I am using this tutorial (http://www.oracle.com/technology/obe/apex/apexinst/apexinst.htm) and everything seems to be working fine till I move to the step where I create A New Workspace. Even though I am following the steps exactly as explained I get an error message:
    ''Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server Server at oracle Port 7777''
    when I type the following URL:
    http://localhost:7777/pls/apex/apex_admin
    I suspect there is something wrong with my dads.conf file
    My dads.conf file is exactly as follows:
    Alias /i/ "C:\oracle\product\10.2.0\http_1\Apache\Apache\images/"
    AddType text/xml xbl
    AddType text/x-component htc
    <Location /pls/apex>
         SetHandler pls_handler
         Order deny,allow
         Allow from all
         AllowOverride None
         PlsqlDatabaseUsername APEX_PUBLIC_USER
         PlsqlDatabasePassword oracle
         PlsqlDatabaseConnectString localhost:1521:MYDATABASE
         PlsqlDefaultPage apex
         PlsqlDocumentTablename wwv_flow_file_objects$
         PlsqlDocumentPath docs
         PlsqlDocumentProcedure wwv_flow_file_manager.process_download
         PlsqlAuthenticationMode Basic
         PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    </Location>
    I stored this file in C:\oracle\product\10.2.0\http_1\Apache\modplsql\conf
    Thanks in advance,
    Paul

  • Java Mail throws Connect failed error in Oracle 11g Enterprise  Edition

    Hi,
    I am using Oracle 11g Enterprise edition.I have a java class which is used for reading outlook 2010 inbox and download attachments from mails .For Connecting to OutLook from oracle i am using "POP3S" protocol in my java class. Which is working fine until my database is oracle-11g standard edition. Last week we are upgraded our database from oracle 11g standard edition to oracle 11g enterprise edition after that i can't connect to mail server through my java class which throws an error as follows.
    DEBUG: setDebug: JavaMail version 1.4.4
    DEBUG: getProvider() returning javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun Microsystems, Inc]
    DEBUG POP3: mail.pop3s.rsetbeforequit: false
    DEBUG POP3: mail.pop3s.disabletop: false
    DEBUG POP3: mail.pop3s.forgettopheaders: false
    DEBUG POP3: mail.pop3s.cachewriteto: false
    DEBUG POP3: mail.pop3s.filecache.enable: false
    DEBUG POP3: mail.pop3s.keepmessagecontent: false
    DEBUG POP3: mail.pop3s.starttls.enable: true
    DEBUG POP3: mail.pop3s.starttls.required: false
    DEBUG POP3: mail.pop3s.apop.enable: false
    DEBUG POP3: mail.pop3s.disablecapa: false
    DEBUG POP3: connecting to host "194.42.133.180", port 110, isSSL true
    javax.mail.MessagingException: Connect failed;
    nested exception is:
         javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:210)
         at javax.mail.Service.connect(Service.java:295)
         at javax.mail.Service.connect(Service.java:176)
         at GetNoonReport.Connect2Mailserver(GetNoonReport:338)
         at GetNoonReport.ReadMail(GetNoonReport:103)
    Caused by: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(InputRecord.java:501)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1025)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1038)
         at com.sun.mail.util.SocketFetcher.configureSSLSocket(SocketFetcher.java:507)
         at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:238)
         at com.sun.mail.pop3.Protocol.<init>(Protocol.java:107)
         at com.sun.mail.pop3.POP3Store.getPort(POP3Store.java:261)
         at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:206)
         ... 4 more
    Is Oracle Enterprise Edition supports "POP3S" protocol?, Or Enterprise edition needs any additional configuration for establishing outlook connection with "pop3s" ?.
    Any help is appreciated
    Regards ,
    Nisanth

    907833 wrote:
    Hi,
    I am using Oracle 11g Enterprise edition.I have a java class which is used for reading outlook 2010 inbox and download attachments from mails .For Connecting to OutLook from oracle i am using "POP3S" protocol in my java class. Which is working fine until my database is oracle-11g standard edition. Last week we are upgraded our database from oracle 11g standard edition to oracle 11g enterprise edition after that i can't connect to mail server through my java class which throws an error as follows.
    I suspect root cause is with Java not Oracle.
    Oracle RDBMS does NOT speak any "protocol" except SQL natively.

  • Oracle9i Enterprise Edition for HP/IA64, Release 2 Install Error

    Help Me!
    Oracle9i Enterprise Edition for HP/IA64, Release 2 (v9.2.0.2)
    Install Error
    OS Version : HPUX 11.23
    Me English is insufficient.
    Until end it reads and week route it wants.
    Me the help is necessary.
    The oracle before establishing, it established the gcc and the binutil first.
    Is the different package necessary?
    Error Message(make.log)
    =============================================================
    /usr/bin/make -f ins_net_client.mk mkldflags ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennttab > ntcontab.c ;\
         cc +DD64 -c ntcontab.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ;\
         mv ntcontab.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    r - /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o
    ar: file ntcontab.o is built with mismatched data abi
    Stop.
    *** Error exit code 1
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennttab > ntcontab.c ;\
         cc +DD64 -c ntcontab.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ;\
         mv ntcontab.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    r - /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o
    ar: file ntcontab.o is built with mismatched data abi
    *** Error exit code 1
    Stop.
    /usr/bin/make -f ins_net_client.mk nnfgt.o ORACLE_HOME =/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennfgt > nnfgt.c ;\
         cc +DD64 -c nnfgt.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o ;\
         mv nnfgt.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    ar: file nnfgt.o is built with mismatched data abi
    r - /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o
    *** Error exit code 1
    =============================================================
    Error Message(InstallActions.log)
    =============================================================
    Exception String: Error in invoking target ntcontab.o of makefile /oracle/app/oracle/product/9.2.0.2/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE
    User choice : Retry
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target ntcontab.o of makefile /oracle/app/oracle/product/9.2.0.2/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE
    =============================================================

    Hi,
    I had installed Oracle 9.2 on HP-UX 11i and the configuration assistants failed to start and it showed me the same errors. Can you tell me how did u solve u r problem.
    Thanks
    Satish

  • Installing Oracle 8i 8.1.6 Enterprise Edition, on RH 6.1

    I have just received my Oracle 8i release 2 8.1.6 CD and attempted an install, after first satisfying all prerequisites.
    When installing Oracle 8i 8.1.6 Enterprise Edition, all is OK until the "linking Secure
    Sockett Layer" phase, when a message box appears with the following: "Error in
    invoking target nnfgt.o of makefile
    /usr/opt/oracle/8i/8.1.6/network/lib/ins_net_client.mk". If this is ignored several
    more appear with diferent target names.
    Eventually the install completes, but when the Net8 Configuration Assistant runs it stops with the following error: "libcIntsh.so.8.0: Cannot open shared object file: No such file or directory (libnjni8.so). Error loading native
    library: libnjni8.so Java.lang.UnsatisfiedLinkError: JniGetOracleHome".
    I am using:
    JRE V1.1.6 V5
    Have also tried with the latest IBM JRE V1.1.8 for RH Linux.
    RH Linux V6.1.
    I had great hopes for 8.1.6 having spent weeks failing to get 8.1.5 to install.
    Come back NT all is forgiven!!

    Tried that, still no luck, same error.
    I installed the two kernal items listed in
    the rpm install screen from CD1:
    Kernel Headers
    Kernel Libraries
    or did you install the kernel source from
    CD2?
    Also did you set any additional path's?
    Many thanks
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by nnath1:
    OK!! It worked.
    My config
    816rel2 on RH6.1
    JRE install is not required as the 816rel2 installer installs it for you.
    To solve the "Error in invoking target nnfgt.o of makefile /usr/opt/oracle/8i/8.1.6/network/lib/ins_net_client.mk"
    I just had to install the Kernel headers and and development libraries. I cound not tell you exactly which ones as I went ahead and installed all the development libraries, kernel headers and development tools.
    All the best<HR></BLOCKQUOTE>
    null

  • JES5 on HPUX C API Message Queue problem

    OK. I know there's not too many of you out there, but I've been trying to compile a simple "C" helloworld pub/sub application using GCC. The examples shows using 'aCC' instead of 'gcc' to compile on HPUX. I'm able to compile using gcc, but the application core dumps.
    Is the Message Queue, C-API & library compatable with applications compiled with gcc on the HPUX platform? Or will i have to use HP's Ascii C Compiler to get it to work.
    gcc build options:
    g++ -x c -fPIC -DHPUX11 -D_REENTRANT -I/opt/sun/mq/include -o Producer -L/opt/sun/mq/lib -L/opt/sun/private/lib -lnss3 -lmqcrt -Wl,+b,/opt/sun/private/lib Producer.c
    Error during execution:
    /usr/lib/dld.sl: Unresolved symbol: __shlinit (code) from /opt/sun/mq/lib/libmqcrt.sl
    Abort(coredump)
    Thanks
    Message was edited by:
    weinhard

    After switching to HP's ANSI C compiler i get the exact same error message.
    Any ideas as to what the permissions should be on the symbolic link to the real shared library. The installed permisstion/owners are:
    lrwxr-xr-x   1 bin        bin             29 Sep 12 00:45 libmqcrt.sl -> /opt/sun/mq/lib/libmqcrt.sl.1

  • Dead message queue

    Intial information:
    SUN MQ 4.3
    Local installation
    Purpose: use dead message queue.
    As per refered in SUN MQ admin guide have updated the broker
    imqcmd update dst -t q -n TestQueue1 -o useDMQ=true
    imqcmd update dst -t q -n TestQueue1 -o MaxBytesPerMsg=150000
    Also java program sending message to the queue and data is of size 171KB(171000)
    With above setting I expect the message to go to mq.sys.dmq, however its not? Any one have answer?
    Or any one have used dead message queue with SUN MQ?
    Any help will be appreciated.
    Madhav
    Edited by: user10111912 on Jan 20, 2011 4:18 PM

    In this case, the message will be rejected, that is it does not get into the destination, which is different from a message in the destination becomes "dead" - dead message.

Maybe you are looking for

  • Elements serial number invalid straight off the box...help?

    I have a copy of photoshop elements 10 and when I install it it says the serial number is invalid... where to from here

  • Acrobat 9.4.4 Pro Crashes When Attempting to Open PDF Form

    OS: Win XP Pro SP3 The  machine worked fine until Acrobat updated itself to 9.4.4 then the  problem started.  Crashes when attempting to open most PDF Forms - even  when freshly rebooted or repaired.  I originally thought it was related  to a browser

  • Assigning PR document type to PO document type

    Good day, This is the scenario, I have multiple PR doc types each corresponding to a PO. PR document types: NB - standard Z1 - internal1 Z1 - internal2 PO document types: NB - standard Z1 - internal1 Z1 - internal2 Objective: all Z1 POs should be ref

  • File Directory Name Select

    Hi, in my application i have a text field item to store the whole name of a file directory in a database table. For example 'C:\Temp\Test\'. Now i want to make it possible for the user instead of typing manually, select the directory name analog as i

  • Material ledger wrong cost component split

    i have change the price detemination from '2' to '3' in the material ledger in period 04/2011. now i wont to execute costing run for actual cost in period 10/2010. to do this i have update tables CKMLPRKEKO e CKMLPRKEPH.. in this mode I don't have er