Re: Set function to receive POST request

2013-06-24 Thread nadaei...@gmail.com
hi Miranda, Try this: scope.deleteeeMovie $ = function (id) { * $scope.deleteeeMovie = function(ID){* * $http({* * method: 'POST',* * url: "http://localhost:8080/test/delete/51c82ba48774a7118875b145",* * //data: {'id': ID} data: {**'id': ID: id_checked, 'csrfmiddlewaretoken': '{{c

Re: SlugField With URL

2011-03-23 Thread nadaei...@gmail.com
class Partenaires(models.Model): PARTENAIRE_TYPE = ( (u'LIG', u'Light'), (u'PRE', u'Premium'), ) email = models.EmailField('Email') slug = models.SlugField(unique= True) user = models.ForeignKey(User, unique=True) nom = models.CharField(u'Nom', max_length=10

Python Soap

2015-04-02 Thread nadaei...@gmail.com
Hi All, What is the best library of python to consume wsdl soap with client certificate pfx and server certificate cer. BR -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send a

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
Thanks Nikolas, Checking will come back to you. 2015-04-02 15:45 GMT+00:00 Nikolas Stevenson-Molnar : > Take a look at suds-jurko: https://bitbucket.org/jurko/suds > > _Nik > > > On 4/2/2015 8:05 AM, nadaei...@gmail.com wrote: > > Hi All, > > What is the bes

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
I am already using suds but my issue was using suds with ssl and client and server certificate 2015-04-02 15:48 GMT+00:00 nadaei...@gmail.com : > Thanks Nikolas, > > Checking will come back to you. > > 2015-04-02 15:45 GMT+00:00 Nikolas Stevenson-Molnar < > nik.mol...@consb

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
o provide more detail as to what you are trying to do, as > the SSL portion is handled by underlying libraries in Python, not by > suds-jurko directly. > > -James > On Apr 2, 2015 8:57 AM, "nadaei...@gmail.com" wrote: > >> I am already using suds but my

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
ault 2015-04-02 16:24 GMT+00:00 Nikolas Stevenson-Molnar : > Have a look at this: > https://bitbucket.org/jurko/suds/issue/23/ssl-certificate-verification > > _Nik > > > On 4/2/2015 9:17 AM, nadaei...@gmail.com wrote: > > i was doing it using this: > >

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
Yes 2015-04-02 19:05 GMT+00:00 Nikolas Stevenson-Molnar : > Did you switch to using suds-jurko? > > _Nik > > > On 4/2/2015 10:10 AM, nadaei...@gmail.com wrote: > > Thanks finally using this but getting web.fault: > > from sudsssltransport import S

Re: Python Soap

2015-04-02 Thread nadaei...@gmail.com
're > still encountering the issue, I'd open an issue on the suds-jurko tracker. > > _Nik > > > On 4/2/2015 12:23 PM, nadaei...@gmail.com wrote: > > Yes > > 2015-04-02 19:05 GMT+00:00 Nikolas Stevenson-Molnar < > nik.mol...@consbio.org>: > >> D

Python suds with Keystore

2015-04-25 Thread nadaei...@gmail.com
HI All, I am trying to consume wsdl with suds using keystore i am getting forbiden since suds is not including the keystore in the request: co = Client('https://10.102.5.81:901/APIService.svc?singleWsdl') co.options.wsse.keystore = Keystore() co.options.wsse.keystore.addKey(Rs

Suds with Obeject

2015-05-02 Thread nadaei...@gmail.com
Hi All, If i have an wsdl with this parameters and i want to use suds how it will be? *Note:* Before you call this case, you need create the object BaseReq*.* *Input parameters:* · BaseReq: req Required param object: a) clientID b) terminalID c) authCred *I usually c

Suds

2015-05-03 Thread nadaei...@gmail.com
Hi All, If i have an wsdl with this parameters and i want to use suds how it will be? *Note:* Before you call this case, you need create the object BaseReq*.* *Input parameters:* · BaseReq: req Required param object: a) clientID b) terminalID c) authCred *I usually c