This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: Custom code eception causes error in installation
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Oct 30, 2008
05:43 AM
Custom code eception causes error in installation
Hi,
during installation I'm executing a custom code that suppose to check connection to a DB.
if the connection isn't created the code throws an exception that I'm catching and showing to the user-in order that he will fix the parameters he entered.
After he fixes the parameters the installation countinus.
My problem is that because of that the IA thinks there was an error in the code and in the install complete panel acts as is there were errors.
the questions is: is there a way to tell IA to ignore exception from that specific action,or do something else that even if there were exception in my custom rule- IA won't treat it as an error?
10x
during installation I'm executing a custom code that suppose to check connection to a DB.
if the connection isn't created the code throws an exception that I'm catching and showing to the user-in order that he will fix the parameters he entered.
After he fixes the parameters the installation countinus.
My problem is that because of that the IA thinks there was an error in the code and in the install complete panel acts as is there were errors.
the questions is: is there a way to tell IA to ignore exception from that specific action,or do something else that even if there were exception in my custom rule- IA won't treat it as an error?
10x
(10) Replies
‎Oct 30, 2008
06:00 AM
alon2580 wrote:
Hi,
during installation I'm executing a custom code that suppose to check connection to a DB.
if the connection isn't created the code throws an exception that I'm catching and showing to the user-in order that he will fix the parameters he entered.
After he fixes the parameters the installation countinus.
My problem is that because of that the IA thinks there was an error in the code and in the install complete panel acts as is there were errors.
the questions is: is there a way to tell IA to ignore exception from that specific action,or do something else that even if there were exception in my custom rule- IA won't treat it as an error?
10x
I am doing almost the same thing....
1.But .. are you asking the user to re-enter the parameters in the INSTALL phase? If yes, you need a panel to get the input from user.. you can't have custom panel in INSTALL phase. So my question is how do you get the new parameters from the user?
‎Oct 30, 2008
07:04 AM
I'm sorry,I didn't explain my self.
I'm using the advanced user input panel and than parsing the input in my custom code.
if I "decide" that the input is wrong I'm using the show message dialog action to notify the user and give him 2 options:1)go back to the advanced user input to correct what he entered.2)Ignore and continue.
if he decide to go back so he needs to fix his input and than the custom code checks his input again and so on.
I'm using the advanced user input panel and than parsing the input in my custom code.
if I "decide" that the input is wrong I'm using the show message dialog action to notify the user and give him 2 options:1)go back to the advanced user input to correct what he entered.2)Ignore and continue.
if he decide to go back so he needs to fix his input and than the custom code checks his input again and so on.
‎Oct 30, 2008
08:48 AM
In your custom code, don't throw an InstallerException. The moment you do, you tell the installer that there was a problem and it won't be "successful" Instead, catch your SQL Exception and set an IA variable. Then you can compare your IA variable to see if it was successful or not.
‎Oct 30, 2008
09:34 AM
so I tried-in did in the first place my class had the "throws InstallException" in its declaration,so I removed it and instead used try and catch for SQLExceptions,but still if SQLException is thrown and catched by the code the installer reports it as an error...
any other idea?
p.s I', posting my code if it's help.
any other idea?
p.s I', posting my code if it's help.
public class DBconnectionTest extends CustomCodeAction
{
public void install( InstallerProxy ip )
{
DB db = new DB();
String messageToDisplay=new String();
String restartNeeded=new String("NO");
//setting the flag for presenting a user to the message to NO-will be chnage in the case of need
Object previousValue=ip.setVariable("MESSAGE_TO_DISPLAY","NO");
//getting the user input.
String host = ip.substitute("$USER_HOST$") ;
String port = ip.substitute("$USER_PORT$") ;
String userName = ip.substitute("$USERNAME_TABLES$") ;
String password = ip.substitute("$PASSWORD_TABLES$") ;
String databaseName = ip.substitute("$DATABASE_NAME$");
Connection conn=db.dbConnect("jdbc:jtds:sqlserver://"+host+":"+port,userName,password);
db.setDatabaseName(databaseName);
if(conn!=null) //meaning there is a connection
{
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
conn=db.dbConnect("jdbc:jtds:sqlserver://"+host+":"+port+"/"+databaseName,userName,password);
if(conn!=null)
{
Long dbVersion=new Long(-1);//for intialization
try {
if((dbVersion=db.checkVersion(conn))!=0)
{
String dataBaseVersion = ip.substitute("$DBVERSION$") ;
Long serverVersion=new Long(dataBaseVersion);
if(!db.compareVersion(dbVersion,serverVersion))
{
messageToDisplay = messageToDisplay.concat("The version of the server and the version of the database do not match."
+"\nPlease delete the existing database and rerun the installer");
restartNeeded="YES";
}
}
else
{
if(!db.createTables(conn))
{
messageToDisplay = messageToDisplay.concat("The connection to DB server succeeded, but creation of a table in "+databaseName+" database failed:\n");
messageToDisplay = messageToDisplay.concat(db.getMessge());
messageToDisplay = messageToDisplay.concat("\nPlease check that the user has sufficient permissions and that the server allows to create a table");
}
}
} catch (SQLException e) {
e.printStackTrace();
}
}
else
{
conn=db.dbConnect("jdbc:jtds:sqlserver://"+host+":"+port,userName,password);
try {
if(!db.createDB(conn))
{
messageToDisplay = messageToDisplay.concat("The connection to DB server succeeded, but creation of "+databaseName+" database failed:\n");
messageToDisplay = messageToDisplay.concat(db.getMessge());
messageToDisplay = messageToDisplay.concat("\nPlease check that the user has sufficient permissions and that the server allows to create "+databaseName+" database");
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
else
{ //meaning there is no connection-checking if this its worng credentials or DB not exist
messageToDisplay = messageToDisplay.concat("Can't connect to the database server: \n");
messageToDisplay = messageToDisplay.concat(db.getMessge());
messageToDisplay = messageToDisplay.concat("\nPlease check and correct the connection parameters");
}
if(messageToDisplay.length()!=0)
{
Object previousValue2=ip.setVariable("MESSAGE_TO_DISPLAY",messageToDisplay);
Object previousValue3=ip.setVariable("RESTART_NEEDED",restartNeeded);
}
}
‎Oct 30, 2008
11:35 AM
alon2580 wrote:
I'm sorry,I didn't explain my self.
I'm using the advanced user input panel and than parsing the input in my custom code.
if I "decide" that the input is wrong I'm using the show message dialog action to notify the user and give him 2 options:1)go back to the advanced user input to correct what he entered.2)Ignore and continue.
if he decide to go back so he needs to fix his input and than the custom code checks his input again and so on.
So you do this in PRE-INSTALL step .. and as user inputs parameter you try to make connection to the database ... rite?
yes .. using IA variable would better idea than .. throwing a exception
‎Oct 30, 2008
11:43 AM
In your code..
do not change the declaration ... let it be install(... ) throws InstallException
When you catch the sqlException .. set $some_variable$= false
then show the message dialog if the variable is "false" and go back to the previous panel
do not change the declaration ... let it be install(... ) throws InstallException
When you catch the sqlException .. set $some_variable$= false
then show the message dialog if the variable is "false" and go back to the previous panel
‎Oct 30, 2008
12:30 PM
if I understand what you suggested right-that is exactly what I do.
at the beginning of the code you can see:
Object previousValue=ip.setVariable("MESSAGE_TO_DISPLAY","NO");
now-if I catch an sqlEception I writing its cause(I'm doing that in another class-DB, which I didn't post here)to a string and than concating that string to the message I want to dislplay to the user: "messageToDisplay = messageToDisplay.concat...." and than at the end of the code I'm checking the length of messageToDisplay and it's not null I'm changing the variable "MESSAGE_TO_DISPLAY" that I set to "NO" at the beginning to the new value.
all that I'm doing in the code-IA checks the value of "MESSAGE_TO_DISPLAY" and if it differs from "NO" it prompts the user with a message panel.
that is what you meant right? if so-it doesn't work :mad:
at the beginning of the code you can see:
Object previousValue=ip.setVariable("MESSAGE_TO_DISPLAY","NO");
now-if I catch an sqlEception I writing its cause(I'm doing that in another class-DB, which I didn't post here)to a string and than concating that string to the message I want to dislplay to the user: "messageToDisplay = messageToDisplay.concat...." and than at the end of the code I'm checking the length of messageToDisplay and it's not null I'm changing the variable "MESSAGE_TO_DISPLAY" that I set to "NO" at the beginning to the new value.
all that I'm doing in the code-IA checks the value of "MESSAGE_TO_DISPLAY" and if it differs from "NO" it prompts the user with a message panel.
that is what you meant right? if so-it doesn't work :mad:
‎Oct 30, 2008
01:07 PM
the function should be
public void install( InstallerProxy ip ) throws InstallException
{
// your code
}
Did you check the debug output if there is any exception?
there must be some error in installation log also.
public void install( InstallerProxy ip ) throws InstallException
{
// your code
}
Did you check the debug output if there is any exception?
there must be some error in installation log also.
‎Oct 30, 2008
02:27 PM
I did what you suggested and I found out what was the problem.
in my code I have this line
String dataBaseVersion = ip.substitute("$DBVERSION$")
to get the value of DBVERSION variable-the problem is that in my development machine this value is not set to a reasonable value-only during a build a replace this value with a real one-hence it has a problem retrieving this value and that was the exception.
Thank you very fro your help!
in my code I have this line
String dataBaseVersion = ip.substitute("$DBVERSION$")
to get the value of DBVERSION variable-the problem is that in my development machine this value is not set to a reasonable value-only during a build a replace this value with a real one-hence it has a problem retrieving this value and that was the exception.
Thank you very fro your help!