Siebel JMS with IBM Webshere MQ(7.5.0.1)

Hi Guys,
I try to configure MQ 7.5.0.1(with JMS) with Siebel so that I can send/receive messages using EAI JMS Transport. when I try to send a message, i get following error in jms log file:
[SIEBEL ERROR] Thread[main,5,main] [11:56:37.171 AM Fri Feb 28: ] Error invoking Send --
SiebelJMSException errorSubtype=JMS_EXCEPTION
  at com.siebel.eai.jms.JMSBusinessService.doInvokeMethodWithExceptions(JMSBusinessService.java:582)
  at com.siebel.eai.jms.JMSBusinessService.doInvokeMethod(JMSBusinessService.java:249)
  at com.siebel.eai.SiebelBusinessService.invokeMethod(SiebelBusinessService.java:9)
[SIEBEL ERROR] Thread[main,5,main] [11:56:37.171 AM Fri Feb 28: ] Threw SiebelBusinessServiceException with
ErrorCode = JMS_EXCEPTION
ErrorMessage = An unexpected error occurred (see StackTrace): com.ibm.mq.jms.MQConnectionFactory cannot be cast to javax.jms.QueueConnectionFactory
StackTrace = SiebelJMSException errorSubtype=JMS_EXCEPTION
  at com.siebel.eai.jms.JMSBusinessService.doInvokeMethodWithExceptions(JMSBusinessService.java:582)
  at com.siebel.eai.jms.JMSBusinessService.doInvokeMethod(JMSBusinessService.java:249)
  at com.siebel.eai.SiebelBusinessService.invokeMethod(SiebelBusinessService.java:9)
[SIEBEL DETAIL] Thread[main,5,main] [11:56:37.171 AM Fri Feb 28: ] Cumulative time = 2107
JAVA profile:
JVM Classpath C:\JAR;C:\JAR\SIEBEL.JAR;C:\JAR\SIEBELJI_ENU.JAR;C:\JAR\JNDI.JAR;C:\JAR\CONNECTOR.JAR;C:\JAR\JMS.JAR;C:\JAR\PROVIDERUTIL.JAR;C:JAR\FSCONTEXT.JAR;C:\JAR\COM.IBM.MQ.JAR;C:\JAR\COM.IBM.MQJMS.JAR;C:\JAR\COM.IBM.MQ.JMQI.JAR;C:\JAR\DHBCORE.JAR;
JVM DLL Name C:\Program Files (x86)\Java\jre7\bin\client\jvm.dll
JVM Options -Djms.log=C:\JMS\log\jms.log
binding file is located in folder c:\JAR
file jndi.properties:
java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory
java.naming.provider.url=file:/c:/JMS
Can anybody help me?
Thanks,
SN

>
> I am trying to connect to Websphere MQ series via PI, Websphere MQ series is running on Linux environment and PI system running on AIX operating system, i got the drivers from linux environment where queue is running, can i deploy those drivers into my PI system?? because it is running on AIX.
>
It will work.
> Or else is there any different jar files for different operating systems???
as per my knowledge no.
Regards,
Raj

