More details: I am using Windows 7 OS and certificate installed is .cer file. I am trying to use pysimplesoap library. Code is:
client = SoapClient(location="https://test.abc.def.com/XYZLink/ RealTimeWS2322.asmx",\ action="http://def.com/xyzlink2322/1003/12/",namespace = " http://def.com/xyzlink2322/1003/12/",trace = True) response=client.service.PingFun() result = response["PingFunResult"] return result I have modified webservice details here. I am not able to access this service as it requires certificate. I get Forbidden error message here. On Feb 15, 7:35 am, vilas patil <[email protected]> wrote: > I am trying to access one .NET webservice. In order to access that web > service, I have to send certificate to it. I am using web2py to do > this. How do I send certificate to that service?

