Apr 04, 2011
12:58 PM
I'm receiving these errors when I'm installing in Console Mode (i.e. ./install.bin -i console): - GUIGroupData.setCaptionsFontColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsFont(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsFontColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsBackgroundColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setLabelsFont(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setLabelsFontColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setCaptionsFont(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setCaptionsFontColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsFont(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsFontColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setControlsBackgroundColor(null) **** A parameter to a method was not available: method not invoked - GUIGroupData.setLabelsFont(null) **** A parameter to a method was not available: method not invoked Any help would be appreciated. Thanks
... View more
Labels
- Labels:
-
InstallAnywhere 2009
Jan 18, 2010
03:38 PM
I'm looking for a way to force the Installer to exit based on the result of a script command or a IA vairable Script: source SYBASE.csh isql -Usa -Ppassword -Userver Output: Msg 4002, Level 14, State 1: Server 'server': Login failed. CT-LIBRARY error: ct_connect(): protocol specific layer: external error: The attempt to connect to the server failed. I was thinking of greping for 'Login failed'. if I find it, I would set the IA variable to some value.
... View more
Labels
- Labels:
-
InstallAnywhere <2008
Dec 16, 2009
11:18 AM
Attached to this post is my project. As you will see in the project, we are trying to see how to set the local script variable so that we can use it when we pass it into the java class. The following part of the script works correctly because we use dbPass2 ,that was set correctly, in the java command parameters: dbPass=`$USER_SUPPLIED_PASSWORD$` echo $dbPass > /opt/dbPass.txt <<< incorrect value echo $USER_SUPPLIED_PASSWORD$ > /opt/userPass.txt <<< correct value dbPass2=`echo $USER_SUPPLIED_PASSWORD$` echo $dbPass2 > /opt/dbPass2.txt <<< incorrect value dbPass3="$USER_SUPPLIED_PASSWORD$" echo $dbPass3 > /opt/dbPass3.txt <<< incorrect value The odd thing is it doesn't work if we just use: dbPass2=`echo $USER_SUPPLIED_PASSWORD$` echo $dbPass2 > /opt/dbPass2.txt Also we've tried to just use $USER_SUPPLIED_PASSWORD$ in the java command parameters. It seems to us that there is a problem with using the IA variable directly
... View more
Dec 14, 2009
09:02 PM
Sorry, I can't post my project but I can send you parts of it. I could strip the project down to the script and the Password Panel if that would help.
... View more
Dec 14, 2009
11:55 AM
Using InstallAnywhere 8.0 I'm trying to use a IA variable coming from Get Password (Panel/Console). The variable is $USER_SUPPLIED_PASSWORD$. I try to use the variable in a script but I'm only get the value of "$". Here is the script that I working with: dbHost=`hostname` dbName=rsdb dbType=SYBASE dbPort=4100 dbUser=sa dbPass=$USER_SUPPLIED_PASSWORD$ echo $DBPASS$ > /opt/dbPass.txt java -cp $NPSCLASSPATH nps/rdbms/db_version_level $dbHost $dbPort $dbName $dbUser $dbPass $dbType After running the installer, I've checked dbPass.txt file and it only contains a "$". What am I doing wrong?
... View more
Labels
- Labels:
-
InstallAnywhere <2008
Dec 03, 2009
09:46 AM
I'm having the same problem. How do you use an IA variable in a batch script? Do you just have to use $VAR_NAME$? In the script I'm trying to pass an IA variable into a java class. java -cp $CLASSPATH className $VAR_NAME$ Are there any problems doing this?
... View more
Latest posts by macd81o0
Subject | Views | Posted |
---|---|---|
4104 | Apr 04, 2011 12:58 PM | |
14163 | Jan 18, 2010 03:38 PM | |
898 | Dec 16, 2009 11:18 AM | |
898 | Dec 14, 2009 09:02 PM | |
15868 | Dec 14, 2009 11:55 AM | |
783 | Dec 03, 2009 09:46 AM |
Activity Feed
- Posted Error During Console (Solaris) Install on InstallAnywhere Forum. Apr 04, 2011 12:58 PM
- Posted How to Force the Installer to Exit based on an IA variable on InstallAnywhere Forum. Jan 18, 2010 03:38 PM
- Posted Dummy Project on InstallAnywhere Forum. Dec 16, 2009 11:18 AM
- Posted Re: Problem using a InstallAnywhere variable on InstallAnywhere Forum. Dec 14, 2009 09:02 PM
- Posted Problem using a InstallAnywhere variable on InstallAnywhere Forum. Dec 14, 2009 11:55 AM
- Posted Problems using IA variables in a script on InstallAnywhere Forum. Dec 03, 2009 09:46 AM