I want to do a backup using .wlsh script! I tried to use the c2w it only provides resources info, see below. How do I get the total config information not just...
After connecting to my server, I can see my custom MBeans in the heirarchy but seem to be unable to access any of their attributes or operations. I am using...
Hello: Can someone explain how to get a message posted. I have try several times to post messages. Is there a filter reading messages? What is the work flow...
Hi, I am trying to install wlshell in UNIX. I typed in the following command: java -jar install-wlshell-2.0.2.jar I am getting the following error: Exception...
Hi, I am new to wlshell. I am also facing problems installing wlshell in UNIX. I have got it installed in Windows and it's working fine. Can u tell me what...
Hi, I am trying to install wlshell in UNIX by executing the jar file. (java -jar install-wlshell-1_6.jar) But I am getting this error - Can't connect to X11...
David, Due to spam and unsolicited e-mail sent to the list, we decided to moderate the list. I moderate this list. When a message is sent to the list, I review...
Hi, I have been exposed to wlshell very recently, I need to know the licensing issue related to the usage of this s/w. I suppose this is for free, but if it is...
Hi Paco: I have submitted over 15 e-mails posting to your sites and only 2 two ever posted and answers some users questions that never been posted either. So I...
I am calling wlhell from Unix shell script and i want to pass a parameter. For your reference my example is below: I am passing paramter named PHASE (value...
Thanks Tony. I got this done already. We have a Samba server so I mapped the Unix installation directory to Windows and did a Winows installation. Later I...
Hi Paco, I also have this problem. I have a script that tries to connect to the server and get statistics every 10mts or so. Problem is if the server goes down...
Hello, I've got wlshell working well on XP, but when I try to run it on Solaris, I get a problem that's hard to debug. It has no apparent problem connecting...
Hi, From the logs u have attached I think u are getting connected to wlsdomain. You might have tried this already but in case u haven't, type in $CONNECTED at...
Typo mistake was in my mail. But there was no typo error in the script. I always get null values for the fourth param. If I pass only three params, I get the...
Thanks for replying. No, in UNIX shell script, I am using $PHASE sign (variable). Can we pass custom parameter to wlshell? if yes, what is the syntax? Thanks, ...
Helo, You must replace in the wlsh.sh the $1 ... $9 meaning that the wlsh.sh script only take the only 9 parameters by $@ meaning all parameters. Hope that...
Hi, I am trying to install the jar file on solaris and I getting the following error: $ ./install-wlshell-2.0.2.jar Font specified in font.properties not found...
I need to set a field to a java.util.Properties object, but I am doing something wrong. I looked at the code samples and saw an example, but I am doing...
Hi Paco, Is there anyway I can read values from a .properties file from a wlsh script. I am trying to make a monitor script where I can specify the parameters...
Cyriac, With the latest language features in version 2.0.2, that is easy to do: Let's say you have a properties file called "props.properties", then: file =...
Mike, Use an intermediate variable: props = new java.util.Properties $props setProperty "java.naming.security.principal" "weblogic" $props setProperty...
More info on this please. I tried editing the wlsh.sh file. I replaced the line java ${MEM} ${PROPS} wlshell.Main -v WLSHDIR=${WLSHDIR} $1 $2 $3 $4 $5 $6 $7 $8...
Hi Paco, I dont know if these are already known but I am having following 2 issues: 1) The replaceAll method in java.lang.String class is not working in UNIX....
Yes it was I mean. The $@ is used to take all the parameters given to a scripts in stead of taking the first one, the second one, ... For me it solve the...