We needed to invoke the "CreateSubscription" method on an SSRS web service that is hosted in an FBA managed MOSS environment from a custom web part. We kept getting variations of:
- 401: Ці не дазволена
- Перамясціць аб'ект
The "object moved" message was most interesting because it was saying that the "object" (нашай службы SSRS) had "moved" to login.aspx. This clearly meant we had some kind of authentication problem.
У рэшце рэшт я зразумеў, што ў мяне было закладка запіс у блогу by Robert Garret that described how to invoke a general purpose WSS/MOSS web service living inside an FBA environment. Note that I can’t link directly to the article (па стане на 06/09/08) because it wants to authenticate. The link I provide brings you to an "all posts" view and you can locate the specific article by searching for "Accessing MOSS Web Services using Forms Based Authentication".
Вось код, які працаваў на нас:
ReportingService2006 RS = нулявы; // Правяраць сапраўднасць Аўтэнтыфікацыі Auth = новы Ідэнтыфікацыя(); калі (result.ErrorCode == LoginErrorCode.NoError) старацца { rs.CreateSubscription(паведаміць, extSettings, па змяншэнні, типСобытия, matchData, parameters1); } злавіць (Выключэнне былых) { Console.WriteLine(ex.Message.ToString()); } |
Я інтэрпрэтаваць рэчы так працаваць:
- Наш вэб-частка павінна набраць службу праверкі сапраўднасці і сказаць, "Hey, Тоні, гэта я!".
- Адказаў служба Аўтэнтыфікацыя кажучы, "Hey, I know you. How are the kids? Here’s a token."
- Заклікаем SSRS службу і сказаць, "Tony sent me, вось маркер."
</канец>