I had the same problem. I solved it by using a java.net.Authenticator 
implementation.


class AuthImpl extends java.net.Authenticator
  | {
  |    ...
  | 
  |    PasswordAuthentication getPasswordAuthentication()
  |    {
  |       return your credentials here
  |    }
  |    ...
  | }
Before you read the WSDL do something like this

Authenticator.setDefault(new AuthImpl(...));

At least in my case it worked.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905607#3905607

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3905607


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to