Hi !
I am making a web service client using CXF framework
I have made Java classes using wsdl2Java.
It generated me java files:
MyWs_Service.java
MyWs.java
ObjectFactory.java
... and Request and ResponseType java files
I am using those classes as.
ObjectFactory factory = new ObjectFactory();
MyWs_Service myWs= new MyWs_Service().getMyWsSOAP();
mySearchRequestType mySearch = factory.createMySearchRequestType();
mySearch.setName("12374");
mySearchResponseType myRes = myWs.searchIdByName(mySearch);
The service requires HTTP Basic Autenthication so
how can add this feature to my program?
Frank
--
View this message in context:
http://www.nabble.com/Basic-authentication-with-CXF-tf4488719.html#a12801114
Sent from the cxf-user mailing list archive at Nabble.com.