something like this should address your need:
public class EchoBlockingClient
{
public OMElement sendMsg(SunGroupHClientUtil util, String soapAction)
{
OMElement firstchild = null;
//supply your EPR here
EndpointReference targetEPR=new EndpointReference(
"http://soapinterop.java.sun.com:80/round4/grouph/simplerpcenc");
try
{
Options options = new Options();
options.setTo(targetEPR);
options.setExceptionToBeThrownOnSOAPFault(false);
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
options.setAction(soapAction);
//set options to accept Basic Authentication
options.setProperty(org.apache.axis2.transport.http.HTTPConstants.HTTP_PROXY,
Constants.org.apache.axis2.transport.http.HttpTransportProperties.BasicAuthentication);
options.setUsername("sun");
options.setPassword("tzu");
ServiceClient sender = new ServiceClient();
//apprise client to accept options such as BasicAuthentication
sender.setOptions(options);
options.setTo(targetEPR);
ServiceClient sender = new ServiceClient();
sender.setOptions(options);
options.setTo(targetEPR);
firstchild = sender.sendReceive(util.getEchoOMElement());
}
catch (AxisFault axisFault) { axisFault.printStackTrace(); }
return firstchild;
}
}
hth
Martin
______________________________________________
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung.
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est
interdite. Ce message sert à l'information seulement et n'aura pas n'importe
quel effet légalement obligatoire. Étant donné que les email peuvent facilement
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité
pour le contenu fourni.
Date: Thu, 2 Jun 2011 10:24:01 +0800
Subject: Axis2: wsdl2java with http wuthentication?
From: [email protected]
To: [email protected]
Hello,
I am going to use wsdl2java to generate the proxy stub with Axis2.
But the retrieving of the wsdl requires HTTP basic authentication, how can I do
with wsdl2java? I can't see any options to set the authentication username and
password.
I tried to use "http://ws1:12345678@localhost:8080/PortalWS/TestService?wsdl",
but it just return "HTTP 401 ......".
Would you please to teach me how can I do ?
Best regards,
Eric