Ok, thanks. I was trying to make a SOAP call to an https service like so,
private Object invoke(String operationName, Object... params) throws
ServiceException, MalformedURLException, RemoteException {
String endpoint = WEB_SERVICE_URL;
Service service = new Service();
Call call = (Call) service.createCall();
call.setUsername(USERNAME);
call.setPassword(PASSWORD);
call.setTargetEndpointAddress(new URL(endpoint));
call.setOperationName(operationName);
Object ret = call.invoke(params);
return ret;
}
But I would still get the error "This service method requires user
authentication. Username/password is required.". Do you know if wss4j
has the solution? Or am I looking in the wrong place?
Jos� M. Selman wrote:
As far as I know there are no binaries available for download since
there hasn't been an official release. You need to check out the
source from CVS and build ir using either Ant or Maven.
Cheers,
Jos� M. Selman
Sean Shubin wrote:
I could not find a link anywhere on the home site:
http://ws.apache.org/ws-fx/wss4j/
Sean Shubin
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.322 / Virus Database: 266.11.17 - Release Date: 5/25/2005