Unable to use Server UTIL to browse JMS destinations

Hello All,
I am using the following command to browse the destination in the Application server system,
java com.evermind.server.jms.JMSServerUtils -port 9129 -username oc4jadmin -password welcome1 browse jms/demoTopic
But it gives the following error (I have given the port number as 9129 as my OC4INSTANCE installed for ESB, BPEL has this port),
Oracle Containers for J2EE 10g (10.1.3.3.0) (build "070610.1800.23513"), OC4J JMS 1.1
javax.jms.JMSException: Unable to create a connection to "/0.0.0.0:9,129" as user "oc4jadmin".
at com.evermind.server.jms.JMSUtils.make(JMSUtils.java:1075)
at com.evermind.server.jms.JMSUtils.toJMSException(JMSUtils.java:1155)
at com.evermind.server.jms.EvermindConnection.<init>(EvermindConnection.java:130)
at com.evermind.server.jms.EvermindConnectionFactory.unprivileged_createConnection(EvermindConnectionFactory.java:131)
at com.evermind.server.jms.EvermindConnectionFactory.access$000(EvermindConnectionFactory.java:45)
at com.evermind.server.jms.EvermindConnectionFactory$1.execute(EvermindConnectionFactory.java:114)
at com.evermind.server.jms.RemoteClientProxy.doSecureOp(RemoteClientProxy.java:94)
at com.evermind.server.jms.EvermindConnectionFactory.createConnection(EvermindConnectionFactory.java:111)
at com.evermind.server.jms.EvermindConnectionFactory.createConnection(EvermindConnectionFactory.java:102)
at com.evermind.server.jms.JMSServerUtils.internalScan(JMSServerUtils.java:665)
at com.evermind.server.jms.JMSServerUtils.scan(JMSServerUtils.java:640)
at com.evermind.server.jms.JMSServerUtils.main(JMSServerUtils.java:191)
Caused by: java.lang.NullPointerException
at com.evermind.server.jms.TCPJMSRemoteServer.initializeConnection(TCPJMSRemoteServer.java:152)
at com.evermind.server.jms.TCPJMSRemoteServer.initializeConnection(TCPJMSRemoteServer.java:110)
at com.evermind.server.jms.TCPJMSRemoteServer.<init>(TCPJMSRemoteServer.java:68)
at com.evermind.server.jms.EvermindConnection.<init>(EvermindConnection.java:122)
... 9 more
Please let me know where is the issue ?
I am able to log onto application server using those credentials.
Thanks
Nags.

Hi Gurus,
I am facing similar problem as the first post in this thread.
I have created a file persistent queue called TRAINING_FILEPERSIST_QUEUE, and have inserted a message in it( verified using the JMX browser).
Here is the message it shows
<textmessage>
<header>
<JMSCorrelationID value="" />
<JMSDeliveryMode value="PERSISTENT" />
<JMSDestination value="Queue[TRAINING_FILEPERSIST_QUEUE]" />
<JMSExpiration value="0" />
<JMSMessageID value="ID:Oc4jJMS.Message.personal.6e320096:12287e016b3:-8000.1115" />
<JMSPriority value="4" />
<JMSRedelivered value="false" />
<JMSReplyTo value="null" />
<JMSTimestamp value="1247841141640" />
<JMSType value="" />
</header>
<properties>
<string key="JMSXConsumerTXID" value="" />
<int key="JMSXDeliveryCount" value="1" />
<string key="JMSXProducerTXID" value="" />
<long key="JMSXRcvTimestamp" value="1247844938531" />
<string key="JMSXUserID" value="oc4jadmin" />
<string key="JMS_OC4J_Type" value="textmessage" />
</properties>
<textbody>
<string value="Ponting,m,30
Waugh,m,30
Bradman,m,35
" />
</textbody>
</textmessage>
Now I am using the following command in the developer prompt to browse the queue:
java com.evermind.server.jms.JMSServerUtils -port 12602 -username oc4jadmin -password welcome1 browse TRAINING_FILEPERSIST_QUEUE
but it gives the following error
Oracle Containers for J2EE 10g (10.1.3.1.0) (build "061008.0900.00025"), OC4J J
MS 1.1
javax.jms.JMSException: TRAINING_FILEPERSIST_QUEUE: destination "Connection[Oc4j
JMS.Connection.personal.17685f93:122895c9c84:-8000.1]" is unknown in connection
"{2}".
at com.evermind.server.jms.JMSUtils.make(JMSUtils.java:1072)
at com.evermind.server.jms.JMSUtils.toJMSException(JMSUtils.java:1152)
at com.evermind.server.jms.JMSUtils.toJMSException(JMSUtils.java:1123)
at com.evermind.server.jms.JMSServerUtils.internalScan(JMSServerUtils.ja
va:672)
at com.evermind.server.jms.JMSServerUtils.scan(JMSServerUtils.java:640)
at com.evermind.server.jms.JMSServerUtils.main(JMSServerUtils.java:191)
Any idea what am I doing wrong.

