Hello, I'm using a SOAP Webservice (ASMX) which is HTTP Auth secured in my Silverlight Application. How can I pass my Credentials to the Webservice?
bb_webservice = new BlackberryWSSoapClient();
bb_webservice.GetLatestLocationsCompleted += new EventHandler<GetLatestLocationsCompletedEventArgs>(ws_proxy_GetLatestLocationsCompleted);
bb_webservice.GetLatestLocationsAsync(0);
The credentials property isn't provided: http://dl.getdropbox.com/u/357576/ws.jpg
Any Help would be appreciated. Thanks.
rAyt