vote up 0 vote down star

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.

flag

75% accept rate

1 Answer

vote up 0 vote down

Does the web service have a clientaccesspolicy.xml or crossdomain.xml policy file?

http://msdn.microsoft.com/en-us/library/cc197955(VS.95).aspx

link|flag
Yes. I had both in place. I believe they were deployed correctly to the root of the Web server that has the Axis service. I need to satisfy the Axis services need to connection authentication. In ASP or WPF I just used the Network Credentials. I don't see a way to do this with SL WCF. – Fireworks Mar 31 at 16:48
Connection authentication meaning on the request to the service, not whether the calling SL app can call that Axis service. Basically the Axis service is doing it's own forms authentication style authentication. – Fireworks Mar 31 at 16:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.