Estou gerando os Stubs por SoapUI, porém quando gero os stubs ele não aparece o método:
stub._getServiceClient()
Alguém saberia como gerar esse método, gerando os stubs a partir do SoapUI ?
Preciso dessa opção:
stub._getServiceClient().getOptions();
E quando gero os stubs a partir do SoapUI não aparece essa opção.
estou usando essa link:
YourStub stub = new YourStub("-- your service endpoint --");
Options options = stub._getServiceClient().getOptions();
HttpTransportProperties.Authenticator auth = new HttpTransportProperties.Authenticator();
auth.setPreemptiveAuthentication(true);
auth.setPassword("root");
auth.setUsername("root");
options.setProperty(HTTPConstants.AUTHENTICATE,auth);
Desde já agradeço !