fiogf49gjkf0d Hi -
I'm having some problems connecting to my database when working with a 3rd part utility for quick deployment of a SalesLogix VFS:
https://github.com/SageSalesLogix/SLXToolsContrib/tree/master/SageDeploymentUtility
My connection string (started from the sample that came with the solution):
<ConnectionString> Provider=SLXOLEDB.1; Persist Security Info=True;Initial Catalog=MY_DATABASE;Data Source=MY_DATABASE_SERVER;
Password=;User ID=admin;Extended Properties="PORT=1706;LOG=ON;SVRCERT=12345;ACTIVITYSECURITY=OFF;TIMEZONE=NONE"</ConnectionString>
The error message I'm getting when trying to run the following code:
using (OleDbConnection connection = new OleDbConnection(connString)){ connection.Open();
Anyone have any experience using this or can see any problems with my connection string? Any assistance is greatly appreciated.
Thanks!
Edit: Seemed to have got it to accept the connection string, but it still seems like it's missing a bunch of files and so the deployment is still failing. Anyone know of any documentation for this utility? I know it's a shot in the dark, but I'm fresh out of options! Thanks!
Edit2: If anyone is following this, it looks like all the errors are based around the following error:
System.IO.FileLoadException: A strongly-named assembly is required. (Exception from HRESULT: 0x80131044)
I know how to strongly-type an assembly, but I wouldn't know how to go about doing it to a SalesLogix VFS
|