Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Not too sure if this helps but you can use the following piece of code in the advanced section of the WebServiceInput component to use basic auth.
routines.StagingServiceLocator serviceLocator = new routines.StagingServiceLocator();
serviceLocator.setStagingServiceSoapEndpointAddress(context.notify_webservice_url);
routines.StagingServiceSoap_PortType stagingSoap = serviceLocator.getStagingServiceSoap();
((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.USERNAME_PROPERTY, context.notify_username);
((javax.xml.rpc.Stub) stagingSoap)._setProperty(javax.xml.rpc.Stub.PASSWORD_PROPERTY, context.notify_password);