Similar Messages

  • JMS with IBM websphere

    Dear friends,
    i am studying JMS and its concepts. I copied two sample programs for sending messages and receiving messages.
    I am using Queue. I configured connection factories and Queue in Websphere JMS Provider. Also both files were complied properly. Now i want to run those programs, but it s giving me errror
    I dont know Url Provider and its attributes..
    Please help me in solving this problem
    thanx in advance
    s.yogans

    Thanks for your reaply.
    Acually WebsphereMQ 5.3.1 supports jms102.
    I was using DefaultMessageListenerContainer instead of DefaultMessageListenerContainer102.
    now its working fine.
    Regards,
    Sabyasachi

  • ERROR in JMS with IBM MQ

    Hi masters,
    i have a big trouble..i am run the following code....o got some exception.....can u help me ....
    private static void obtainAdminObjects( Object[] outArray ) {
    try {
    if( useJNDI ) {
    // Set up JNDI environment parameters
    InitialContext context = null;
    Hashtable env = new Hashtable(2);
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://objectfrontier.com:389/o=JNDITutorial");
    Context ctx;
    try {
    ctx = new InitialContext(env);
    } catch(NamingException e) {
    e.printStackTrace();
    throw (RuntimeException) new RuntimeException("Failed to create" +
    "initial JNDI context" + e);
    // Obtain the objects
    System.out.println("Context Object " + ctx);
    outArray[0] = ctx.lookup("qcf");
    outArray[1] = ctx.lookup(qlookup);
    } else {
    // Create the objects explicitly - we need to refer to the
    // MQJMS-specific classes now
    MQQueueConnectionFactory qcf =
    new MQQueueConnectionFactory();
    qcf.setQueueManager(qMgrName);
    MQQueue q = new MQQueue();
    q.setBaseQueueName(qName);
    q.setBaseQueueManagerName(qMgrName);
    outArray[0] = qcf;
    outArray[1] = q;
    System.out.println("outArray[0] :"+outArray[0]);
    System.out.println("outArray[1] :"+q);
    } catch( Exception e ) {
    e.printStackTrace();
    System.out.println("Error obtaining admin objects: "+e+"\nQuitting.");
    System.exit(-1);
    i got a Exception:
    Context Object javax.naming.InitialContext@291aff
    javax.naming.InvalidNameException: qcf: [LDAP: error code 34 - 0000208F: NameErr: DSID-031001AA, problem 2006 (BAD_NAME), data 8350, best match of:
         'qcf,o=JNDITutorial'
    thankingu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Please don't post the same question more than once:
    http://forum.java.sun.com/thread.jsp?thread=537218&forum=29&message=2598588
    http://forum.java.sun.com/thread.jsp?thread=537048&forum=29&message=2597520
    http://forum.java.sun.com/thread.jsp?thread=537047&forum=29&message=2597517
    Those of us who take time out of our day to help others (for free) don't appreciate reading the same post several times. In fact, I'd venture to say that seeing multiple posts of the same question by the same user would cause most would-be responders to simply ignore the question. It's a matter of forum etiquette. See
    http://forum.java.sun.com/thread.jsp?forum=10&thread=492104
    or
    http://forum.java.sun.com/thread.jsp?forum=31&thread=174321
    -Scott

  • JMS versus IBM MQSeries

    1. What is the difference between JMS and IBM MQSeries ?
    2. If JMS is all about APIs to interact with Message Oriented Middleware (MOM) that IBM MQSeries supports, why not use a simple JAVA program that would import com.ibm. * packages instead of JMS APIs ? What is the benefit we derive from using JMS ?

    I think what you are saying is JMS is the preferred
    way to communicate with MOM (i.e. MQ) as it is
    standard and not vendor dependant. My concern is
    this:
    If we write a stand alone program to send/retrieve
    meessage from MQ then how do we create
    ConnectionFactory and connection? Personally I prefer to use Dependency Injection using a library like Spring to configure things like JMS connection factories, JDBC DataSources etc.
    http://www.springframework.org/
    though the more typical (and some would say official) way of doing it is to use JNDI in your application. So create a JNDI context and pull the JMS ConnectionFactory and destinations out of JNDI.
    e.g. like this
    http://svn.activemq.org/trunk/activemq/modules/core/src/test/org/activemq/demo/SimpleProducer.java?rev=1&view=auto
    Then you need to refer to your JMS provider's documentation on how to configure a JNDI context. Typically its a case of adding a jndi.properties file to the classpath configured to your provider's JNDI provider.
    Don't we need MQ
    classes to create these objects.Yes, you need the classes from your JMS provider to create connections & sessions. (Its not like EJB remoting where you can create client side proxies from the EJB interfaces).
    James
    http://logicblaze.com/

  • Cisco Phone Control and Presence 8.6.1.1185 with IBM Lotus Notes 8.5.2 (Integrated Sametime Client 8.0.2) - No presence status visible

    Hi community,
    I am trying to integrate Cisco Unified Presence 8.6.1.10000-34 with IBM Lotus Notes 8.5.2 with the integrated Sametime Client version 8.0.2 via the Cisco Plugins 8.6.1.1185.
    Phone control is working fine, whereas the presence status is not shown (= no handset symbol next to the Sametime user). When I look in the preferences of the plugin, I can see that the plugin has connected successfully to the CUCM (8.6.2.20000-2),whereas the connection to the CUPS has not been established.
    The user id as well as the password are all the same on all systems. Here is a description of what I have configured via the ciscocfg.exe tool:
    Feature Control:
    - Enable Phone Status -> checked
    - Enable Dial Using Cisco IP Communicator -> unchecked (not required)
    - Enable Control Desk Phone -> checked
    - Default Mode -> Control Desk Phone
    Control Desk Phone Settings:
    - Voicemail Pilot Number -> left blank (no voicemail)
    - Cisco Unified Communications Manager
         - Servers -> IP address of CUCM
         - Read Only -> unchecked
         - Use as Default CUCM -> checked
         - Synchronize Credentials -> checked
              - Use Sametime Credentials -> checked
    Use Secure Connection: -> not required
    LDAP Phone Attributes: -> not required
    Phone Status Settings:
    - Cisco Unified Presence Servers -> IP address of CUPS
    - Read Only -> unchecked
    - Synchronize Credentials -> checked
         - Use Sametime Credentials -> checked
    - Sametime User ID Mapping
         - Use Business Card Attribute -> MailAddress
         - Remove Domain -> checked
    - Display Off-Hook Status Only -> unchecked
    At the moment I don't see an error in the configuration, but maybe I am wrong. Could anyone please tell me what the error could be?
    Thanks a lot in advance!
    Kind regards,
    Igor

    Hi all,
    here are some additions to my above post:
    Servers and clients used:
    1x CUCM 8.6.2.20000-2
    1x CUPS 8.6.1.10000-34
    1x IBM Lotus Domino Messaging Express Server 8.5.2
    1x Sametime Entry Server 8.5.2 (on top of the Domino server)
    2x IBM Lotus Notes 8.5.2 with integrated Sametime 8.0.2
    2x Cisco Phone Control and Presence with Lotus Sametime (PCAP) 8.6.1.1185
    2x Cisco Unified Personal Communicator 8.5.5.19839
    Setup:
    - CUCM, CUPS and CUPC are working fine, i.e. Desk Phone control via CUPC, as well as availability and presence status are working without issues
    - IBM Lotus Domino server is the LDAP Directory, the Sametime Entry Server is installed on top of the Domino server and uses the Domino Directory
    - User ID and password on CUCM/CUPS match the ShortName field and password in Domino
    - The PCAP plug-in has been manually deployed to both Notes clients with the following configuration:
         - Enable Phone Status -> active
         - Desk Phone Control -> active
         - no credential synchronization for CUCM and CUPS, i.e. every user must fill the user details himself
         - Sametime User ID Mapping is implemented via the LDAP Attribute uid (which is equal to the user id in CUCM)
         - LDAP configuration filled in with details of the Domino server
    Phone Control is working fine, also the connection to the LDAP server (Domino) is fine. However, when I type in the credentials for the CUPS server login, I can see (in Troubleshooting pane) that the user (pparker) is connected to the CUPS server for a short period of time and then gets disconnected. After that no connection is possible to the CUPS server, i.e. status is always disconnected.
    I have collected the Tomcat (EPASSoap00010.log and security00010.log) logs via RTMT and compared them to the logs from the PCAP plugin. The relevant time period is from 15:14 to 15:17. In the Tomcat logs I can see that the authentication is successful (see attached files), however in the log of PCAP plugin I can see the following messages:
    2012/02/03 15:14:35.281 WARNUNG Credential is rejected. Nothing to retry ::class.method=com.cisco.sametime.phonestatus.cup.CUPPresenceWatcher.answerChallenge() ::thread=CT_CALLBACK.1 ::loggername=com.cisco.sametime.phonestatus.cup
    2012/02/03 15:14:35.281 WARNUNG #### Connection rejected presence server ::class.method=com.cisco.sametime.phonestatus.cup.CUPPresenceWatcher.onPresenceServerConnectionRejected() ::thread=CT_CALLBACK.1 ::loggername=com.cisco.sametime.phonestatus.cup
    2012/02/03 15:14:35.281 WARNUNG Credential is rejected. Nothing to retry ::class.method=com.cisco.sametime.phonestatus.cup.CUPPresenceWatcher.answerChallenge() ::thread=CT_CALLBACK.2 ::loggername=com.cisco.sametime.phonestatus.cup
    2012/02/03 15:14:35.281 WARNUNG #### Connection rejected presence server ::class.method=com.cisco.sametime.phonestatus.cup.CUPPresenceWatcher.onPresenceServerConnectionRejected() ::thread=CT_CALLBACK.2 ::loggername=com.cisco.sametime.phonestatus.cup
    I don't understand why the connection is rejected although the Sametime Internal ID and CUPS User ID match. Does anyone know what the issue could be?
    All posts are very much appreciated!
    Thanks a lot in advance!
    Kind regards,
    Igor

  • Oracle 11.2.0.2g driver with IBM JRE(J2RE 1.5.0 IBM J9 2.3 Linux x86-32)

    Hi All,
    I am trying to use oracle 11.2 jdbc thin driver with IBM JRE and getting following exception messages.
    Details from Ojdbc5.jar
    Implementation-Version: 11.2.0.2.0
    Repository-Id: JAVAVM_11.2.0.2.0_LINUX_100812.1
    And Details from Java System Properties
    java.vm.info: J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223-20060504 (JIT enabled)
    J9VM - 20060501_06428_lHdSMR
    JIT - 20060428_1800_r8
    GC - 20060501_AA
    java.lang.ExceptionInInitializerError
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:195)
    at javax.crypto.Cipher.getInstance(Unknown Source)
    at oracle.security.o5logon.O5LoginClientHelper.decryptAES(Unknown Source)
    at oracle.security.o5logon.O5LoginClientHelper.generateOAuthResponse(Unknown Source)
    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:655)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:366)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:536)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:228)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
    at org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
    at org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:294)
    at org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:1247)
    at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1221)
    at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:880)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:111)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:77)
    at com.tes.archival.extractor.DataExtractorWithJdbcImpl.extractArchivalRecords(DataExtractorWithJdbcImpl.java:61)
    at com.tes.archival.executor.ExtractorExecutor$1.call(ExtractorExecutor.java:57)
    at com.tes.archival.executor.ExtractorExecutor$1.call(ExtractorExecutor.java:1)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:284)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
    at java.lang.Thread.run(Thread.java:797)
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
    at javax.crypto.b.<clinit>(Unknown Source)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:177)
    ... 24 more
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!
    at javax.crypto.b.a(Unknown Source)
    at javax.crypto.b.a(Unknown Source)
    at javax.crypto.b.access$600(Unknown Source)
    at javax.crypto.b$0.run(Unknown Source)
    at java.security.AccessController.doPrivileged(AccessController.java:241)
    ... 27 more
    Any help in resolving this issue will be much appreaciated.
    Regards,
    Raman

    804915 wrote:
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
    Caused by: java.lang.SecurityException: Jurisdiction policy files are not signed by trusted signers!Probably a permissions problem. Or something is wrong with the certs.

  • How to use SOAP over JMS with Glassfish

    Hi
    Is it possible to use JMS with JAX-WS2.0 ?
    Any answer welcome
    Andre

    I want to secure the message between my web service and a Automated activity in SAP Netweaver BPM (Process
    development). I think in this case the usage of of SOAP adapter may not be useful.
    Security parameters (settings) can be defined for Sender SOAP Adapter (as in your case it is)......to know more check this help section: http://help.sap.com/saphelp_nwpi71/helpdata/EN/fc/5ad93f130f9215e10000000a155106/content.htm
    Check the section: Define Security Parameters.
    Regards,
    Abhishek.

  • Do i have to use JMS with EJBS?

    Hi
    I want to use JMS as a messaging system (a queue) between my system and someone elses. I would like to have some java classes on Tomcat to do the job. But...whenever i hear about JMS i always hear it in relation to EJBs. Can i only use JMS with EJBS?
    If i can use JMS is there anything important i need to know about.
    Thanks in advance!
    San H.

    As far as I understand you are use JNDI and JMS is not bound with EJB's. These are java API's which are independent. Like JDBC you can use with Servlets, Applets, standalone applications, EJB, JMS etc etc.......
    In the same way you can use JNDI and JMS with diferent API. And the important feature of Java is that all java API interact with each other when these are independent. I would appricate comments of everyone......................Thanks

  • Software problems with IBM RAD version 7

    We have recently upgraded a handful of our developer PCs with IBM's Rational Application Developer version 7 from version 6. After the upgrade all of those PC's show no software installed, but everything else is showing up fine. When reload a machine from the OS up, and we install version 7 alone without upgrading from version 6, everything works fine. Uninstalling IBM RAD from an affected machine then reinstalling just version 7 does not fix the problem. Has had any similar problems, and if so what did you do to correct it?

    Is this what you need?
    10/17/07 14:39:55 Collection Client initialized
    10/17/07 14:39:55 C:\Program Files\Novell\ZENworks\Asset Management\bin\CClient.exe
    10/17/07 14:39:55 Client Version 7.00.0047 SP1 built Mar 20 2007 12:16:04.
    10/17/07 14:39:55 Options= First:0, Port:0, Online:0, Svc:1, SN:0
    10/17/07 14:39:55 EstablishOperatingMode
    10/17/07 14:39:55 running in Normal mode
    10/17/07 14:39:55 Changing to Idle Mode
    10/17/07 14:39:55
    10/17/07 14:39:55 Client is running as a service
    10/17/07 14:39:55 ...get user token via explorer pid
    10/17/07 14:39:55 launchApp: WinNT class, 32-bit, Terminal Services
    10/17/07 14:39:55 Terminal Services detected - launch in session 0 (ref procId: 3136).
    10/17/07 14:39:55 Got the user token to run under
    10/17/07 14:39:55 Running as a service, have token, will launch colw32 as user
    10/17/07 14:39:56 collector_init Starting
    10/17/07 14:39:56 init_options Starting.
    10/17/07 14:39:56 init_options Done OK.
    10/17/07 14:39:56 collector_init Done OK.
    10/17/07 14:39:56 ExecAllTests Starting.
    10/17/07 14:39:57 ExecAllTests Done OK.
    10/17/07 14:39:58 have collector connection info.
    10/17/07 14:39:58 connection info acquired from collector
    10/17/07 14:39:58 conninfo - lang: 1, plat: 1, cfgid:
    10/17/07 14:39:58 conninfo - cname: SHASSETMAN1, uname: , LANadd: 0002A57529F3, sn: D122FK41L005
    10/17/07 14:39:58 conninfo - oid: 0B7F00FE-D2A1-4E56-8CEF-7DF11F8D7A28
    10/17/07 14:39:58 CreateListener: port=7461; inbox=C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC
    10/17/07 14:39:58 CWinsockMsgServer::SetLocalHostInfo() completed.
    10/17/07 14:39:58 CCollectionServer::SetRemoteHostInfo: 00000000-0000-0000-0000-000000000000 - shassetman1 - 7460
    10/17/07 14:39:58 ConnectForScanMode to shassetman1 (172.30.20.4)
    10/17/07 14:39:58 29xID: LAN addr: 0002A57529F3
    10/17/07 14:39:58 Checksum: .\Catalog.Ini is h2b0b9 (3011 bytes)
    10/17/07 14:39:58 Connected to shassetman1
    10/17/07 14:39:59 Listener created.
    10/17/07 14:39:59 Connected to Server.
    10/17/07 14:39:59 initial connect state: 1
    10/17/07 14:39:59 Received WkstnConfig - Usage:0 Ulogs: 180 Chkin: 3600
    10/17/07 14:40:09 Usage Monitor stopped.
    10/17/07 14:49:21 Sending ScanWorkstation (0B7F00FE-D2A1-4E56-8CEF-7DF11F8D7A28)
    10/17/07 14:49:21 Sent ScanWorkstation request.
    10/17/07 14:49:28 OnRefreshFiles
    10/17/07 14:49:28 Got File: TC.KB, T=0 S=1
    10/17/07 14:49:28 Got File: dores.dll, T=3 S=1
    10/17/07 14:49:28 RefreshKBs, copy failed: C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC\dores.dll to C:\Program Files\Novell\ZENworks\Asset Management\bin\dores.dll, errcode 32
    10/17/07 14:49:28 Got File: cedit.exe, T=3 S=1
    10/17/07 14:49:29 Got File: HW.KB, T=0 S=1
    10/17/07 14:49:29 Got File: SWREC.KB, T=0 S=1
    10/17/07 14:49:29 Got File: HWREC.KB, T=0 S=1
    10/17/07 14:49:29 Got File: SW.KB, T=0 S=1
    10/17/07 14:49:29 Got File: SNREC.KB, T=0 S=1
    10/17/07 14:49:29 Got File: VTREC.KB, T=0 S=1
    10/17/07 14:49:29 Got File: Catalog.Ini, T=3 S=1
    10/17/07 14:49:46 OnRunFieldApp - c:1, e:2, smst:0, xmlt:0, ut:0
    10/17/07 14:49:46 OnRunFieldApp - WIF: 1FC31090-B8D6-4313-A32B-DCA3D98EDC85..wif
    10/17/07 14:49:46 OnRunFieldApp - FEC: fec.kb
    10/17/07 14:49:46 SetFileSecurity for \\.\C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC
    10/17/07 14:49:46 SetFileSecurity for \\.\C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC\1FC31090-B8D6-4313-A32B-DCA3D98EDC85.wif
    10/17/07 14:49:46 Copying FEC.KB
    10/17/07 14:49:46 Changing to Normal Scan Mode
    10/17/07 14:49:46 C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC\1FC31090-B8D6-4313-A32B-DCA3D98EDC85.wif
    10/17/07 14:49:46 Client is running as a service
    10/17/07 14:49:46 InstallDeviceDriver - Inst:1 Run:1 Repl:0
    10/17/07 14:49:46 RunNextApp, NextApp = 1
    10/17/07 14:49:46 Running Collector
    10/17/07 14:49:46 ...get user token via explorer pid
    10/17/07 14:49:46 launchApp: WinNT class, 32-bit, Terminal Services
    10/17/07 14:49:46 Terminal Services detected - launch in session 0 (ref procId: 3136).
    10/17/07 14:49:46 Got the user token to run under
    10/17/07 14:49:46 Running as a service, have token, will launch colw32 as user
    10/17/07 14:49:46 collector_init Starting
    10/17/07 14:49:46 (null)::(null) - Win32 Collector - 7.00.0049 - May 24 2007 15:52:27
    10/17/07 14:49:46 (null)::collector_init - Enter - (null)
    10/17/07 14:49:46 init_options Starting.
    10/17/07 14:49:46 init_options Done OK.
    10/17/07 14:49:46 ReadWifInit Starting.
    10/17/07 14:49:46 ReadWifInit Done OK.
    10/17/07 14:49:46 KB Version of previous scan (1): 3.05.A.0002.016
    10/17/07 14:49:46 KB Version of previous scan (2): 3.05.A.0002.016
    10/17/07 14:49:46 KB Version: 3.06.A.0008.016
    10/17/07 14:49:46 collector_init Done OK.
    10/17/07 14:49:46 CLaunchHandler::OnCollectorRunning
    10/17/07 14:49:46 ExecAllTests Starting.
    10/17/07 14:49:52 Error - s:2 c:CRegistryKey m:EnumerateKey
    1:SYSTEM\CurrentControlSet\Enum\USB 2: 3: 4:
    10/17/07 14:49:55 OnTimer, entry: timer:10, retry count:0
    10/17/07 14:49:55 OnTimer init state: ConnState:1, Retrying:0, Lost:0
    10/17/07 14:50:19 ExecAllTests Done OK.
    10/17/07 14:50:19 ReadWifRecon Starting.
    10/17/07 14:50:19 ReadWifRecon Done OK.
    10/17/07 14:50:19 Reconcile Starting.
    10/17/07 14:50:23 Reconcile Done OK.
    10/17/07 14:50:23 FillInDataObjects Starting.
    10/17/07 14:50:23 FillInDataObjects Done OK.
    10/17/07 14:50:23 WriteWif Starting.
    10/17/07 14:50:23 WriteWif Done OK.
    10/17/07 14:50:23 OnCollectorTerminating, col. status: 1
    10/17/07 14:50:23 CLaunchHandler::OnCollectorTerminating
    10/17/07 14:50:23 RunNextApp, NextApp = 2
    10/17/07 14:50:23 Running Editor
    10/17/07 14:50:23 ...get user token via explorer pid
    10/17/07 14:50:23 launchApp: WinNT class, 32-bit, Terminal Services
    10/17/07 14:50:23 Terminal Services detected - launch in session 0 (ref procId: 3136).
    10/17/07 14:50:23 Got the user token to run under
    10/17/07 14:50:23 Running as a service, have token, will launch cedit as user
    10/17/07 14:50:23 ChangeMode: NoChange
    10/17/07 14:50:27 CLaunchHandler::OnCEditRunning
    10/17/07 14:51:38 NormalMode::OnCEditTerminating, status: 1
    10/17/07 14:51:38 CollectionEditor completed, WIFname: C:\Program Files\Novell\ZENworks\Asset Management\bin\InboxCC\1FC31090-B8D6-4313-A32B-DCA3D98EDC85.wif
    10/17/07 14:51:38 CLaunchHandler::OnCEditTerminating
    10/17/07 14:51:38 RunNextApp, NextApp = 0
    10/17/07 14:51:38 Changing to Idle Mode

  • How to Create web service using JMS with PUB/SUB pattern.

    Hi All,
    I need to expose web service using JMS with PUB/SUB pattern.
    if you have any source for this.
    I tried to use @WLJmsTransport annotation but unable to get it done.
    I have configured all JMS server, topic, and connection factory.
    Thanks.

    Hi, I am having web sample web service program which is simple one.
    But I need to Modify this to JMS enable.
    Can any one help me?
    Thanks.

  • Installing oracle 11.2 rac with IBM Storwize V7000 san with aix 6.1

    Has and one deployed 11g rac with IBM Storwize V7000 san with aix 6.1
    Is this possible using Oracle CRS without going for OS cluster like GPFS

    Hi lbn76,
    Has and one deployed 11g rac with IBM Storwize V7000 san with aix 6.1
    Is this possible using Oracle CRS without going for OS cluster like GPFS
    I hope same thing will work with AIX 6.1 alsoNo problem, the procedure of installation of clusterware is the same in any AIX Platform.
    If you are using Clusterware 11.2 you can (should) use ASM Diskgroup to place your clusterware files and database files. If you want use Cluster Filesystem to any other purpose you can use ACFS feature of ASM.
    The Storage will be transparent to the ASM, the Luns will be mapped to AIX and ASM (Oracle) will manage the read and write.
    The Storage Storwize have several great features, but are transparent to the ASM. The ASM will only see the LUNs provided by AIX.
    Regards,
    Levi Pereira

  • How to do jms with netweaverdeveloperstudio

    hi,
    can u pls tell how to do jms with nwds ?
    which things i need to configure in webas?
    how to write client for jms?
    regards
    Guru

    Please try the J2EE  engine (JMS) example first to have a better understanding of JMS given in portal/index.html
    I hope the following references may also help you
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/63af1bbf09469fa1615c05f0daff6f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/90/57849e5e3e45d784afc4e3bfa8136f/frameset.htm
    Regards

  • Integrating Messaging system like MQ Series or JMS with SIM

    Hi,
    I am working with Integrating Messaging system Integration with SIM.
    Can anyone tell me in detail how we can integrate Messaging system like MQ Series/JMS with Sun Identity Manager?
    Thanks & Regards
    Chitarm

    Hi,
    I am working with Integrating Messaging system Integration with SIM.
    Can anyone tell me in detail how we can integrate Messaging system like MQ Series/JMS with Sun Identity Manager?
    Thanks & Regards
    Chitarm

  • Workflow integration with IBM lotus notes

    Hi
    Can anyone tell me how does SAP workflow builder interact with IBM Lotus notes? For e.g., say a workflow has been initiated by a user and it has been assigned to his manager. Then in this case, the manager should be intimated by an email about the start of the workflow. How to configure the email ids to continue with the workflow. Can you please tell me the exact procedure of carrying out this workflow starting from the beginning till end?

    Hello,
    You can set up Extended Notifications outside of workflow to send emails (which can end up in Lotus Notes) telling users that they have workitems in their inbox.
    If you just want to tell someone a workflow has started, then you can use a SendMail step within the workflow.
    For more information, search the forum.
    If you run into any problems, feel free to ask.
    regards
    Rick Bakker
    Hanabi Technology

  • SAP EHP5 MSCS installation with IBM DB2 9.7 on windows 2008 R2

    Dear Sir
    i am installing SAP EHP5 high availability with IBM DB2 9.7 on windows 2008 R2
    first cluster node installation is completed,
    now i am going to install database instance, before that i am configuring the database for MSCS as per installation guide,
    but the database group is note creating in Failover cluster manager.
    if you have any solution please reply
    regards
    gourishankar baikerikar

    HI,
    Thats a printing mistake in installation guide..
    copy db2mscs.ese file to db2mscs.cfg ...
    Remove all the unwanted stuff like explination of parameter paragraphs
    Confgure required parameters like  below and make sure there are no unwanted spaces in the txt file.
    #Global section
    DB2_INSTANCE = DB2SID
    DB2_LOGON_USERNAME = XXXXXX\db2sid
    DB2_LOGON_PASSWORD = password
    CLUSTER_NAME = GXXXXX
    MSCS Group for Node 0
    GROUP_NAME = DB2 SID Group
    DB2_NODE = 0
    #IP_NAME = DB2 IP SID
    #IP_ADDRESS=192.168.0.xx
    #IP_SUBNET=255.255.255.0
    #IP_NETWORK=Ethernet(3)
    NETNAME_NAME =  DB2 NetName SID
    NETNAME_VALUE = DB2SID
    #NETNAME_DEPENDENCY = DB2 IP SID
    Open you cluster console and select NODE A there you should be able to identify the disks for DB clustering,
    Copy that name and paste it here for  DISK_NAME
    DISK_NAME = DATABASE_CD2                  
    DISK_NAME = DBLOGS_CD4
    #INSTPROF_DISK = Disk M:
    #TARGET_DRVMAP_DISK = Disk M:
    With the above process you should be able to cluster your DB.
    2) Please provide all the steps that you were identified to install , that would give more clarity to reply back where ever required.
    Thanks,
    Rahul

Maybe you are looking for

  • EMac high pitched noise

    Hi. I have a 1GHZ eMac G4 that I got second hand several months ago. Recently, I've noticed that there is a high pitch noise that it makes when I first turn it on or wake it from sleep. This noise only lasts for a minute or so, but it is very high in

  • 3rd party sat nav for e51

    i am looking for a 3rd party sat nav that is compatible with my e51, i understand that i need an external receiver but am not sure which one would be the best for my phone? ideally the mapping of the sat nav would be topographical as well as street m

  • Static while using apple's iphone BT

    When im using apple's BT i get a lot of static, but when i turn switch to phone mode no static. Does anybody have some suggestions?

  • Aperture Import Panel - Missing field list for "add metadata from" presets

    I have MacBookPro using OSX 10.5.6 and Aperture 2.1.2. Prior to Aperture & Leopard upgrades when I imported images I had presets for basic import data (copywrite, byline, caption etc) and the list would show up on the lower right side of the import s

  • HT4914 WHYARE MY IBOOKS FULL GET NEED MORE STORAGE ANY TIPS?

    IBOOKS SAYS FULL-HOW MANY BOOKS DOES THE RACK HOLD?