I'm trying to get a Silverlight application to connect to a Java webservice using a service reference.
I've come to the conclusion that Silverlight doesn't work the same way as as WPF or ASP.NET with respect to service connectivity.
I've searched the net and all I found for authentication was articles talking about securing the application by user by altering the service to include a webmethod.
I have to use the existing service. I've been using NetworkCredetials in ASP.NET and WPF; what's the equivalent in Silverlight?
Sorry, I should have mentioned that it's an axis service on a JBoss server.
UPDATE: This link seems to indicate that this should be possible http://blogs.msdn.com/coding4fun/archive/2008/02/24/7883342.aspx. They use NetworkCredentials to connect to to the Twitter API.