soapServicePortType = Interface, where is methods of WSDL. getHouseCall = GETmethod of info
But i should authorizate
As i see in stacktrace, message building by HttpTransportPipe class. In this class i found method "addBasicAuth", when i can insert Login and pass.
So, i have 2 questions:
I solved it so:
((BindingProvider) /*Insert InterfaceClass of port WSDL*/).getRequestContext().put(BindingProvider.USERNAME_PROPERTY, "login");
((BindingProvider) /*Insert InterfaceClass of port WSDL*/).getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, "password");
And no need to sending coockies