Using Windows Authentication from iSeries to vb.basic.net 2010

donalexander

New member
Joined
Sep 6, 2012
Messages
2
Programming Experience
1-3
Hello,
I have created an application in visual basic.net 2010 using iSeries ODBC. Application works fine, but other users from different PC are unable to run the program due to user ID is invalid and password invalid. Error 2800. I am using file DSN below partial snap shot of the App. Config.
<connectionStrings>
<add name="SeminarUploadWindowsApplication.My.MySettings.ConnectionStringFileDSN"
connectionString="Driver={iSeries Access ODBC Driver};system=S10B1163;dftpkglib=QGPL;languageid=ENU;pkg=QGPL/DEFAULT(IBM),2,0,1,0,512;qrystglmt=-1;libview=1;conntype=2"
providerName="System.Data.Odbc" />
</connectionStrings>

The connection string I am using doesn't seems to use Windows Authentication (below)
Driver={iSeries Access ODBC Driver};system=S10B1163;dftpkglib=QGPL;languageid=ENU;pkg=QGPL/DEFAULT(IBM),2,0,1,0,512;qrystglmt=-1;libview=1;conntype=2

I have looked at various websites for string connection, but all with specified user ID and password.
If anybody can give me the proper connection for Windows Authentication from iSeries I would appreciate the help. Thank you.
 
Back
Top