Weblogic10.3(11g) Foreign Server With WebSphere MQ7.0.1.1 binding

Hi All ,
I have configured the WLS10.3 with MQ7.0.1.1 both are running in same physical box (same machine) successfully , and it work fine ...
but if the both are in different machine.. its not working.. please help if any doucment please share with me will be gr8 help full to me...
I have followed steps WebLogic MDB on WebSphere MQ for remote MQ server ...but still i am not abe to connect ..
Please share an screen shots /document /pdf .. how to generate the.binding file in remote ..

You may get some idea...after refering to the following links...
Please refer to the Below Link to achieve this....With Screenshots as well
Suitable for WLS8.x
http://www.ibm.com/developerworks/websphere/library/techarticles/0604_kesavan/0604_kesavan.html
<font color=maroon>
For later versions of WLS8.x you can even refer to :</font><BR>
http://ibswings.blogspot.com/2008/02/integrating-mq-broker-6-with-bea.html
Thanks
Jay SenSharma
http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

Similar Messages

  • Integrating Sun App Server with WebSphere MQ

    Hi,
    I am using Sun App server V8.1 . I also have a websphere MQ v5.3 installed in my system. I want to integrate this MQ with the App server.
    I created a queueManager and a Queue in MQ and using the JMSAdmin console of the Mq, i created jndi lookup resources using INITIAL_CONTEXT_FACTORY=com.sun.jndi.fscontext.RefFSContextFactory
    In the application server side, i created a Resource adapter using the command:
    create-resource-adapter-config --property SupportsXA=true:ProviderIntegrationMode=jndi:RMPolicy=OnePerPhysicalConnection:JndiProperties=java.naming.factory.url.pkgs\\=com.ibm.mq.jms.naming,java.naming.factory.initial\\=com.sun.jndi.fscontext.RefFSContextFactory,java.naming.provider.url\\=file\\:D\\:\\MQ:LogLevel=finest mqra
    Then i deployed this resource adaptor using the command :
    deploy name mqra target server "D:\Sun\AppServer\lib\addons\resourceadapters\genericjmsra\genericra.rar"
    Using this resource adapter i created a connection pool, connector resource and an admin object using the commands
    create-connector-connection-pool raname mqra connectiondefinition javax.jms.QueueConnectionFactory transactionsupport  XATransaction property ConnectionFactoryJndiName=MQQCF mymqpool
    create-connector-resource --poolname mymqpool jms/MyMqQCF
    create-admin-object raname mqra restype javax.jms.Queue --property DestinationJndiName=RTQueue jms/MyMqQueue
    After that, i wrote a java code to lookup these resources and put a message into the queue.
    This is the snippet of my java code
    InitialContext ic = new InitialContext();
    QueueConnectionFactory cnxFact = (QueueConnectionFactory)ic.lookup("jms/MyMqQCF");
    Queue qu = (Queue)ic.lookup("jms/MyMqQueue");
    try {               
    QueueConnection qConn = cnxFact.createQueueConnection();
    QueueSession qSess = qConn.createQueueSession(false,Session.AUTO_ACKNOWLEDGE);
    QueueSender qSend = qSess.createSender(qu);
    TextMessage msg = qSess.createTextMessage();
    msg.setText("1");
    qSend.send(msg);
    qConn.close();
    I am getting an exception in the line, QueueConnection qConn = cnxFact.createQueueConnection();
    here is the stack trace
    java.lang.ClassCastException: com.ibm.mq.jms.MQQueueConnectionFactory
    at com.sun.genericra.outbound.ManagedQueueConnectionFactory.createXAConnection(ManagedQueueConnectionFactory.java:45)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createPhysicalConnection(AbstractManagedConnectionFactory.java:127)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createManagedConnection(AbstractManagedConnectionFactory.java:111)
    at com.sun.enterprise.resource.ConnectorAllocator.createResource(ConnectorAllocator.java:90)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getUnenlistedResource(IASNonSharedResourcePool.java:437)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:355)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:250)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:213)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:174)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.internalGetConnection(ConnectionManagerImpl.java:286)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:145)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:121)
    at com.sun.genericra.outbound.ConnectionFactory.createConnection(ConnectionFactory.java:69)
    at com.sun.genericra.outbound.ConnectionFactory.createQueueConnection(ConnectionFactory.java:101)
    Can anybody help???

    bump
    update:
    So to avoid this problem I added spring.jar to the server classpath. that got rid of this message but then it started complaining that its missing struts2 core jar..i added that in server classpath as well...I did same for 4 other files and in the end it said 'bean for xwork has already been initialized' (because all these jars are in the application as well).
    So I am stuck. if I add all jars to server classpath..it says beans have already been initialized. If I take out the jars from server classpath then it says that stuff is missing (eg. contextLoader.properties missing - orig post)
    again, all this goes away when I restart the server..so i am just trying to avoid having to restart server every code change.

  • Weblogic server with  Websphere Portal server

    Hi,
    I am having this peculiar problem.
    I am using Websphere Portal Server and accessing an application which is running
    on Weblogic
    6.1. I am also using struts on both the portal server and weblogic server.
    The first time I access a jsp which is on weblogic from websphere portal I get
    it fine.
    I have button on this jsp on submit of which another jsp on weblogic should come
    up.
    The problem is that on click of the button the URL which is being formed is
    <ip of weblogic>/<path of portal server>.
    I have no clue why this is happening and its driving me crazy.
    Can anyone tell me whats happening?
    Thanks
    Siri

    Siri-
    This sounds like a URL rewriting issue with whatever proxy or tool you are using
    to interface from WS to WLS. Basically, for the setup to work, any URL's that
    are contained in the content served up by your WLS instance will have to be rewritten
    such that your WS instance knows that the request is actually intended for the
    WLS server.
    -Brodi
    "Siri" <[email protected]> wrote:
    >
    Hi,
    I am having this peculiar problem.
    I am using Websphere Portal Server and accessing an application which
    is running
    on Weblogic
    6.1. I am also using struts on both the portal server and weblogic server.
    The first time I access a jsp which is on weblogic from websphere portal
    I get
    it fine.
    I have button on this jsp on submit of which another jsp on weblogic
    should come
    up.
    The problem is that on click of the button the URL which is being formed
    is
    <ip of weblogic>/<path of portal server>.
    I have no clue why this is happening and its driving me crazy.
    Can anyone tell me whats happening?
    Thanks
    Siri

  • Integration of sunone server with Websphere MQ

    I am trying to use an MDB with WebsphereMQ. The Sunone Server and the MQ services are on physically different machines. I have followed the example setup in the MDB Simple Sample Application. I beleive my problem is that the Sun One server is assuming that MQ is on the same machine.
    This is the dump:
    INFO: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.4.1_01] from [Sun M
    icrosystems Inc.]
    INFO: JTS5014: Recoverable JTS instance, serverId = [100]
    INFO: RAR5060: Install JDBC Datasources ...
    INFO: RAR5059: Binding [JDBC DataSource Name: jdbc/ORMdb, Pool Name: ORMPool]
    INFO: RAR5059: Binding [JDBC DataSource Name: jdbc/QDEdb, Pool Name: QDEPool]
    INFO: JMS5015: Install JMS resources ...
    INFO: MDB00044: Deploying message-driven bean [orm:InvoiceMDB], consuming from [
    jms/InvoiceQ]
    WARNING: MDB00032: [orm:InvoiceMDB]: Message-driven bean container connection fa
    ctory not specified. Use default
    SEVERE: MDB00030: [orm:InvoiceMDB]: Exception in setting up message-driven bean
    container: [[C4003]: Error occurred on connection creation. - caught java.net.Co
    nnectException]
    SEVERE: MDB00017: [InvoiceMDB]: Exception in creating message-driven bean contai
    ner: [javax.jms.JMSException: [C4003]: Error occurred on connection creation. -
    caught java.net.ConnectException]
    SEVERE: javax.jms.JMSException
    javax.jms.JMSException: [C4003]: Error occurred on connection creation. - caught
    java.net.ConnectException
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSException(Exce
    ptionHandler.java:183)
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleException(Exce
    ptionHandler.java:136)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(Port
    MapperClient.java:145)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClien
    t.java:86)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperCli
    ent.java:47)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<in
    it>(TCPConnectionHandler.java:46)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openCon
    nection(TCPStreamHandler.java:101)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.
    java:501)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandle
    r.java:930)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(Connect
    ionImpl.java:1482)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.ja
    va:403)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.
    java:234)
    at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedC
    onnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConne
    ctionImpl.java:32)
    at com.sun.messaging.jmq.jmsclient.XAQueueConnectionImpl.<init>(XAQueueC
    onnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionImpl.<init>(JMSXA
    QueueConnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionFactoryImpl.creat
    eXAQueueConnection(JMSXAQueueConnectionFactoryImpl.java:75)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionFactoryImpl.creat
    eXAQueueConnection(JMSXAQueueConnectionFactoryImpl.java:51)
    at com.sun.enterprise.jms.ConnectionFactoryWrapper.createQueueConnection
    (ConnectionFactoryWrapper.java:118)
    at com.sun.ejb.containers.MessageBeanHelperBase.setup(MessageBeanHelperB
    ase.java:394)
    at com.sun.ejb.containers.MessageBeanContainer.<init>(MessageBeanContain
    er.java:206)
    at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(Container
    FactoryImpl.java:173)
    at com.iplanet.ias.server.AbstractLoader.loadEjbs(AbstractLoader.java:34
    5)
    at com.iplanet.ias.server.ApplicationLoader.load(ApplicationLoader.java:
    81)
    at com.iplanet.ias.server.AbstractManager.load(AbstractManager.java:134)
    at com.iplanet.ias.server.ApplicationLifecycle.onStartup(ApplicationLife
    cycle.java:168)
    at com.iplanet.ias.server.ApplicationServer.onStartup(ApplicationServer.
    java:269)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:162)
    SEVERE: EJB5090: Exception in creating EJB container [javax.jms.JMSException: [C
    4003]: Error occurred on connection creation. - caught java.net.ConnectException
    SEVERE: appId=orm moduleName=EJBModule_ImageMDB_jar ejbName=InvoiceMDB
    SEVERE: LDR5004: UnExpected error occured while creating ejb container
    javax.jms.JMSException: [C4003]: Error occurred on connection creation. - caught
    java.net.ConnectException
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSException(Exce
    ptionHandler.java:183)
    at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleException(Exce
    ptionHandler.java:136)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(Port
    MapperClient.java:145)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClien
    t.java:86)
    at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperCli
    ent.java:47)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<in
    it>(TCPConnectionHandler.java:46)
    at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openCon
    nection(TCPStreamHandler.java:101)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.
    java:501)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandle
    r.java:930)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(Connect
    ionImpl.java:1482)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.ja
    va:403)
    at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.
    java:234)
    at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedC
    onnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConne
    ctionImpl.java:32)
    at com.sun.messaging.jmq.jmsclient.XAQueueConnectionImpl.<init>(XAQueueC
    onnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionImpl.<init>(JMSXA
    QueueConnectionImpl.java:33)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionFactoryImpl.creat
    eXAQueueConnection(JMSXAQueueConnectionFactoryImpl.java:75)
    at com.sun.messaging.jmq.jmsclient.JMSXAQueueConnectionFactoryImpl.creat
    eXAQueueConnection(JMSXAQueueConnectionFactoryImpl.java:51)
    at com.sun.enterprise.jms.ConnectionFactoryWrapper.createQueueConnection
    (ConnectionFactoryWrapper.java:118)
    at com.sun.ejb.containers.MessageBeanHelperBase.setup(MessageBeanHelperB
    ase.java:394)
    at com.sun.ejb.containers.MessageBeanContainer.<init>(MessageBeanContain
    er.java:206)
    at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(Container
    FactoryImpl.java:173)
    at com.iplanet.ias.server.AbstractLoader.loadEjbs(AbstractLoader.java:34
    5)
    at com.iplanet.ias.server.ApplicationLoader.load(ApplicationLoader.java:
    81)
    at com.iplanet.ias.server.AbstractManager.load(AbstractManager.java:134)
    at com.iplanet.ias.server.ApplicationLifecycle.onStartup(ApplicationLife
    cycle.java:168)
    at com.iplanet.ias.server.ApplicationServer.onStartup(ApplicationServer.
    java:269)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:162)
    WARNING: CORE5021: Application NOT loaded: [orm]
    INFO: HTTP3072: HTTP listener http-listener-1 [http://orm-java-app:80] ready to
    accept requests
    startup: server started successfully
    INFO: CORE3274: successful server startup
    INFO: CORE5053: Application onReady complete.
    INFO: CORE5008: Resource Redeployed: [external-jndi:jms/ImageQCF].
    All the links to setting up external resourses appear to be either dead, or non-reponsive. I need to use MQ as I need to swap messages with an IMS (Mainframe) application.
    This is the binding file that sits in the directory pointed to by the java.naming.provider.url parameter.
    #This file is used by the JNDI FSContext.
    #Mon Feb 23 11:12:23 EST 2004
    jms/ApprovalQ/RefAddr/5/Type=TC
    jms/ImageQCF/RefAddr/12/Encoding=String
    jms/InvoiceQCF/RefAddr/5/Encoding=String
    jms/InvoiceQCF/RefAddr/5/Content=SYSTEM.DEF.SVRCONN
    jms/InvoiceQ/RefAddr/9/Encoding=String
    jms/ApprovalQCF/RefAddr/7/Content=false
    jms/ApprovalQCF/RefAddr/1/Encoding=String
    jms/ApprovalQ/RefAddr/9/Type=QMGR
    jms/InvoiceQCF/RefAddr/1/Type=TRAN
    jms/ApprovalQCF/RefAddr/10/Type=MBS
    jms/ImageQ/RefAddr/6/Content=273
    jms/ApprovalQ/RefAddr/0/Encoding=String
    jms/ImageQ/RefAddr/7/Encoding=String
    jms/ImageQ/RefAddr/9/Content=ORM_Queue_Manager
    jms/InvoiceQCF/RefAddr/13/Content=SYSTEM.DEFAULT.MODEL.QUEUE
    jms/InvoiceQCF/RefAddr/10/Encoding=String
    jms/InvoiceQCF/RefAddr/5/Type=CHAN
    jms/ApprovalQCF/RefAddr/14/Type=MRET
    jms/ApprovalQCF/RefAddr/3/Type=HOST
    jms/ImageQCF/RefAddr/9/Encoding=String
    jms/InvoiceQ/ClassName=com.ibm.mq.jms.MQQueue
    jms/ImageQ/RefAddr/0/Content=1
    jms/ImageQCF/RefAddr/13/Encoding=String
    jms/InvoiceQCF/RefAddr/6/Encoding=String
    jms/ImageQCF/RefAddr/11/Content=1
    jms/InvoiceQCF/RefAddr/9/Type=PINT
    jms/InvoiceQ/RefAddr/0/Encoding=String
    jms/ImageQ/RefAddr/3/Content=-2
    jms/ApprovalQCF/RefAddr/7/Type=SPAG
    jms/ImageQCF/RefAddr/14/Content=1
    jms/ImageQCF/RefAddr/2/Type=QMGR
    jms/ApprovalQ/RefAddr/6/Content=273
    jms/InvoiceQCF/RefAddr/10/Content=10
    jms/ApprovalQ/RefAddr/1/Encoding=String
    jms/ImageQ/RefAddr/8/Encoding=String
    jms/ApprovalQ/RefAddr/9/Content=ORM_Queue_Manager
    jms/InvoiceQ/RefAddr/7/Content=1
    jms/ImageQCF/RefAddr/6/Type=CCS
    jms/InvoiceQCF/RefAddr/11/Encoding=String
    jms/ImageQCF/RefAddr/8/Content=true
    jms/InvoiceQ/RefAddr/1/Type=EXP
    jms/ApprovalQ/RefAddr/0/Content=1
    jms/ImageQCF/RefAddr/0/Encoding=String
    jms/ImageQ/RefAddr/9/Type=QMGR
    jms/ImageQCF/RefAddr/14/Encoding=String
    jms/ImageQ/FactoryName=com.ibm.mq.jms.MQQueueFactory
    jms/InvoiceQCF/RefAddr/7/Encoding=String
    jms/InvoiceQ/RefAddr/1/Encoding=String
    jms/ApprovalQCF/RefAddr/12/Content=5000
    jms/ApprovalQ/RefAddr/3/Content=-2
    jms/InvoiceQ/RefAddr/5/Type=TC
    jms/ImageQ/RefAddr/1/Type=EXP
    jms/ApprovalQCF/RefAddr/2/Encoding=String
    jms/ImageQCF/RefAddr/11/Type=FIQ
    jms/InvoiceQ/FactoryName=com.ibm.mq.jms.MQQueueFactory
    jms/InvoiceQ/RefAddr/1/Content=-2
    jms/ImageQCF/RefAddr/2/Content=ORM_Queue_Manager
    jms/ApprovalQ/RefAddr/2/Type=PRI
    jms/InvoiceQ/RefAddr/4/Content=1208
    jms/ApprovalQ/RefAddr/2/Encoding=String
    jms/ImageQCF/RefAddr/5/Content=SYSTEM.DEF.SVRCONN
    jms/ImageQ/RefAddr/5/Type=TC
    jms/InvoiceQ/RefAddr/9/Type=QMGR
    jms/ImageQ/RefAddr/9/Encoding=String
    jms/InvoiceQCF/RefAddr/12/Type=RINT
    jms/InvoiceQCF/RefAddr/12/Encoding=String
    jms/ApprovalQ/RefAddr/6/Type=ENC
    jms/ApprovalQCF/RefAddr/8/Content=true
    jms/ImageQCF/RefAddr/1/Encoding=String
    jms/InvoiceQCF/RefAddr/9/Content=5000
    jms/InvoiceQCF/RefAddr/8/Encoding=String
    jms/InvoiceQ/RefAddr/2/Encoding=String
    jms/InvoiceQCF/RefAddr/2/Type=QMGR
    jms/ApprovalQCF/RefAddr/11/Type=FIQ
    jms/ApprovalQCF/RefAddr/3/Encoding=String
    jms/ApprovalQCF/RefAddr/0/Type=VER
    jms/InvoiceQCF/RefAddr/0/Content=2
    jms/ApprovalQCF/RefAddr/2/Content=ORM_Queue_Manager
    jms/ApprovalQ/RefAddr/3/Encoding=String
    jms/ImageQ/RefAddr/0/Encoding=String
    jms/InvoiceQCF/RefAddr/6/Type=CCS
    jms/InvoiceQCF/RefAddr/3/Content=localhost
    jms/ApprovalQCF/RefAddr/5/Content=SYSTEM.DEF.SVRCONN
    jms/ApprovalQCF/RefAddr/4/Type=PORT
    jms/InvoiceQCF/RefAddr/13/Encoding=String
    jms/ApprovalQ/FactoryName=com.ibm.mq.jms.MQQueueFactory
    jms/InvoiceQCF/RefAddr/6/Content=819
    jms/ImageQCF/RefAddr/2/Encoding=String
    jms/InvoiceQCF/RefAddr/9/Encoding=String
    jms/ApprovalQCF/RefAddr/8/Type=UCP
    jms/ImageQ/RefAddr/7/Content=1
    jms/ImageQCF/RefAddr/3/Type=HOST
    jms/ApprovalQCF/RefAddr/10/Encoding=String
    jms/ApprovalQCF/RefAddr/4/Encoding=String
    jms/ImageQ/ClassName=com.ibm.mq.jms.MQQueue
    jms/InvoiceQCF/RefAddr/14/Content=1
    jms/ApprovalQ/RefAddr/4/Encoding=String
    jms/ImageQCF/RefAddr/7/Type=SPAG
    jms/ImageQ/RefAddr/1/Encoding=String
    jms/InvoiceQ/RefAddr/2/Type=PRI
    jms/ImageQ/RefAddr/1/Content=-2
    jms/InvoiceQCF/RefAddr/14/Encoding=String
    jms/ImageQCF/RefAddr/12/Content=5000
    jms/ImageQ/RefAddr/4/Content=1208
    jms/ApprovalQ/RefAddr/4/Content=1208
    jms/InvoiceQ/RefAddr/6/Type=ENC
    jms/ImageQ/RefAddr/2/Type=PRI
    jms/InvoiceQ/RefAddr/3/Encoding=String
    jms/ImageQCF/RefAddr/12/Type=RINT
    jms/InvoiceQCF/RefAddr/0/Encoding=String
    jms/ApprovalQ/RefAddr/7/Content=1
    jms/ApprovalQCF/RefAddr/11/Encoding=String
    jms/InvoiceQCF/RefAddr/11/Content=1
    jms/ApprovalQCF/RefAddr/5/Encoding=String
    jms/InvoiceQ/RefAddr/5/Content=0
    jms/ApprovalQ/RefAddr/3/Type=PER
    jms/ImageQ/RefAddr/6/Type=ENC
    jms/InvoiceQ/RefAddr/8/Content=InvoiceQ
    jms/ImageQCF/RefAddr/9/Content=5000
    jms/InvoiceQCF/RefAddr/13/Type=TM
    jms/ApprovalQ/RefAddr/5/Encoding=String
    jms/ApprovalQ/RefAddr/7/Type=FIQ
    jms/ApprovalQ/RefAddr/1/Content=-2
    jms/ImageQCF/RefAddr/0/Content=2
    jms/ApprovalQCF/RefAddr/13/Content=SYSTEM.DEFAULT.MODEL.QUEUE
    jms/ImageQCF/RefAddr/3/Encoding=String
    jms/ApprovalQCF/FactoryName=com.ibm.mq.jms.MQQueueConnectionFactoryFactory
    jms/InvoiceQ/RefAddr/2/Content=-2
    jms/ImageQCF/RefAddr/3/Content=localhost
    jms/ImageQCF/ClassName=com.ibm.mq.jms.MQQueueConnectionFactory
    jms/InvoiceQCF/RefAddr/3/Type=HOST
    jms/ApprovalQCF/RefAddr/12/Type=RINT
    jms/InvoiceQ/RefAddr/4/Encoding=String
    jms/InvoiceQCF/RefAddr/1/Encoding=String
    jms/ApprovalQCF/RefAddr/1/Type=TRAN
    jms/InvoiceQCF/ClassName=com.ibm.mq.jms.MQQueueConnectionFactory
    jms/ApprovalQCF/RefAddr/6/Encoding=String
    jms/ImageQCF/RefAddr/6/Content=819
    jms/InvoiceQCF/RefAddr/7/Type=SPAG
    jms/ApprovalQ/RefAddr/6/Encoding=String
    jms/ImageQ/RefAddr/2/Encoding=String
    jms/ApprovalQCF/RefAddr/5/Type=CHAN
    jms/InvoiceQCF/RefAddr/7/Content=false
    jms/ApprovalQCF/RefAddr/10/Content=10
    jms/ApprovalQCF/RefAddr/9/Content=5000
    jms/ImageQCF/RefAddr/0/Type=VER
    jms/ImageQCF/FactoryName=com.ibm.mq.jms.MQQueueConnectionFactoryFactory
    jms/ImageQCF/RefAddr/4/Encoding=String
    jms/ApprovalQCF/RefAddr/9/Type=PINT
    jms/ImageQCF/RefAddr/4/Type=PORT
    jms/InvoiceQ/RefAddr/5/Encoding=String
    jms/ApprovalQCF/RefAddr/12/Encoding=String
    jms/InvoiceQCF/RefAddr/1/Content=0
    jms/ApprovalQCF/RefAddr/3/Content=localhost
    jms/ApprovalQCF/RefAddr/7/Encoding=String
    jms/InvoiceQCF/RefAddr/4/Content=1414
    jms/ApprovalQCF/RefAddr/6/Content=819
    jms/ImageQCF/RefAddr/8/Type=UCP
    jms/InvoiceQ/RefAddr/3/Type=PER
    jms/ApprovalQ/RefAddr/7/Encoding=String
    jms/ImageQ/RefAddr/3/Encoding=String
    jms/ApprovalQ/RefAddr/0/Type=VER
    jms/InvoiceQCF/FactoryName=com.ibm.mq.jms.MQQueueConnectionFactoryFactory
    jms/InvoiceQ/RefAddr/7/Type=FIQ
    jms/ImageQ/RefAddr/3/Type=PER
    jms/ImageQ/RefAddr/8/Content=ImageQ
    jms/ImageQCF/RefAddr/13/Type=TM
    jms/ImageQCF/RefAddr/5/Encoding=String
    jms/ApprovalQCF/RefAddr/0/Content=2
    jms/InvoiceQCF/RefAddr/10/Type=MBS
    jms/ApprovalQ/ClassName=com.ibm.mq.jms.MQQueue
    jms/InvoiceQCF/RefAddr/12/Content=5000
    jms/InvoiceQCF/RefAddr/2/Encoding=String
    jms/InvoiceQ/RefAddr/6/Encoding=String
    jms/ApprovalQ/RefAddr/4/Type=CCS
    jms/ApprovalQCF/RefAddr/13/Encoding=String
    jms/ImageQ/RefAddr/7/Type=FIQ
    jms/ApprovalQCF/RefAddr/8/Encoding=String
    jms/InvoiceQCF/RefAddr/14/Type=MRET
    jms/ImageQ/RefAddr/2/Content=-2
    jms/ApprovalQ/RefAddr/8/Encoding=String
    jms/ApprovalQ/RefAddr/8/Type=QU
    jms/InvoiceQCF/RefAddr/0/Type=VER
    jms/ImageQCF/RefAddr/13/Content=SYSTEM.DEFAULT.MODEL.QUEUE
    jms/ImageQ/RefAddr/4/Encoding=String
    jms/ImageQ/RefAddr/5/Content=0
    jms/ApprovalQ/RefAddr/5/Content=0
    jms/ApprovalQCF/ClassName=com.ibm.mq.jms.MQQueueConnectionFactory
    jms/ApprovalQ/RefAddr/8/Content=ApprovalQ
    jms/ApprovalQCF/RefAddr/13/Type=TM
    jms/InvoiceQCF/RefAddr/4/Type=PORT
    jms/ImageQCF/RefAddr/6/Encoding=String
    jms/ImageQCF/RefAddr/10/Encoding=String
    jms/InvoiceQ/RefAddr/6/Content=273
    jms/ImageQCF/RefAddr/7/Content=false
    jms/ApprovalQCF/RefAddr/2/Type=QMGR
    jms/InvoiceQCF/RefAddr/3/Encoding=String
    jms/InvoiceQ/RefAddr/7/Encoding=String
    jms/ApprovalQCF/RefAddr/14/Encoding=String
    jms/InvoiceQ/RefAddr/9/Content=ORM_Queue_Manager
    jms/ApprovalQCF/RefAddr/9/Encoding=String
    jms/InvoiceQCF/RefAddr/8/Type=UCP
    jms/ImageQCF/RefAddr/10/Content=10
    jms/ApprovalQ/RefAddr/2/Content=-2
    jms/ApprovalQCF/RefAddr/6/Type=CCS
    jms/ImageQCF/RefAddr/1/Type=TRAN
    jms/ApprovalQ/RefAddr/9/Encoding=String
    jms/InvoiceQ/RefAddr/0/Content=1
    jms/ImageQ/RefAddr/5/Encoding=String
    jms/ImageQCF/RefAddr/1/Content=0
    jms/ApprovalQCF/RefAddr/14/Content=1
    jms/InvoiceQ/RefAddr/3/Content=-2
    jms/ImageQCF/RefAddr/4/Content=1414
    jms/ImageQCF/RefAddr/5/Type=CHAN
    jms/ImageQCF/RefAddr/7/Encoding=String
    jms/InvoiceQ/RefAddr/0/Type=VER
    jms/ImageQCF/RefAddr/11/Encoding=String
    jms/InvoiceQCF/RefAddr/4/Encoding=String
    jms/InvoiceQ/RefAddr/8/Encoding=String
    jms/ImageQ/RefAddr/8/Type=QU
    jms/ImageQCF/RefAddr/9/Type=PINT
    jms/ApprovalQCF/RefAddr/0/Encoding=String
    jms/ImageQ/RefAddr/0/Type=VER
    jms/InvoiceQCF/RefAddr/8/Content=true
    jms/ApprovalQCF/RefAddr/11/Content=1
    jms/InvoiceQ/RefAddr/4/Type=CCS
    jms/ImageQCF/RefAddr/10/Type=MBS
    jms/ImageQ/RefAddr/6/Encoding=String
    jms/ApprovalQ/RefAddr/1/Type=EXP
    jms/ImageQ/RefAddr/4/Type=CCS
    jms/ApprovalQCF/RefAddr/1/Content=0
    jms/InvoiceQ/RefAddr/8/Type=QU
    jms/ImageQCF/RefAddr/14/Type=MRET
    jms/InvoiceQCF/RefAddr/11/Type=FIQ
    jms/InvoiceQCF/RefAddr/2/Content=ORM_Queue_Manager
    jms/ApprovalQCF/RefAddr/4/Content=1414
    jms/ImageQCF/RefAddr/8/Encoding=String
    Can anyone help me with this.

    Hi Midhun Joseph,
    Please check the below thread and see if it helps.
    https://supportforums.cisco.com/thread/2070836
    Thanks,
    Anand

  • Installed 11g on server with wrong timezone

    Don't know if anyone has had this happen to them or not but I installed oracle 11.1.0.7 on a windows 2008 server. Just got everything loaded and patched. I was about to test a rman recovery when I noticed the windows server was set to the wrong timezone. I fixed the timezone on the server but not sure how to fix it on the database. At the least it seems like I would have to drop the dbconsole repository and recreate it.
    Has anyone every had to change the timezone on their Oracle database?
    Thanks for taking my questions!
    Kathie

    The complete answer is to boot database, dropped the dbconsole repository and recreated it. This cleans up you job schedule and resets everything to the correct time.
    Thanks!

  • How to access local connection factory created within Foreign Server in OSB

    Hi All
    I am facing an issue in my config plan. We have a RIB Foreign server with the following local connection factory:
    jms/RibAqJmsXATopicConnectionFactory
    I am using the below in my configuration plan:
    <cus:envValueAssignments>
    <xt:envValueType>Service URI</xt:envValueType>
    <xt:location xsi:nil="true"/>
    <xt:owner>
    <xt:type>ProxyService</xt:type>
    <xt:path>RLTPReturnToWarehouse/ProxyServices/ConsumeRIBRTWMessages</xt:path>
    </xt:owner>
    <xt:value xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">jms://localhost:7001/jms.RibAqJmsXATopicConnectionFactory/jms.etASNInFromRIBToWH1</xt:value>
    </cus:envValueAssignments>
    and i am getting the below error:
    [java]
    [java] Loading customization File ./dev/OSBCustomizationFile.xml
    [java] Customization applied to the created resources only []
    [java] com.bea.wli.config.customization.EnvValueCustomization@553c13
    [java] Unexpected error: com.bea.wli.sb.transports.TransportException
    [java] Problem invoking WLST - Traceback (innermost last):
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 200, in ?
    [java] File "D:\VFUKScripts\DeploymentScripts\osb\import.py", line 122, in importToALSBDomain
    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    what am i missing here?

    [java] com.bea.wli.sb.transports.TransportException: Failed to lookup connection factory jms.RibAqJmsXATopicConnectionFactory
    Looks like the JNDI that you created for the ConnectionFactory is not reflected in the server.
    Login to WLS Console> Summary of Servers > server_name > View JNDI Tree
    Browse to the JNDI tree and see if your JNDI is visible there. If it is not then, please restart the server and recheck.
    Once you are able to find it in the JNDI tree, then execute the customization file.
    If you have modified the existing JNDI properties (that have a small exclamatory symbol) then any changes to those are not reflected till all the servers in the cluster are restarted.
    If it still does not work, then recreate a new Connection with a different name and then retry. It should work then.
    Thanks,
    Patrick

  • RJVM has already been shutdown error while looking upto Foreign Server

    Hi,
    I am trying to set up 2 new servers in a clustered environment. In this I have configured a Foreign Server which is looking up to queues in different server.
    The structure is like this: 1 Foreign Server with 2 Queues and 1 Connection factory with exactly same name as they present on the host server.
    While starting the server, I am getting an exception:
    <Nov 5, 2012 7:39:58 PM EET> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB: ClonedQueueAnonymousWaiter is unable to connect to the JMS destination: MDB_QUEUE_RESPONSE. The Error was:
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: RJVM has already been shutdown; nested exception is:
         java.io.IOException: RJVM has already been shutdown]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:74)
         at weblogic.jndi.internal.WLContextImpl.translateException(WLContextImpl.java:470)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:426)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at weblogic.deployment.jms.ForeignOpaqueReference.getReferent(ForeignOpaqueReference.java:221)
         at weblogic.jndi.internal.WLNamingManager.getObjectInstance(WLNamingManager.java:96)
         at weblogic.jndi.internal.ServerNamingNode.resolveObject(ServerNamingNode.java:377)
         at weblogic.jndi.internal.BasicNamingNode.resolveObject(BasicNamingNode.java:856)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:209)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at weblogic.jms.common.CDS$2.run(CDS.java:486)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.jms.common.CrossDomainSecurityManager.runAs(CrossDomainSecurityManager.java:131)
         at weblogic.jms.common.CDS.lookupDestination(CDS.java:480)
         at weblogic.jms.common.CDS.lookupDDAndCalloutListener(CDS.java:345)
         at weblogic.jms.common.CDS.access$100(CDS.java:41)
         at weblogic.jms.common.CDS$DDListenerRegistrationTimerListener.timerExpired(CDS.java:193)
         at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.rmi.UnmarshalException: RJVM has already been shutdown; nested exception is:
         java.io.IOException: RJVM has already been shutdown
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:360)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at weblogic.jndi.internal.ServerNamingNode_1034_WLStub.lookup(Unknown Source)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:423)
         ... 21 more
    Caused by: java.io.IOException: RJVM has already been shutdown
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
         ... 24 more
    Caused by: java.io.IOException: RJVM has already been shutdown
         at weblogic.rjvm.RJVMImpl.addPendingResponse(RJVMImpl.java:513)
         at weblogic.rjvm.RJVMImpl.send(RJVMImpl.java:900)
         at weblogic.rjvm.MsgAbbrevOutputStream.flushAndSend(MsgAbbrevOutputStream.java:394)
         at weblogic.rjvm.MsgAbbrevOutputStream.sendRecv(MsgAbbrevOutputStream.java:404)
         at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:109)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         ... 24 more
    >
    Weblogic is installed in Solaris machine and welogic's version is 10.3.4.0 with Java version 1.6.0 update 33. I have checked the firewall, /etc/hosts but there are no issues with that.
    The JNDI Connection URL is configure like: t3://xx.xxx.x.xx,xx.xxx.x.xx:7001/
    I have tried giving like this also: t3://xx.xxx.x.xx:7001,xx.xxx.x.xx:7001/ or t3://hostname1,hostname2:7001/ or t3://hostname1:7001,hostname2:7001/
    but nothing worked.
    The foreign servers are accessible from my Application Server when I do the telnet on the port. There is no cross domain security required. Funny thing is I have a same set-up in two other application server (in cluster again) and there on configuring the Foreign server to same IPs, I am not facing any issues at all.
    Can anyone please help me with this. Searched all over the place but have no clue regarding this. Many forums mentioned about firewall and etc/hosts but that is also not case it seems.
    Regards,
    Priyam

    809364 wrote:
    You can apply the below debug flags to check t he RJVM Communication in detail and figure out what's going wrong and do apply it at both the side
    -Dweblogic.kernel.debug=true
    -Dweblogic.debug.DebugConnection=true
    -Dweblogic.StdoutDebugEnabled=true
    -Dweblogic.log.LogSeverity=Debug
    -Dweblogic.log.LoggerSeverity=DebugI added the debug as you mentioned and I get the below information there:
    <Nov 6, 2012 11:41:16 AM EET> <Debug> <RJVM> <BEA-000500> <RJVMFinder trying to find rjvm for t3://moon1,moon2:7001->moon1,moon2:[7001, -1, -1, -1, -1, -1, -1]->[]
    Active RJVMs:
    {-8968250770921317063S:10.160.1.115:[7001,-1,-1,-1,-1,-1,-1]:fcdb_domain:AdminServer on [10.160.1.115:7001]=weblogic.rjvm.RJVMImpl@4320d68d - id: '-8968250770921317063S:10.160.1.115:[7001,-1,-1,-1,-1,-1,-1]:fcdb_domain:AdminServer' connect time: 'Tue Nov 06 11:40:26 EET 2012'}
    Synonyms:
    {}>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Bootstrapping connection to: 'moon1/10.160.1.40:7001' using: 't3'>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Looking for a new connection for channel Default[t3]:t3(t3):venus1:7001:null:-1 to remote server 0B:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1,-1,-1] active connections: {}>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <New connection for protocol t3, remote address moon1/10.160.1.40, remote port 7001, over channel Default[t3]>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Added: 'Default[t3]:t3(t3):venus1:7001:null:-1' connection: 'weblogic.rjvm.t3.MuxableSocketT3$T3MsgAbbrevJVMConnection@7582aacf'. Connections list size 1>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Bootstrapping using a: 't3', connection to: 'moon1/10.160.1.40' on port: '7001'>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Created RJVM for: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1 on [10.160.1.40:7001]', Active RJVMs:
    {-8968250770921317063S:10.160.1.115:[7001,-1,-1,-1,-1,-1,-1]:fcdb_domain:AdminServer on [10.160.1.115:7001]=weblogic.rjvm.RJVMImpl@4320d68d - id: '-8968250770921317063S:10.160.1.115:[7001,-1,-1,-1,-1,-1,-1]:fcdb_domain:AdminServer' connect time: 'Tue Nov 06 11:40:26 EET 2012', -3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1 on [10.160.1.40:7001]=weblogic.rjvm.RJVMImpl@7bb8a8c6 - id: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1' connect time: 'Tue Nov 06 11:41:17 EET 2012'}
    Synonyms:
    {}>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Remote heartbeat: '60000', local heartbeat: '60000'>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Setting heartbeat for RJVM: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1' to: '60000' milliseconds>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Added: 'Default[t3]:t3(t3):venus1:7001:null:-1' connection: 'weblogic.rjvm.t3.MuxableSocketT3$T3MsgAbbrevJVMConnection@7582aacf'. Connections list size 1>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000517> <Error on connection: 'weblogic.rjvm.t3.MuxableSocketT3$T3MsgAbbrevJVMConnection@7582aacf'
    java.io.EOFException
    java.io.EOFException
         at weblogic.rjvm.t3.MuxableSocketT3.endOfStream(MuxableSocketT3.java:345)
         at weblogic.socket.SocketMuxer.deliverExceptionAndCleanup(SocketMuxer.java:826)
         at weblogic.socket.SocketMuxer.deliverEndOfStream(SocketMuxer.java:760)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:941)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:898)
         at weblogic.socket.DevPollSocketMuxer.processSockets(DevPollSocketMuxer.java:126)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    >
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Signaling peer: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1' gone - weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Closed and removed: 't3' connection to: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1'. Connections list size 0>
    <Nov 6, 2012 11:41:17 AM EET> <Debug> <RJVM> <BEA-000500> <Closing: '-3712802650201056847S:10.160.1.40:[7001,-1,-1,-1,-1,-1,-1]:fcj_domain:ManagedServer1'>
    <Nov 6, 2012 11:41:17 AM EET> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB: ClonedQueueAnonymousWaiter is unable to connect to the JMS destination: MDB_QUEUE_RESPONSE. The Error was:
    javax.naming.CommunicationException [Root exception is weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:74)
         at weblogic.jndi.internal.WLContextImpl.translateException(WLContextImpl.java:470)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:426)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at weblogic.deployment.jms.ForeignOpaqueReference.getReferent(ForeignOpaqueReference.java:221)
         at weblogic.jndi.internal.WLNamingManager.getObjectInstance(WLNamingManager.java:96)
         at weblogic.jndi.internal.ServerNamingNode.resolveObject(ServerNamingNode.java:377)
         at weblogic.jndi.internal.BasicNamingNode.resolveObject(BasicNamingNode.java:856)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:209)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at weblogic.jms.common.CDS$2.run(CDS.java:486)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.jms.common.CrossDomainSecurityManager.runAs(CrossDomainSecurityManager.java:131)
         at weblogic.jms.common.CDS.lookupDestination(CDS.java:480)
         at weblogic.jms.common.CDS.lookupDDAndCalloutListener(CDS.java:345)
         at weblogic.jms.common.CDS.access$100(CDS.java:41)
         at weblogic.jms.common.CDS$DDListenerRegistrationTimerListener.timerExpired(CDS.java:193)
         at weblogic.timers.internal.TimerImpl.run(TimerImpl.java:273)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: weblogic.rjvm.PeerGoneException: ; nested exception is:
         java.io.EOFException
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at weblogic.jndi.internal.ServerNamingNode_1034_WLStub.lookup(Unknown Source)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:423)
         ... 21 more
    Caused by: java.io.EOFException
         at weblogic.rjvm.t3.MuxableSocketT3.endOfStream(MuxableSocketT3.java:345)
         at weblogic.socket.SocketMuxer.deliverExceptionAndCleanup(SocketMuxer.java:826)
         at weblogic.socket.SocketMuxer.deliverEndOfStream(SocketMuxer.java:760)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:941)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:898)
         at weblogic.socket.DevPollSocketMuxer.processSockets(DevPollSocketMuxer.java:126)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    >
    Seems like Peer gone exception is the root cause of this. Any idea for this ?
    Regards,
    Priyam
    Edited by: Priyam Srivastava on Nov 6, 2012 2:49 AM

  • Integrating WebSphere Portal Server with Sun Java System Access Manager

    Hi All,
    Is it possible to Integrate WebSphere Portal Server with Sun java System Access Manager?. If so plz send me any doc or web site link for the same.
    Thanks in Advance
    Rgds,
    Lessly J

    Rushi-Reliance wrote:
    Kindly let us know how to proceed further as we are waiiting some reply from your team.As I already advised in your previous posting (http://forums.sun.com/thread.jspa?threadID=5359095), you are best off re-installing solaris from scratch and installing Communication Suite 6 update 1 if you cannot get Access Manager 7.1 configured.
    Regards
    Shane.

  • Issue with osb + weblogic foreign server AQ configuration

    Hi ,
    I am trying out a scenario wherein, OSB publishes a message onto an Oracle AQ JMS Topic.
    I have created the Foreign Server and have used the Local JNDIs of the connection factory and the destination within my OSB business service. But then, my business service fails to publish the message onto the AQ giving below exception in the server logs:
    "<BEA-169807>There was an error while making the initial connection to the JMS resource named ALSB_JMS_SessionPool_-541341947 from within an EJB or a servlet. The server will attempt the connection again later. The error was oracle.jms.AQjmsException: Error creating the db_connection"
    Below are the configurations that I have used for configuring the foreign server
    Connection Factory - LocalCF | Local JNDI - LocalCF | Remote JNDI - XATopicConnectionFactory
    Destination - ETASNIN | Local JNDI - ETASNIN | Remote JNDI - Topics/ETASNIN
    The Business Service URL: jms://xxxxhost:7011/LocalCF/ETASNIN
    **P.S:** I have tried out the same scenario of interfacing OSB with AQ JMS on a Windows box it works fine... But the above is the case on a UNIX box. Also, I am using PS3 of OSB with 10.3.4 of weblogic server.
    Any Suggestions on this would really help and is much appreciated...
    Thanks,
    Manoj Nair

    Hi Manoj,
    how it was solved?

  • IPlanet WebServer 6.0 with WebSphere Application Server 5.0

    How can I connect WebSphere Application Server with iPlanet WebServer?
    I have start the iplanet and the websphere but my images (that are in
    C:\iPlanet\Servers\<serverId>\images) are not found!
    In WebSpherer ApplicationServer I have jsp, and classes (inside web-inf). In iPlanet WebServer I have html, images,applets and styles.
    Anyone knows why images don't appear? Thanks

    Sounds messy. I wouldn't mix environments like that. You could even end up with different versions of jdk, jsp and servlet specs.
    Just leave the jsp/servlets on websphere, use iplanet for the static pieces. Let the proxy forward the dynamic stuff to websphere. Then you can also have the ability to load balance sessions etc..

  • Will Flex 2 integrate with WebSphere Portal Server

    I have a few questions in trying to argue the case for Flex 2
    to a very large client:
    Will Flex 2 integrate with IBM WebSphere Portal Server ?
    Will Flex 2 integrate with WebSphere if not with Portal
    Server ?
    Does Flex comply to the JSR168 Portlet specification ?

    http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=wsrp_1 .html
    http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=wsrp_2 .html
    http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=wsrp_3 .html

  • How to config AM agent with websphere app server which binded http server??

    Hi, thanks for your concern.
    I am configuing AM policy agent with websphere 6.0 application server , the difference to the normal situation is : the IBM application server is binding with IBM http server so the server can deal with request from the port 80. It puzzled me much what shall I do when I installing the agent, the following are the questions:
    1. Enter the Instance Config Directory: -- shall i use the config folder for "server1" or "webserver1"?
    2. Enter the Server Instance name. -- shall i use the "server1" or "webserver1"?
    3. Enter the preferred port number on which the application server provides its services: -- shall i use "80"(web server) or "9080"(app server) ,
    4. Enter the preferred port number on which the application server provides its services: -- yes i should fill "/agentapp" here, but when i deploy this application, the web module should be "webserver1" or "server1"?
    And yet I only need SSO here , what is the easiest way to configue them well? I do not want to obey the contents from DOC, at fact it makes my websphere crashed ... I think maybe I can use "filter" for application only after I installed the agent, is that right? but it make me crazy that, websphere told me it can not find the class javax.servlet.Filter ... I copied one for it ,but it still can not work. I think maybe I make wrong configuration before .
    Is the document "Sun Java SystemAccess Manager PolicyAgent 2.2 Guide for IBM WebSphereApplication Server 6.0" only for stand alone application server?
    Any help will be most appriciated! thank you!

    If you are trying to install j2ee Agent 2.2 then the below answers may be helpful. i am not sure what webserver1 is ?
    Remeber all config for j2ee agent is for the app server.
    1. Enter the Instance Config Directory: -- shall i use the config folder for "server1" or "webserver1"? You should be using the 1 which your app server is using. The server.xml will be modified for the corresponding server instance.
    2. Enter the Server Instance name. -- shall i use the "server1" or "webserver1"? depends on above config
    3. Enter the preferred port number on which the application server provides its services: -- shall i use "80"(web server) or "9080"(app server) , for j2ee agent ot should be 9080
    4. Enter the preferred port number on which the application server provides its services: -- yes i should fill "/agentapp" here, but when i deploy this application, the web module should be "webserver1" or "server1"?it should be ur app server port.
    And yet I only need SSO here , what is the easiest way to configue them well? try sso_only mode
    I do not want to obey the contents from DOC, at fact it makes my websphere crashed ... I think maybe I can use "filter" for application only after I installed the agent, is that right? without the agent filter in the web.xml the agent wont intercept any traffic.
    but it make me crazy that, websphere told me it can not find the class javax.servlet.Filter ... I copied one for it ,but it still can not work. I think maybe I make wrong configuration before .
    Is the document "Sun Java SystemAccess Manager PolicyAgent 2.2 Guide for IBM WebSphereApplication Server 6.0" only for stand alone application server?
    Follow the SUN Docs strictly and it should work fine.

  • Server Hardware for Oracle Database 11g Release 2 with Oracle Spatial

    Hi ,
    We're to set up an Oracle Database 11g Release 2 Enterprise with Oracle Spatial.
    Can you provide me the possible Server Hardware CPU / Memory specs , number of CPUs,type of OS and teh Model, for Spatial which a million users hits the database via a webservice?
    The vendor suggested us SDD instead of HDD, any performance hike on this?
    Budget seems to okay but I think Exadata will be too dear.
    Your insights is much appreciated.Anything relating to setting up a server with spatial is greatly appreciated.
    P/S: Been a programmer and don't knwo much about server hardware specs.

    It depends.
    Seriously - before anyone can offer anything but generalities here you need to really define exactly what you expect the database to deliver.
    In general however, I will throw out these questions and ideas...
    For instance - you say a million users "hit" the database (via a web service). Is that WFS, WMS, KML or ???
    Over - how long? A year? A month? A minute? A million hits over a year spread out evenly is only about 2 per minute.
    And what is a hit? A single random record? Or about 10,000 records in the same spatial area... or? And for each record - are you returning simple point data - or hugely complex polygons with thousands of vertexes each?
    How does this software work? Is it custom - or is it well known? Does it really query the database for every map (I assume it is a map service) feature - or does it read an area once and cache it in the middle tier? Or does it do something really smart and use cached tiles for static data - overlayed with vectors for dynamic data?
    And although you say Oracle Spatial - are you really using Spatial - or just Locator functions (less processing in general)? And if spatial - are you doing raster in the db - or 3D analysis - or other special functionality?
    SSD vs. HDD. - If you can buy a server with more RAM than the data set size (pretty easy these days) - and you do mostly reads (almost always the case for a map app) - buy a small cheap array of RAID'd HDD's - internal to the server is fine. Once the data is read into RAM - the HDD's do basically nothing.
    Server CPU and memory. Amount - see above. CPU Speed (use performance benchmarks - not GHz numbers) AND memory speed (often overlooked) - buy as fast as possible. Why? You pay for licenses by the core (2 cores per license for x64). And HW is MUCH MUCH MUCH cheaper than Oracle licenses. Plan to upgrade HW every year if necessary to avoid buying more licenses (sounds crazy - but it is much cheaper).
    This may seem like a lot - but these questions are just the tip of the iceberg. I have been in charge of spec'ing, building, and programming spatial systems now for about 20 years, so I have a pretty good idea of how to do enterprise scale computing on a Ramon-noodle budget.
    Smart clean software is your friend - don't ask the HW to do anything unless absolutely necessary (cache results and reuse as much as possible), and you can get crazy performance from minimal hardware.
    Bryan

  • Using Forms  9i/10g with Websphere Application Server

    Hi all,
    We intend to migrate from Forms 6i to Forms 9i/10g. Our enterprise does not support the use of Oracle Application Server. I would therefore like to know if it is possible to use Forms 9i/10g with Websphere.
    Your reply will be highly appreciated.
    Best regards
    Fidix

    Dear Frank Nimphius,
    Hope You will be fine.
    Is there any way we can use Oracle Application Server (Middle Tier) or 10g AS Integration Adaptors or any thing on Middle Tier except Transparent Gateways to access SQL Server using Oracle Forms and Reports 10g.
    Looking Forward.
    Aamer
    [email protected]

  • Synchronization with Mobile Server using Websphere MQ

    Hi!
    Can anybody tell me how to carry out synchronization between Lite and Mobile Server via Websphere MQ messaging system? Unfortunately, in our case MQ queues is the only way to communicate between Mobile client and Mobile Server thus we can't use HTTP-connection what Mobile Server supports. Maybe there're some products what can transmit HTTP requests/responses via message queues (tunneling)?
    Thanks in advance!
    Serguei

    Please contact Oracle Russia, Sergey Danilov +7 095 258 41 80 to get your question answered properly. The answer is yes by implementing your own (message based) transport protocol.

Maybe you are looking for

  • XI to FAX

    Hi We are sending FAX from XI thru Mail adapter with the following TO attribute. "/Name=XXX/com=Vendor Company /Fax=YYYYYY/"<[email protected]> Fax is receving the message, but throwing the error saying "Imaging error encountered, fax abandoned (From

  • Full Screen Flash

    So, I created my Flash movie and set the publish settings to 100% and "No Scale" under the Flash tab. I then add the following code to my head tag as mentioned in the Kirupa article. When I then view my website it still has a color for my background

  • Flash Builder 4 connect to Data/Service

    I am attempting to connect Flash Builder projects to a custom AMF server using the connect to Data/Service tool. I am able to successfully connect to the server and create a service connection. Flash Builder creates a service but does not recognize a

  • AirPort Utility "wizard" setup resets my password

    Hi, I've been having a bizarre problem setting up my Airport network and would appreciate any advice! Basically, after I set up my express to extend a wireless network created by my extreme, the Express's configuration password gets reset. Here's the

  • MPLS for Private WAN between 2 service provider

    Hello All, we are current running an MPLS network from service provider 1 across our Branch office network. we need moe redudnancy and are looking to add another MPLS cloud from service provider 2. How would we integrate service provider 2 onto the s