I needed to wire up MOSS to a SQL database via BDC. For testing/POC purposes, I wanted to embed the SQL account user id and password in the ADF. Starting with આ નમૂનો (http://msdn2.microsoft.com/en-us/library/ms564221.aspx), હું ચોક્કસ વપરાશકર્તા ID અને પાસવર્ડ સાથે ચોક્કસ SQL સર્વર ઉદાહરણ અને લોગો સાથે જોડાય છે કે જે ADF બનાવનાર અને આ સ્નીપેટ માં બતાવ્યા પ્રમાણે:
<LobSystemInstances> <LobSystemInstance નામ="ClaimsInstance"> <ગુણધર્મો> <મિલકત નામ="AuthenticationMode" પ્રકાર="System.String">PassThrough</મિલકત> <મિલકત નામ="DatabaseAccessProvider" પ્રકાર="System.String">SqlServer</મિલકત> <મિલકત નામ="RdbConnection ડેટા સ્રોત" પ્રકાર="System.String">વાસ્તવિક સર્વર વાસ્તવિક ઉદાહરણ</મિલકત> <મિલકત નામ="RdbConnection પ્રારંભિક કેટલોગ" પ્રકાર="System.String">વાસ્તવિક પ્રારંભિક સૂચિ</મિલકત> <મિલકત નામ="RdbConnection ઈન્ટિગ્રેટેડ સુરક્ષા" પ્રકાર="System.String">SSPI</મિલકત> <મિલકત નામ="એકત્રીકરણ RdbConnection" પ્રકાર="System.String">ભૂલ ખવડાવનારું</મિલકત> <!-- આ કી કિંમતો છે: --> <મિલકત નામ="RdbConnection વપરાશકર્તા ID" પ્રકાર="System.String">એકctual વપરાશકર્તા ID</મિલકત> <મિલકત નામ="RdbConnection પાસવર્ડ" પ્રકાર="System.String">વાસ્તવિક પાસવર્ડ</મિલકત> <મિલકત નામ="RdbConnection Trusted_Connection" પ્રકાર="System.String">ભૂલ ખવડાવનારું</મિલકત> </ગુણધર્મો> </LobSystemInstance> </LobSystemInstances>
જો તે શ્રેષ્ઠ પ્રથા નથી, but it’s useful for a quick and simple configuration for testing. This was surprisingly difficult to figure out. I never found a functional example with search keywords:
- adf એમ્બેડેડ userid અને પાસવર્ડ
- adf માં વપરાશકર્તા ID અને પાસવર્ડ એમ્બેડ
- adf bdc માં વપરાશકર્તા ID અને પાસવર્ડ એમ્બેડ
- શેરપોઈન્ટ bdc બાળપોથી
- શેરપોઈન્ટ એમ્બેડ વપરાશકર્તા id અને adf માં પાસવર્ડ
</અંત>
Wiht વપરાશકર્તા ID અને પાસવર્ડ ઍક્સેસ કરવાનો પ્રયાસ કરી રહ્યા હોય ત્યારે હું આ વિચાર
A Metadata Exception was constructed in App Domain ‘/LM/W3SVC/1032898172/Root-2-128851566339311184’. આ સંપૂર્ણ અપવાદ લખાણ છે: The LobSystemInstance Property ‘AuthenticationMode’ has a value that requires ‘Integrated Security’ જોડાણ શબ્દમાળા માં
Havie ખૂબ LobsystemInstance જોડાણ સુયોજન સાથે સંઘર્ષ. બધું કામ કર્યું હોય તો તપાસો તમારી ટિપ્પણીઓ વપરાયેલ.
My setting differs in that i have set ‘Integrated security’ તેના બદલે SSPI ખોટા માટે
and ‘rdbconnection Pooling’ સાચું.
કનેક્શન એકત્રીકરણ વિશે મારો નિરીક્ષણ: આ BDC કોઇપણ વપરાશકર્તા માટે જોડાણ શબ્દમાળા બરાબર એ જ હશે કારણ, આ જ જોડાણ સિસ્ટમ દ્વારા ફરીથી અને ઉપર ઉપયોગ કરવામાં આવશે અને તેથી અસરકારક રીતે pooled શકાય. આમ SQL સર્વર બાજુ પર ઓવરહેડ બચત. અથવા હું દુર્લક્ષ કંઈક છે?