Using CRM Web Api with SSO hosted environment
I can easily connect the CRM web api to an on prem installed setup with the following code.
Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService appFxWebService = new Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService
{
Url = "http://crmdev01/bbappfx/AppFxWebService.asmx",
Credentials = System.Net.CredentialCache.DefaultNetworkCredentials
};
But if I can not figure out how to connect to a hosted environment with SSO.
Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService appFxWebService = new Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService
{
Url = "http://crmdev01/bbappfx/AppFxWebService.asmx",
Credentials = System.Net.CredentialCache.DefaultNetworkCredentials
};
But if I can not figure out how to connect to a hosted environment with SSO.
0
Comments
-
Try the following block of code and see if it doesn't work for you:
/* In the blow code you would replace someusername with the username of the SSO account, and you'd also replace abc123 with the password of the SSO account */System.Net.NetworkCredential customCredentials = new System.Net.NetworkCredential("someusername", "abc123");Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService appFxWebService = new Blackbaud.AppFx.WebAPI.ServiceProxy.AppFxWebService
{
Url = "http://crmdev01/bbappfx/AppFxWebService.asmx",
Credentials = customCredentials
};
Also you're gonna want to make sure that the url is the url to your SSO hosted environment and that whatever machine you run the API on has permissions on your hosted environment.0
Categories
- All Categories
- 6 Blackbaud Community Help
- 209 bbcon®
- 1.4K Blackbaud Altru®
- 395 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.5K Blackbaud Financial Edge NXT®
- 648 Blackbaud Grantmaking™
- 566 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 937 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.5K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 247 ResearchPoint™
- 118 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 239 The Tap (Just for Fun)
- 33 Blackbaud Community Challenges
- 31 PowerUp Challenges
- 3 (Open) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 782 Community News
- 2.9K Jobs Board
- 53 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
