We have a series of SSIS packages that utilize Kingswaysoft to pull data from AX to send to other applications. I've deployed the packages to my SQL Server and have setup the various environment variables including my connection strings. During development we used our individual usernames/passwords, but I need to be able to use a proxy user and supply the password in my connection string in order to be able to run them through a SQL Job.
I am experiencing problems with my connection string. I've tried working in Visual Studio to setup by the string, test my connection, and copy the string from Properties. The test works fine, but as soon as I put the string into SQL Server, it fails with a message indicating "server is unavailable". We can log onto the AOS server as the proxy user without issue. I can ping the AOS server from the SQL Server as well.
UserName=ISProxy;UserDomain=MyDomain.Int;ProxyUserName=ISProxy;ProxyUserPassword=MyPassword;ProxyUserDomain=MyDomain.Int;ObjectServer=;Company=;Language=;ConfigurationName=;Tenant=;
The problem seems to be specifically with using the Proxy fields in the string. As soon as I put values into these fields I get this error. If I take values out of these fields and just use the UserName and UserDomain fields of the user I am logged into SQL with I can successfully run this package. I've also tried just using the proxy fields, but the UserName and UserDomain fields are required.
What am I missing?
*This post is locked for comments
I have the same question (0)