How to implement Basic Http Security(Pass Scurity headers) in smartclient (Webservice Data Source)?
For example i can use following in my java class
For example i can use following in my java class
Code:
//Create SOAP Message
SOAPMessage soap;
//Add Basic Http Authentication
MimeHeaders headers=soap.getMimeHeaders();
//Encode it authorization header to 64 Bit
headers.addHeader("Authorization", authorization);
Comment