Open yoosofan opened 8 years ago
The osa client does not yet support any SOAP authentication methods like WSS or Basic Authentication. Pull Requests are welcome!
Thank you, It is okay. I don't really need it. because the server doesn't such authentication, it uses simple field for authentication like this:
import osa,datetime
cl = osa.Client("http://IP_ADDRESS_OF_SERVER/Service/limsapi.asmx?wsdl")
msg=cl.service.GetResultsByID(username="Something",password="Something" ,
other_fields="ddddd", date_field=datetime.datetime(2016,6,1) )
print(msg)
I need to set username and password for soap. Haw can I set them in the following sample.