Hi, Anybody can help me to set an object name to an attribute? I failed to set a jmstopic object to the Parent attribute of a durable subscriber object....
Hello I have recently downloaded version 2.0.2. As per the documentation, there should be a example folder containing atleast the following files : ...
Hello, How to monitor distributed JMS Q using .wlsh script. I'm using following script to monitor it. It's running fine in non-distributed jms q. it's giving...
... Hi, Where are you running the script? Is it going against the admin server, or the JVM which hosts the queue itself? It seems as if you won't have access...
Hi, Can some one provide input on whether current wlshell ver or beta version supports changing config.xml in offline mode? If yes then please share an script...
Hi there! I can't perform a division using "/". Is it supported in 2.0.2? wlsh dev_domain:/> a = new Float 10 variable a set to 10.0 (java.lang.Float) wlsh...
Hi! Could anybody solve this problem already? In previous posts i haven't seen a solution. The problem: when I create az /ExecuteQueue/x: md /ExecuteQueue/x ...
Hi Paco! My suggestion is to put the next code fragment into the method wlshell.jmx.weblogic.queryMBeans(String server, String domain, String type, String...
Hello, I don't understand how to set a DestinationKey of a Topic. I succesfully create a Destination Key and the topic but when I call the method set...
Luciano Just use the addDestinationKey operation of the Topic, here is a sample script: # # this script creates a JMSDestinationKey and # adds the key to an...
Hello, is there a way to break a Ant build script using wlshell if the script generates some error? Some sort of "failOnError=true"... Something like: <target...
At runtime, I need to discover all EJBs that are deployed and also what operations are exposed in their remote/local interfaces? How do I do this with WLShell...
... In your wlsh script use something like ... MAIL=<path-to>/alarm.sh EMAIL=alert@... if $messagesinqueue > $THRESHOLD then CMD=expr(${MAIL} + " " +...
I am trying to run the WL shell Explorer from my windows 2000 Professional Desktop and connect to the Web Logic Server on my Unix machine. Every Time I...
I used the script to create a JMSEventGenerator, but in the WLI console, the Destination JNDI Queue is blank ! How can I with wlshell specify this field ? thx...
I am trying to create jms local queues on each server in a cluster (Each server has a JMS Server). I was hoping to name each queue same. However, after...
Hi All, I am using WL 8.1 SP4 under Solaris 9. If I invoke the wlsh by running the wlsh.sh from wlsh home dir, the explorer also opens up. I do know there is a...
Shiva, Simply remove "explore" from the .wlshrc file. See http://www.wlshell.net/v2/faq.html#disabling-the-explorer Paco ... From: wlshell@yahoogroups.com...
Hi all, I have a problem, in weblogic, when you have a context root like /toto/tata, the name of my WebAppComponentRuntime is "toto/tata". in wlshell, i cant...
Hi All, I had commented out the "explore" part in .wlshrc for some purpose. Now, i am able to get into wlshell prompt without the explorer opening. At the...
Hi All, My perl script contains: system("$ENV{WLSHELLHOME}/bin wlsh.sh -f version.wlsh > version.txt"); where the WLSHELLHOME variable is defined (checked it...
It looks like your system call is missing a forward slash between bin and wlsh.sh. Try using: system("$ENV{WLSHELLHOME}/bin/wlsh.sh -f version.wlsh >...
Hi All, I require to pass few parameters to wlshell script. This is wat I tried. "wlsh.sh -f <sample.wlsh> -v server_name=<machine_name>" In the script, i gave...
This is wat I did: wlsh.sh -f sample.wlsh -v a=<machine_name_port> -v b=<user_name> -v c=<passwd> -v d=<ear_file_name> ... connect $a $b $c ####I am able to...