Similar Messages

  • Browse jms destinations on managed servers (from admin server)

    I need to browse JMS destinations from the admin server (in a WebLogic
    9.2 console extension) that are only deployed on the managed servers.
    I can get destination attributes via the domain runtime server, but
    no JNDI or actually browse the destinations. All destinations in
    which I am interested are queues.
    I know I can change my initial context, but if that is the way to go, is there a way to determine the managed
    servers' URLs at runtime?
    Thank you for any help,
    Seth

    hi
    this worked for me (on 8.1). I suppose there are
    better ways in 9.2
    Context adminCtx = null;
    adminCtx = getInitialContextForAdminServer();
    MBeanHome adminhome = (MBeanHome)
    adminCtx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    // Get the list of running managed
    ning managed servers and iterate over itSet
    Set srSet =
    Set srSet =
    adminhome.getMBeansByType("ServerRuntime");
    Iterator sr_iter = srSet.iterator();
    while (sr_iter.hasNext())
    ServerRuntimeMBean bean =
    timeMBean bean = (ServerRuntimeMBean) sr_iter.next();
    // Get the home for the managed
    for the managed server
    MBeanHome remoteHome = (MBeanHome)
    me = (MBeanHome) adminCtx.lookup(MBeanHome.JNDI_NAME
    + "." + bean.getName());
    // Get the MBeanServer for the
    anServer for the managed server
    MBeanServer rmbs =
    eanServer rmbs = remoteHome.getMBeanServer();
    //invoke it
    ObjectName objectName= new
    objectName= new ObjectName("$mbean");
    rmbs.invoke(objectName,operation,params,types);
    Edited by deepshet at 05/05/2007 10:00 AMThank you for the help.
    MBeanHome is deprecated as of 9.0, so I was unable to directly use your example. You have helped though, thank you.
    As of now I am querying the domain runtime server for:
    ObjectName("com.bea:*,Type=ServerRuntime")
    I am then iterating through the returned Set to get the server URLs and then setting my InitialContext with a PROVIDER_URL of the managed servers. This allows me to Look Up a Destination without JNDI based on step 4 from [url http://edocs.bea.com/wls/docs92/jms/implement.html#wp1313933]here. I can then browse as needed.
    The ugly part is that if I include the Admin URL in my PROVIDER_URL then it does not work, so I am checking for it as I loop through the set of ServerRuntimes and not including it.
    Further though slightly less annoying is that the managed server URLs include "t3://" but if I leave it in there, a malformed URL exception is thrown when setting the PROVIDER_URL. So I also remove all of those and then preppend one on the front for PROVIDER_URL as I actually need.
    It is not pretty, but it is working on the only cluster I have been able to try thus far.
    If anyone was a cleaner suggestion, please share.

  • Applications :: Unable To Use Safari / Google Safe Browsing Service Unavailable

    Applications :: Unable To Use Safari / Google Safe Browsing Service Unavailable

    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.
    Thanks to leonie for some information contained in this.

  • Safari EBAY ISSUES - Unable to use eBay within any browser.

    Hello,
    Since installing leopard (fresh install) and using safari 3 I have been unable to use eBay on many occasions (only working randomly). However strangely when safari is playing up, no other browser (opera, ff, camio) can access ebay. I realise that ebay uses webkit to render pages and other browsers use various rendering engines so other browsers using alternate render engines should be able to access it unaffected.
    All other webpages can be accessed, only ebay.
    Please help.
    Confused!!!
    Many thanks,
    Matthew.

    Hi,
    This is a bit of a low-tech idea, but have you tried rebooting/powering off/on your modem/router? Occasionally you hear of modems/routers playing up for one requested site and a proverbial kick up the back-side fixes it
    If that doesn't work, maybe the DNS servers of your ISP are acting up and not replying with the correct information. Try using those provided by [OpenDNS|www.opendns.com/start] to see if it helps matters or not.
    Let us know how you get on.

  • Unable to use Disk Utility to repair disk.

    Hi all
    I have been having some problems trying to transfer movies from computer to my iPod. Someone just suggested that I use Disk Utility to verify disk permissions, as well as the disk. I was able to verify disk permissions and repair them. Noticed the some had something to do with iTunes, so that might fix my problem with transferring movies to my iPod. I then tried to verify the disk, but I got the following error "Error: The underlying task reported failure on exit." Also this program shows that the following "Checking volume bitmap.
    Volume Bit Map needs minor repair
    Checking volume information.
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair"
    The <Repair Disk> button is not darkened, but is grey, such that is not an option. Any other way to repair this disk.
    Thanks
    Michael

    The startup drive can only be repaired from another drive.
    You have to boot from the install disk.
    To do this: Insert the Install Disk 1 into the drive and then select Restart; when you hear the chime hold down C key until the apple logo appears.
    This will take you to the installation software, but you do not want to install.
    Select your language, then go up to the top menu bar to Utilities in 10.4 and navigate to the Disk Utility application.
    Select the start up drive, then go to the First Aid pane where you can click on Repair Disk.
    If it finds errors, repeat the process until it reports no errors.
    After these repairs, quit the application, and restart normally.
    Once restarted normally run Repair Permissions from the Disk Utility application found on your hard drive in Application/Utilities.

  • Unable to use AOL Desktop Browser

    Hi,
    The last couple of days we've been unable to use the AOL Destop Browser with a BT connection. My mother prefers this browser despite advising her to use Chrome/Firefox/IE several times but now she is unable to. I phoned AOL and was told following some sort of recent BT server update AOL were blocked. I contacted BT but they were unable to help. Not sure why it was necessary to block AOL but yeah, for my mother's sake it would be good if we could use the AOL browser again.
    Thanks

    Finfinity wrote:
    Hi,
    The last couple of days we've been unable to use the AOL Destop Browser with a BT connection. My mother prefers this browser despite advising her to use Chrome/Firefox/IE several times but now she is unable to. I phoned AOL and was told following some sort of recent BT server update AOL were blocked. I contacted BT but they were unable to help. Not sure why it was necessary to block AOL but yeah, for my mother's sake it would be good if we could use the AOL browser again.
    Thanks
    Hi.
    You imply she was able to use the AOL browser until a couple of days ago.
    The AOL browser may have some dedicated settings, aimed purely at AOL users. Things like automated configuration settings and all sorts of things could be set (tools/internet options in IE).
    Not sure about the BT server update, and would question whether AOL are just fobbing you off.
    Frankly things do change, and moving ISPs can mean a new learning curve for some - particularly from AOL with their own stuff. Might be worth getting her to try Firefox (for e.g.) again. If the AOL browser isn't going to work, then she'll have to.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • HT5167 I've update my Mac to the new Lion OS but I'm unable to use my Safari...Anyone knows why & how to fix it? Thx

    I've updated my Mac to the new Lion OS & now I'm unable to use my Safari to browse; any one has similar experience with the new Lion OS & can help

    https://discussions.apple.com/thread/4251807

  • I am using server and client systems when i am trying to open the browser in two or more machines it says that firefox is already running, i want to open the browser in all machines simeltaniously

    I am using server and clients machines in my office, here i want to open browsers in all systems simultaneously but i am unable open the browser, when i am trying to open the browser in the second machine it says that firefox is already open... pls. solve this problem
    Thank you

    You can't open one Profile more than once. You need a separate Profile for each browser on each PC that you open.
    https://support.mozilla.com/en-US/kb/Profiles

  • MDB cannot connect to JMS destination using Foreign Server

    Hi everyone,
    I have configured foreign jms server in weblogic but when MDB tries to connect to specific queue, it gets the following exception:
    I would really appreciate if anyone could help me.
    <Sep 28, 2012 5:23:34 PM CEST> <Warning> <EJB> <BEA-010096> <The Message-Driven EJB: SmsReceiver is unable to connect to the JMS destination or bind to JCA resource adapter: xcg2/smsInQueue. Connection failed after 2 attempts. The MDB will attempt to reconnect/rebind every 10 seconds. This log message will repeat every 600 seconds until the condition clears.>
    <Sep 28, 2012 5:23:34 PM CEST> <Warning> <EJB> <BEA-010061> <The Message-Driven EJB: SmsReceiver is unable to connect to the JMS destination: xcg2/smsInQueue. The Error was:
    [EJB:011010]The JMS destination with the JNDI name: jmsxcg.out could not be found. Please ensure that the JNDI name in the weblogic-ejb-jar.xml or corresponding annotation is correct, and the JMS destination has been deployed.
    javax.naming.InvalidNameException: jmsxcg.out: [LDAP: error code 34 - Invalid DN]; remaining name 'jmsxcg.out' NestedException Message is :jmsxcg.out: [LDAP: error code 34 - Invalid DN]>
    MDB annotation looks like this:
    @MessageDriven(name="SmsReceiver", mappedName="xcg2/smsInQueue",
    activationConfig = {
    @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue")
    @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
    public class SmsReceiverBean implements MessageListener
    weblogic-ejb-jar.xml excerpt:
         <weblogic-enterprise-bean>
              <ejb-name>SmsReceiver</ejb-name>
              <message-driven-descriptor>
                   <pool>
                        <max-beans-in-free-pool>10</max-beans-in-free-pool>
                        <initial-beans-in-free-pool>5</initial-beans-in-free-pool>
                   </pool>
                   <connection-factory-jndi-name>echoQueueConnectionFactory</connection-factory-jndi-name>
              </message-driven-descriptor>
              <transaction-descriptor>
                   <trans-timeout-seconds>600</trans-timeout-seconds>
              </transaction-descriptor>
    <dispatch-policy>MdbSmsWorkManager</dispatch-policy>
         </weblogic-enterprise-bean>
    and the configuration of foreign-server:
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-jms xmlns="http://www.bea.com/ns/weblogic/weblogic-jms">
    <foreign-server name="serverr">
    <sub-deployment-name>Subdeployment</sub-deployment-name>
    <foreign-destination name="sms queue>
    <local-jndi-name>xcg2/smsInQueue</local-jndi-name>
    <remote-jndi-name>jmsxcg.out</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name="Connection Factory">
    <local-jndi-name>echoQueueConnectionFactory</local-jndi-name>
    <remote-jndi-name>QueueConnectionFactory</remote-jndi-name>
    </foreign-connection-factory>
    <initial-context-factory>com.tibco.tibjms.naming.TibjmsInitialContextFactory</initial-context-factory>
    <connection-url>tibjmsnaming://xx.xx.xx.xx:7222</connection-url>
    </foreign-server>
    </weblogic-jms>
    PS. I'm able to connect to the weblogic jndi, get connectionFactory echoQueueConnectionFactory, then lookup queue and grab messages so that's i suspect there is something wrong with configuration

    Hmm - I'm not sure what's going on. Two thoughts --
    Thought 1 - According to my (admittedly minimal) research, Tibco is complaining about a syntax error in the lookup name. Perhaps the problem has something to do with your use of a "." in the queue name "jmsxcg.out": WL or Tibco JNDI might be interpreting the "." as a subcontext or some-such. Perhaps try renaming the queue to "jmsxcg_out" throughout (in Tibco and in your Foreign JMS reference).
    Thought 2 - It probably won't make a difference, but you might want try specifying the source destination via the "destinationJndiName" config property instead of via "mappedName".
    @MessageDriven(
      name = "MyMDB",
      activationConfig = {
        @ActivationConfigProperty(propertyName  = "destinationType",
                                  propertyValue = "javax.jms.Queue"),
        @ActivationConfigProperty(propertyName  = "destinationJndiName",
                                  propertyValue = "MyQueue") // Ext. JNDI Name
    )HTH,
    Tom

  • Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs.

    Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs. can't get any further - Tried all suggestions like clearing browser caches but no change.
    Got a couple of projects i wanted to try this on and if the software works I will probably take a subscription but considering this isn't working at all will look elsewhere.
    Also - adobe live chat support is useless.

    Hi,
    please share the Adobe ID that you are using with DL-AdobeStory-support<at>adobe<dot>com and we will investigate the issue.
    Thanks
    Aurobinda

  • Unable to load metadata using outlineload utility in Hyperion planning classic app

    Hi All,
    We are trying to update metadata into classic planning application using outlineload utility, but we are facing error as given below::
    at com.hyperion.planning.utils.HspOutlineLoad.main(Unknown Source)
    Error encountered with Database connection, recreating connections.
    Nested Excetpion: java.sql.SQLSyntaxErrorException: ORA-00942: table or view doe
    s not exist
    Query Failed: SQL_DELETE_EXPIRED_EXTERNAL_ACTIONS:[100]
    java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist 
    Please suggest a way to solve this issue.
    Regards,
    Mahaveer

    Looks like its sequence issue. Can you check if HSP_ACTION_ID_SEQ sequence is available for this planning application.
    Check this :
    Unable to update Dimension Security on a Load Balanced Planning Environment (Doc ID 1058156.1)
    Hope this help!
    Sh!va

  • HT3275 I continue to get the following error message: Unable to complete back up.an error occurred while creating backup folder. It's a brand new drive. When I attempt to repair it using disk utility I get:unable to repair disk cannot unmounted

    I have been trying to use time machine on a new lacie 2tb usb 2 drive for back up. I continue to get: "unable to complete backup.An error occured while creating backup folder". When I use disk utility to repair I get another error message: unable to repair disk unmountable.
    Help me Obie One Canobie you are my last hope

    I have confused myself with the facts!  Started out keeping track of every step and every variable but have sort of lost it as we progress here.  First I quit all applications then swapped connections between mouse port and backup disk port to influence possible bad connections question.  Changed power outlet receptacle for the backup disk. Disabled the put-the-HD-to-sleep option.  Then powered down the computerator.
    Next started up computerator.  Turned Time Machine ON  and experienced multiple successful backups!  Then I started up a few applications, Mail and Text Edit (but not Safari so far).  Had a few more successes.  After each backup, I used Disk Utility to verify the backup disk is still OK.  This because the error about unable to unmount the backup disk seems to go hand in hand with Disk Utility finding the backup disk to be bad.
    Put computer to sleep for the night.  Upon starting up in the morning, and before doing anything else, I did a backup disk verification... BAD!   Did a restart and verified the backup disk... OK.
    Did a few    Sleep-bad, Restart -OK    repetitions.
    It seems consistent:  Sleeping the computer apparently messes up the backup disk but doing a Restart "repairs" it.
    =============================
    Now then, I don't understand everything I know here.  Methinks that maybe keeping the HD from sleeping during lulls in activity has allowed successful backups through the day but manually putting everything to sleep for the night causes a return to the problem of spinning-back-up-too-slowly (which was explained earlier).  Is there any truth in this?
    I may abandon this Seagate thing for something more compatible.  What's out there that we know works reliably for us?

  • Using Disc Utility to copy my hard drive to a brand new external drive and am having the error "Unable to create...(Cannot allocate memory)".

    I'm not very tech savvy but am trying my best to use Disc Utility to copy my hard drive to a brand new external drive and am having the error "Unable to create...(Cannot allocate memory)".
    Last night no problems, woke this morning and it was freezing so I forced a restart and got the grey screen with the folder and question mark. Ran off to best buy to get an external drive... Please help! Thank you!

    I have done both. When I hold down the "C" key it pauses for a few seconds while the cd spins and then the flashing folder icon appears.
    Could be you have the wrong cd/dvd.  The mac will only boot a supported cd/dvd for your machine. The flashing question mark indicdates your machine could not find a valid os.
    When I hold down the "option" key for the startup manager the cursor comes up and moves but the actually manager doesn't come up no matter how long I leave the laptop on.
    Not sure.  Could be your machine does not support the startup manager. You would think the machine would ignore the key.
    Where did you get the dvd?  What is the number on the DVD?
    What machine do you have anyway?
    This site provides more information, but lacks security.
    "A serial number is a unique, identifying number or group of numbers and letters assigned to an individual piece of hardware or software. It's used for various things depending on the product / brand but what is your Mac's serial number for and more importantly... what is it hiding and what can it do for you ?"
    http://www.appleserialnumberinfo.com/Desktop/index.php
    or
    This site provides more information, but lacks security too.
    "A serial number is a unique, identifying number or group of numbers and letters assigned to an individual piece of hardware or software. It's used for various things depending on the product / brand but what is your Mac's serial number for and more importantly... what is it hiding and what can it do for you ?"
    http://www.appleserialnumberinfo.com/Desktop/index.php
    http://www.chipmunk.nl/klantenservice/applemodel.html
        ( hint by K Shaffer  )

  • I am unable to use Muse in-browser editing. I have an active site, but when I enter my site plus /admin, the graphic dots move but the site goes nowhere and I am never given a chance to enter my email and password. I would greatly appreciate any help. I a

    I am unable to use Muse in-browser editing. I have followed the activation instructions both in Muse and invited users. I have an active site, but when I enter my site URL plus /admin, the graphic dots move but the site goes nowhere and I am never given a chance to enter my email and password. I would greatly appreciate any help. I am thanking you in advance, Bleu

    I'd keep trying the other way. You may have hit it when BC was doing an update or something. If it works one way it should work the other way. But sometimes BC can be kind of temperamental and you have to do a little dance or something to get it to work. But it generally comes around and fixes itself in short time.
    Have you tried the other way again?

  • I am unable to view ATV settings from iMac using AirPort utility

    I am unable to view ATV settings from iMac using AirPort utility. Having problems with ATV quitting Airplay since recently updating.

    I was interested to know if I could configure, or at least view the settings of my ATV from a Mac computer. This is because I have it connected to a projector rather than a HD TV and so it is not always convenient to view settings directly from the ATV display.
    Anyway I tried finding it using Airport Utility and it does not show up (Mavericks running Airport Utility 6.3.2 on one iMac and Snow Leopard running 5.6.1 on another).
    When I click on File>Connect Other it asks for an IP address and password. I doubt if knowing these would allow me to connect.
    The ability view settings and configure ATV from Airport Utility would be a useful feature. We should suggest this to Apple via feedback:
    http://www.apple.com/feedback/appletv.html

Maybe you are looking for