Windows Develop Bookmark and Share   
 index > Windows Forms Sample Applications > Error Trying to Install Issue Vision
 

Error Trying to Install Issue Vision

I am trying to install issue vision to have a play, but I keep getting this error message.  I am running Windows XP home SP2 and I have SQL Express 2005 installed as well as Visual Studio C# Express

Here is the error message that I am getting

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Data.SqlClient.SqlException: Password validation failed. The password does not meet Windows policy requirements because it is not complex enough.
   at IssueVision.Setup.CD.SelectDB.btnInstall_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
System.Configuration.Install
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.configuration.install/1.0.5000.0__b03f5f7f11d50a3a/system.configuration.install.dll
----------------------------------------
System
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
IssueVision.Setup.CD
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///D:/Program%20Files/IssueVision/1.0/CS/Setup/IssueVision.Setup.CD.dll
----------------------------------------
System.Xml
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Runtime.Serialization.Formatters.Soap
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.runtime.serialization.formatters.soap/1.0.5000.0__b03f5f7f11d50a3a/system.runtime.serialization.formatters.soap.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.DirectoryServices
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.directoryservices/1.0.5000.0__b03f5f7f11d50a3a/system.directoryservices.dll
----------------------------------------
Accessibility
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/accessibility/1.0.5000.0__b03f5f7f11d50a3a/accessibility.dll
----------------------------------------
System.Data
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 1.0.5000.0
    Win32 Version: 1.1.4322.573
    CodeBase: file:///c:/windows/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll
----------------------------------------

************** JIT Debugging **************
To enable just in time (JIT) debugging, the config file for this
application or machine (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the machine
rather than being handled by this dialog.

Any Ideas as to how I can fix this?

Thanks,

Caleb

Caleb Vear  Thursday, November 24, 2005 1:36 PM
Take a look at this other thread http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=94778&SiteID=1 

in the download mentioned there are the sql-scripts, in which you can change the password that 'll be used (search for (the password) IVUser and replace with a stronger pass)
(you can then run these scripts using sql server management studio)

I guess it would be possible to loosen the security on your sql-server instance to accept the IVUser pass, but that wouldn't be so smart i guess :-)
sotto  Wednesday, November 30, 2005 11:13 PM

Take a look here: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=92347&SiteID=1

What I did instead of running a manual DB installis;

(- all as described in the forumlinked toabove)

Once the installer got to the installation DB, I went to

...\Program Files\IssueVision\1.0\CS\Database\SqlServer_IssueVision_Schema.sql

and deleted the line containing:

exec sp_addlogin N'IVUser', N'IVUser', @logindb ...

and replaced it with:

create login IVUser WITH PASSWORD = 'IVUser' , DEFAULT_DATABASE = IssueVision, CHECK_POLICY=OFF;

I then saved the SqlServer_IssueVision_Schema.sql , went back to the installer and proceeded with the installation completing without any further hickups.

Hope this helps.

Asside the little manual script-runevation twist,Full credit isdue to DongbumLee .

Thanx

ND._  Friday, July 07, 2006 9:13 PM
Take a look at this other thread http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=94778&SiteID=1 

in the download mentioned there are the sql-scripts, in which you can change the password that 'll be used (search for (the password) IVUser and replace with a stronger pass)
(you can then run these scripts using sql server management studio)

I guess it would be possible to loosen the security on your sql-server instance to accept the IVUser pass, but that wouldn't be so smart i guess :-)
sotto  Wednesday, November 30, 2005 11:13 PM

Take a look here: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=92347&SiteID=1

What I did instead of running a manual DB installis;

(- all as described in the forumlinked toabove)

Once the installer got to the installation DB, I went to

...\Program Files\IssueVision\1.0\CS\Database\SqlServer_IssueVision_Schema.sql

and deleted the line containing:

exec sp_addlogin N'IVUser', N'IVUser', @logindb ...

and replaced it with:

create login IVUser WITH PASSWORD = 'IVUser' , DEFAULT_DATABASE = IssueVision, CHECK_POLICY=OFF;

I then saved the SqlServer_IssueVision_Schema.sql , went back to the installer and proceeded with the installation completing without any further hickups.

Hope this helps.

Asside the little manual script-runevation twist,Full credit isdue to DongbumLee .

Thanx

ND._  Friday, July 07, 2006 9:13 PM

You can use google to search for other answers

Custom Search

More Threads

• Lots of Views, but no reply
• INameSpaceTreeControl can be resized?
• Walking (Movement)
• Improve mutations, please!
• Application Updater Component
• Smart Client Error,help
• Terrarium .net 2.0 Problem
• DataGrid Selection
• Problem updating Manifest-file.
• IssueVisionWebCS service for Access Database