Advanced Forum Search Results
-
So it seems like the best way to deal with this is to have a centralized method for calling web services. Is that correct?
-
A control that connects to your exchange server using exchange web services that you can embed in an application. I got the thought from the Microsoft Silverlight demo http://www.mscui.net/ that has a dashboard like control with emails in it.
-
Is there an Exchange Web Service control for Silverlight?
-
Like the user login information.
-
This seems like a lot of work for each call. My call which looked like this:
LogonService.LoginServiceClient client = new LoginTestSA.LogonService.LoginServiceClient();
client.ValidateLoginCompleted += new EventHandler<LoginTestSA.LogonService.ValidateLoginCompletedEventArgs>(client_ValidateLoginCompleted);
Needs to ...
-
I wanted to build a security model that was easy to implement, possibly just decorating web service method calls and allow for the following:
1) Authenticate user on each service call
2) Check to see if user has permission to use a certain web service before running it
3) Ability to track IP's so I can add a feature to deny ...